 /* ===== Global Mobile Wrapper ===== */
    body {
      background: #f2f2f2;
    }

    .app-wrapper {
      max-width: 600px;
      margin: 0 auto;
      background: #ffffff;
      padding-top: 70px; /* space for fixed header */
    }

    /* ===== Fixed Header ===== */
    .top-header {
      position: fixed;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      max-width: 600px;
      width: 100%;
      z-index: 1000;
      background: #ffffff;
      border-bottom: 1px solid #e6e6e6;
    }

    .brand-logo {
      font-weight: 700;
      font-size: 20px;
      color: #ff7a00;
    }

    /* ===== Hero Banner ===== */
    .hero {
      background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('images/page-header.jpg');
      background-size: cover;
      /* background-position: center; */
      color: #fff;
      text-align: center;
      padding: 24px 12px;
    }

    .hero h6 {
      font-weight: 700;
      margin-bottom: 6px;
    }

    .hero p {
      margin: 0;
      font-size: 14px;
    }

    /* ===== Section Title ===== */
    .section-title {
      font-weight: 700;
      margin: 20px 0 10px;
      border-bottom: 1px solid #ddd;
      padding-bottom: 6px;
    }

    /* ===== Game Card ===== */
    .game-card {
      background: #2d9cdb;
      border-radius: 10px;
      padding: 10px;
      color: #fff;
      text-align: center;
      height: 100%;
    }

    .game-card img {
      width: 100%;
      border-radius: 6px;
      margin-bottom: 8px;
    }

    .game-card h6 {
      font-size: 14px;
      margin-bottom: 10px;
    }

    .btn-play {
      background: #ffffff;
      color: #2d9cdb;
      font-size: 12px;
      font-weight: 600;
      border-radius: 20px;
      padding: 6px 14px;
    }

    /* ===== Feedback Section ===== */
    .feedback {
      background: #1e1e1e;
      color: #ffffff;
      padding: 20px 16px;
    }

    .feedback input,
    .feedback textarea {
      background: #2b2b2b;
      border: none;
      color: #ffffff;
      border-radius: 20px;
      padding: 10px 14px;
      font-size: 14px;
    }

    .feedback input::placeholder,
    .feedback textarea::placeholder {
      color: #bdbdbd;
    }

    .btn-send {
      background: #2d9cdb;
      border-radius: 20px;
      color: #fff;
      padding: 10px;
      font-weight: 600;
    }

    /* ===== Footer ===== */
    .footer {
      background: #222;
      color: #bdbdbd;
      padding: 20px 16px;
      font-size: 13px;
    }

    .footer h6 {
      color: #ffffff;
      font-size: 14px;
      margin-bottom: 10px;
    }

    .footer a {
      color: #bdbdbd;
      text-decoration: none;
      display: block;
      margin-bottom: 6px;
    }

    .copyright {
      text-align: center;
      font-size: 12px;
      margin-top: 10px;
    }
    .page-header-bg
    {
        padding: 8px 0;
        margin-bottom: 10px;
    }

    /* ===== Page Header ===== */
.page-header {
  padding: 16px 0;
}

.page-header h3 {
  margin: 0;
  font-weight: 700;
}

.page-header span {
  font-size: 20px;
  color: #222;
}

/* ===== Accordion Wrapper ===== */
#accordion2 h6 {
  margin-bottom: 12px;
  font-weight: 600;
  color: #555;
}

/* ===== Accordion Card ===== */
.card-accordion {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 12px;
  overflow: hidden;
  background: #fff;
}

/* ===== Accordion Header ===== */
.card-accordion .card-header {
  display: block;
  padding: 14px 16px;
  font-weight: 600;
  font-size: 15px;
  color: #222;
  background: #f8f9fa;
  text-decoration: none;
  position: relative;
}

/* Arrow Icon */
.card-accordion .card-header::after {
  content: \"\\25BC\"; /* ▼ */
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
  transition: transform 0.3s ease;
}

/* When collapsed */
.card-accordion .card-header.collapsed::after {
  transform: translateY(-50%) rotate(-90deg);
}

/* ===== Accordion Body ===== */
.card-accordion .collapse {
  padding: 14px 16px;
  font-size: 14px;
  color: #444;
  background: #ffffff;
}

.card-accordion p {
  margin-bottom: 0;
}

/* Lists inside accordion */
.card-accordion ol {
  padding-left: 18px;
  margin-top: 8px;
}

.card-accordion li {
  margin-bottom: 8px;
  line-height: 1.6;
}

/* ===== Smooth Animation ===== */
.collapse {
  transition: all 0.3s ease;
}