  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    :root {
      --orange: #F76A19;
      --red: #DA1117;
      --white: #ffffff;
      --text-light: rgba(255, 255, 255, 0.92);
      --shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
       --orange: #F76A19;
    --red: #DA1117;
    --white: #ffffff;
    --black: #111111;
    --border: rgba(218, 17, 23, 0.18);
    --shadow: 0 14px 35px rgba(17, 17, 17, 0.08);
    }


    body {
      font-family: Arial, Helvetica, sans-serif;
      min-height: 100vh;
      line-height: 1.7;
      color: var(--white);
      background:
  radial-gradient(circle at top left, rgba(247, 106, 25, 0.10), transparent 26%),
  radial-gradient(circle at 85% 12%, rgba(255, 255, 255, 0.14), transparent 20%),
  radial-gradient(circle at bottom right, rgba(218, 17, 23, 0.10), transparent 28%),
  linear-gradient(135deg, #eb4a4f 0%, #df3439 38%, #ff954d 100%);
      background-attachment: fixed;
    }

  * {
    box-sizing: border-box;
  }

  .site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #ffffff;
  border-bottom: 1px solid rgba(218, 17, 23, 0.10);
  box-shadow: 0 12px 30px rgba(17, 17, 17, 0.06);
  position: sticky;
  overflow: visible;
}

.site-header::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #DA1117 0%, #F76A19 100%);
}

.site-header::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(247, 106, 25, 0.10);
  pointer-events: none;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.site-logo img {
  display: block;
  width: 70px;
  height: 70px;

}

.site-logo span {
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.3px;
  background: linear-gradient(90deg, #DA1117 0%, #F76A19 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

@media (max-width: 767px) {
  .site-logo {
    gap: 10px;
  }

  .site-logo img {
    width: 38px;
    height: 38px;
    border-radius: 8px;
  }

  .site-logo span {
    font-size: 20px;
  }
}

  .site-header-wrap {
    max-width: 1240px;
    margin: 0 auto;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    position: relative;
  }



  .site-nav {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-left: auto;
  }

  .site-nav-list {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 0;
  }

  .site-nav-list > li {
    position: relative;
  }

  .site-nav-list > li > a,
  .site-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 46px;
    padding: 0 16px;
    border: 1.5px solid transparent;
    border-radius: 12px;
    background: #fff;
    color: var(--black);
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .site-nav-list > li > a:hover,
  .site-dropdown-toggle:hover {
    color: var(--red);
    border-color: rgba(247, 106, 25, 0.28);
    background: rgba(247, 106, 25, 0.06);
  }

  .site-dropdown-arrow {
    font-size: 12px;
    line-height: 1;
    transition: transform 0.3s ease;
  }

  .site-dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    min-width: 240px;
    padding: 12px;
    margin: 0;
    list-style: none;
    background: #ffffff;
    border: 1px solid rgba(218, 17, 23, 0.14);
    border-radius: 18px;
    box-shadow: 0 18px 45px rgba(17, 17, 17, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.3s ease;
    z-index: 20;
  }

  .site-dropdown-menu li + li {
    margin-top: 6px;
  }

  .site-dropdown-menu a {
    display: block;
    padding: 12px 14px;
    border-radius: 12px;
    text-decoration: none;
    color: var(--black);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    transition: all 0.3s ease;
    border: 1px solid transparent;
  }

  .site-dropdown-menu a:hover {
    color: var(--red);
    background: rgba(247, 106, 25, 0.08);
    border-color: rgba(247, 106, 25, 0.18);
  }

  .site-dropdown:hover .site-dropdown-menu,
  .site-dropdown:focus-within .site-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .site-dropdown:hover .site-dropdown-arrow,
  .site-dropdown:focus-within .site-dropdown-arrow {
    transform: rotate(180deg);
  }

  .site-header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .site-header-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 22px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
    transition: all 0.3s ease;
    white-space: nowrap;
    border: 2px solid transparent;
  }

  .site-header-btn-outline {
    background: #fff;
    color: var(--red);
    border-color: var(--red);
  }

  .site-header-btn-outline:hover {
    background: rgba(218, 17, 23, 0.06);
    transform: translateY(-2px);
  }

  .site-header-btn-fill {
    background: linear-gradient(135deg, var(--red) 0%, var(--orange) 100%);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 12px 28px rgba(218, 17, 23, 0.22);
  }

  .site-header-btn-fill:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 32px rgba(218, 17, 23, 0.28);
  }

  .site-menu-toggle {
    display: none;
    width: 50px;
    height: 50px;
    border: 2px solid var(--orange);
    border-radius: 14px;
    background: #fff;
    cursor: pointer;
    padding: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    box-shadow: var(--shadow);
  }

  .site-menu-toggle span {
    display: block;
    width: 22px;
    height: 2.5px;
    border-radius: 999px;
    background: var(--red);
    transition: all 0.3s ease;
  }

  @media (max-width: 991px) {
    .site-header-wrap {
      padding: 14px 15px;
    }

    .site-menu-toggle {
      display: inline-flex;
      margin-left: auto;
    }

    .site-nav {
      position: absolute;
      top: calc(100% + 12px);
      left: 15px;
      right: 15px;
      background: #ffffff;
      border: 1px solid rgba(218, 17, 23, 0.14);
      border-radius: 22px;
      box-shadow: 0 18px 40px rgba(17, 17, 17, 0.12);
      padding: 18px;
      display: none;
      flex-direction: column;
      align-items: stretch;
      gap: 16px;
    }

    .site-nav.active {
      display: flex;
    }

    .site-nav-list {
      flex-direction: column;
      align-items: stretch;
      gap: 10px;
      width: 100%;
    }

    .site-nav-list > li > a,
    .site-dropdown-toggle {
      width: 100%;
      justify-content: space-between;
      min-height: 50px;
      padding: 0 16px;
      border: 1.5px solid rgba(218, 17, 23, 0.12);
      border-radius: 14px;
      background: #fff;
    }

    .site-dropdown-menu {
      position: static;
      min-width: 100%;
      margin-top: 10px;
      opacity: 1;
      visibility: visible;
      transform: none;
      display: none;
      padding: 10px;
      border-radius: 16px;
      box-shadow: none;
      background: #fff8f4;
      border: 1px solid rgba(247, 106, 25, 0.14);
    }

    .site-dropdown.open .site-dropdown-menu {
      display: block;
    }

    .site-dropdown.open .site-dropdown-arrow {
      transform: rotate(180deg);
    }

    .site-header-actions {
      width: 100%;
      flex-direction: column;
      gap: 12px;
    }

    .site-header-btn {
      width: 100%;
      min-height: 50px;
      padding: 14px 18px;
      font-size: 15px;
    }
  }

  @media (max-width: 575px) {
    .site-logo {
      font-size: 18px;
      min-height: 46px;
      padding: 0 14px;
      border-radius: 12px;
    }

    .site-menu-toggle {
      width: 46px;
      height: 46px;
      border-radius: 12px;
    }

    .site-nav {
      left: 12px;
      right: 12px;
      padding: 14px;
      border-radius: 18px;
    }

    .site-header-btn {
      min-height: 48px;
      font-size: 14px;
    }
  }


  @media (max-width: 991px) {
  .site-dropdown-menu {
    position: static;
    min-width: 100%;
    margin-top: 10px;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    padding: 10px;
    border-radius: 16px;
    box-shadow: none;
    background: #fff8f4;
    border: 1px solid rgba(247, 106, 25, 0.14);
  }

  .site-dropdown.open .site-dropdown-menu {
    display: block;
  }

  .site-dropdown.open .site-dropdown-arrow {
    transform: rotate(180deg);
  }
}


    img {
      max-width: 100%;
      height: auto;
      display: block;
    }

    /* =========================
       HERO SECTION
    ========================= */
    .hero-section {
      position: relative;
      overflow: hidden;
      padding: 25px 20px;
      min-height: 100vh;
      display: flex;
      align-items: center;
      background: transparent;
    }

    .hero-section::before,
    .hero-section::after {
      content: "";
      position: absolute;
      border-radius: 50%;
      filter: blur(12px);
      opacity: 0.30;
      pointer-events: none;
    }

    .hero-section::before {
      width: 320px;
      height: 320px;
      background: rgba(247, 106, 25, 0.18);
      top: -100px;
      left: -80px;
    }

    .hero-section::after {
      width: 260px;
      height: 260px;
      background: rgba(218, 17, 23, 0.18);
      right: -70px;
      bottom: -70px;
    }

    .hero-container {
      max-width: 1340px;
      width: 100%;
      margin: 0 auto;
      position: relative;
      z-index: 2;
    }

    .hero-card {
      position: relative;
      padding: 48px;
      border-radius: 28px;
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.14);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      box-shadow: 0 22px 55px rgba(0, 0, 0, 0.28);
      overflow: hidden;
    }

    .hero-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(135deg, rgba(255,255,255,0.08), transparent 42%),
        linear-gradient(315deg, rgba(247,106,25,0.08), transparent 45%);
      pointer-events: none;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 40px;
      align-items: center;
      position: relative;
      z-index: 2;
    }

    .hero-content h1 {
      font-size: 44px;
      line-height: 1.2;
      font-weight: 800;
      margin-bottom: 22px;
      letter-spacing: -0.4px;
      color: var(--white);
    }

    .hero-content p {
      font-size: 17px;
      color: var(--text-light);
      margin-bottom: 18px;
    }

    .hero-content p:last-of-type {
      margin-bottom: 0;
    }

    .hero-buttons {
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
      margin: 30px 0 26px;
    }

    .hero-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 54px;
      padding: 14px 28px;
      border-radius: 999px;
      text-decoration: none;
      font-size: 15px;
      font-weight: 700;
      transition: all 0.3s ease;
      border: 2px solid transparent;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.28);
    }

    .hero-btn.primary {
      background: #15C97F;
      color: #f9f4f4;
    }

    .hero-btn.primary:hover {
      transform: translateY(-2px);
      background: #f3f3f3;
    }

    .hero-btn.secondary {
      background: #0984E3;
      color: var(--white);
    }

    .hero-btn.secondary:hover {
      transform: translateY(-2px);
      opacity: 0.92;
    }

    .hero-btn.outline {
      background:#f9b81f;
      color: #000;
      border-color: rgba(255, 255, 255, 0.35);
    }

    .hero-btn.outline:hover {
      transform: translateY(-2px);
      background: rgba(255, 255, 255, 0.08);
      border-color: rgba(255, 255, 255, 0.6);
    }

    .hero-visual {
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .hero-image-card {
      width: 100%;
      max-width: 460px;
      border-radius: 24px;
      overflow: hidden;
      background: #111;
      border: 1px solid rgba(255, 255, 255, 0.08);
      box-shadow:
        0 16px 40px rgba(0, 0, 0, 0.35),
        0 0 0 1px rgba(247, 106, 25, 0.08),
        0 0 30px rgba(218, 17, 23, 0.12);
    }

    .hero-image-card img {
      width: 100%;
      aspect-ratio: 1 / 1;
      object-fit: cover;
      border-radius: 24px;
    }

    /* =========================
       INFO SECTION
    ========================= */
    .lucknow-info-section {
      position: relative;
      padding: 25px 20px;
      background: transparent;
    }

    .lucknow-info-section::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 15% 20%, rgba(255,255,255,0.06), transparent 18%),
        radial-gradient(circle at 85% 80%, rgba(247,106,25,0.08), transparent 18%);
      pointer-events: none;
    }

    .lucknow-info-container {
      max-width: 1340px;
      margin: 0 auto;
      display: grid;
      gap: 30px;
      position: relative;
      z-index: 2;
    }

    .lucknow-info-card {
      position: relative;
      padding: 34px;
      border-radius: 28px;
      background: linear-gradient(180deg, #ffffff 0%, #fff8f5 100%);
      border: 1px solid rgba(255, 255, 255, 0.28);
      box-shadow:
        0 20px 55px rgba(0, 0, 0, 0.12),
        0 10px 24px rgba(218, 17, 23, 0.08);
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .lucknow-info-card:hover {
      transform: translateY(-4px);
      box-shadow:
        0 26px 65px rgba(0, 0, 0, 0.16),
        0 10px 28px rgba(218, 17, 23, 0.10);
    }

    .lucknow-card-topbar {
      width: 100%;
      height: 6px;
      border-radius: 999px;
      margin-bottom: 24px;
      background: linear-gradient(90deg, #F76A19 0%, #DA1117 100%);
    }

    .lucknow-info-card h2 {
      font-size: 34px;
      line-height: 1.25;
      font-weight: 800;
      color: #111111;
      margin-bottom: 18px;
      letter-spacing: -0.4px;
    }

    .lucknow-info-card p {
      font-size: 17px;
      line-height: 1.9;
      color: #333333;
      margin-bottom: 18px;
    }

    .lucknow-btn-wrap {
      margin: 24px 0;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .lucknow-info-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 50px;
      padding: 12px 24px;
      min-width: 140px;
      border-radius: 999px;
      background:#F9B81F;
      color: #070707;
      text-decoration: none;
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 0.2px;
      box-shadow: 0 12px 28px rgba(218, 17, 23, 0.18);
      transition: all 0.3s ease;
      width: auto;
      max-width: fit-content;
    }

    .lucknow-info-btn.secondary {
      min-width: 220px;
      background: #0984E3;
      color: #fff;
    }

    .lucknow-info-btn.dark {
      min-width: 120px;
      background: #15C97F;
      color: #ffffff;
      box-shadow: 0 12px 26px rgba(0, 0, 0, 0.15);
    }

    .lucknow-info-btn:hover {
      transform: translateY(-2px);
      opacity: 0.96;
    }

    .lucknow-sub-box {
      margin-top: 10px;
      padding: 24px 24px 22px;
      border-radius: 22px;
      background: linear-gradient(135deg, rgba(247, 106, 25, 0.08) 0%, rgba(218, 17, 23, 0.06) 100%);
      border: 1px solid rgba(247, 106, 25, 0.12);
    }

    .lucknow-sub-box p {
      margin-bottom: 14px;
    }

    .lucknow-feature-list,
    .lucknow-step-list {
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .lucknow-feature-list li,
    .lucknow-step-list li {
      position: relative;
      font-size: 16px;
      line-height: 1.85;
      color: #2f2f2f;
      margin-bottom: 14px;
      padding: 14px 16px 14px 56px;
      border-radius: 16px;
      background: rgba(255, 255, 255, 0.78);
      border: 1px solid rgba(17, 17, 17, 0.05);
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
    }

    .lucknow-feature-list li:last-child,
    .lucknow-step-list li:last-child {
      margin-bottom: 0;
    }

    .lucknow-feature-list li::before {
      content: "✓";
      position: absolute;
      top: 50%;
      left: 16px;
      transform: translateY(-50%);
      width: 28px;
      height: 28px;
      border-radius: 50%;
      background: linear-gradient(135deg, #F76A19 0%, #DA1117 100%);
      color: #ffffff;
      font-size: 14px;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 8px 18px rgba(218, 17, 23, 0.16);
    }

    .lucknow-step-list {
      counter-reset: lucknowStep;
    }

    .lucknow-step-list li {
      counter-increment: lucknowStep;
    }

    .lucknow-step-list li::before {
      content: counter(lucknowStep);
      position: absolute;
      top: 14px;
      left: 16px;
      width: 28px;
      height: 28px;
      border-radius: 50%;
      background: #111111;
      color: #ffffff;
      font-size: 13px;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
    }

    /* =========================
       RESPONSIVE
    ========================= */
    @media (max-width: 1024px) {
      .hero-grid {
        grid-template-columns: 1fr;
      }

      .hero-content h1 {
        font-size: 38px;
      }

      .hero-card {
        padding: 38px 28px;
      }

      .hero-visual {
        justify-content: center;
      }

      .hero-image-card {
        max-width: 400px;
      }
    }

    @media (max-width: 991px) {
      .lucknow-info-card {
        padding: 28px 24px;
        border-radius: 22px;
      }

      .lucknow-info-card h2 {
        font-size: 28px;
      }

      .lucknow-info-card p {
        font-size: 15px;
      }

      .lucknow-feature-list li,
      .lucknow-step-list li {
        font-size: 15px;
        padding: 13px 14px 13px 52px;
      }

      .lucknow-sub-box {
        padding: 20px;
        border-radius: 18px;
      }
    }

    @media (max-width: 767px) {
      .hero-section {
        padding: 60px 15px;
      }

      .hero-card {
        padding: 28px 20px;
        border-radius: 22px;
      }

      .hero-content h1 {
        font-size: 30px;
      }

      .hero-content p {
        font-size: 15px;
      }

      .hero-buttons {
        flex-direction: column;
      }

      .hero-btn {
        width: 100%;
      }

      .hero-visual {
        margin-top: 10px;
        justify-content: center;
      }

      .hero-image-card {
        max-width: 100%;
        border-radius: 18px;
      }

      .hero-image-card img {
        border-radius: 18px;
      }

      .lucknow-info-section {
        padding: 60px 15px;
      }

      .lucknow-info-card {
        padding: 22px 18px;
        border-radius: 18px;
      }

      .lucknow-card-topbar {
        height: 5px;
        margin-bottom: 18px;
      }

      .lucknow-info-card h2 {
        font-size: 24px;
        margin-bottom: 14px;
      }

      .lucknow-info-card p {
        font-size: 15px;
        line-height: 1.8;
      }

      .lucknow-btn-wrap {
        margin: 18px 0 20px;
      }

      .lucknow-info-btn {
        min-height: 44px;
        padding: 11px 18px;
        font-size: 13px;
        min-width: 120px;
      }

      .lucknow-info-btn.secondary {
        min-width: 190px;
      }

      .lucknow-info-btn.dark {
        min-width: 105px;
      }

      .lucknow-sub-box {
        padding: 16px;
        border-radius: 16px;
      }

      .lucknow-feature-list li,
      .lucknow-step-list li {
        font-size: 14px;
        line-height: 1.75;
        padding: 12px 12px 12px 48px;
        border-radius: 14px;
        margin-bottom: 12px;
      }

      .lucknow-feature-list li::before,
      .lucknow-step-list li::before {
        width: 24px;
        height: 24px;
        left: 14px;
        font-size: 12px;
      }

      .lucknow-step-list li::before {
        top: 12px;
      }
    }

    .lucknow-info-card h3 {
  font-size: 26px;
  line-height: 1.3;
  font-weight: 800;
  color: #111111;
  margin-bottom: 18px;
  letter-spacing: -0.3px;
}

@media (max-width: 991px) {
  .lucknow-info-card h3 {
    font-size: 26px;
  }
}

@media (max-width: 767px) {
  .lucknow-info-card h3 {
    font-size: 22px;
    margin-bottom: 14px;
  }
}

/* =========================
   TOP GAMING CATEGORIES SECTION
========================= */
.gaming-category-card h2 {
  font-size: 34px;
  line-height: 1.25;
  font-weight: 800;
  color: #111111;
  margin-bottom: 18px;
  letter-spacing: -0.4px;
}

.gaming-category-card > p {
  font-size: 17px;
  line-height: 1.9;
  color: #333333;
  margin-bottom: 26px;
}

.gaming-category-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.gaming-category-box {
  position: relative;
  padding: 26px 24px 22px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, #ffffff 0%, #fff7f2 100%);
  border: 1px solid rgba(247, 106, 25, 0.12);
  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.06),
    0 8px 18px rgba(218, 17, 23, 0.05);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gaming-category-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(247, 106, 25, 0.06), transparent 42%),
    linear-gradient(315deg, rgba(218, 17, 23, 0.05), transparent 45%);
  pointer-events: none;
}

.gaming-category-box:hover {
  transform: translateY(-4px);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.10),
    0 10px 24px rgba(218, 17, 23, 0.08);
}

.gaming-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 24px;
  background: linear-gradient(135deg, #F76A19 0%, #DA1117 100%);
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(218, 17, 23, 0.16);
  position: relative;
  z-index: 1;
}

.gaming-category-box h3 {
  font-size: 24px;
  line-height: 1.3;
  font-weight: 800;
  color: #111111;
  margin-bottom: 14px;
  letter-spacing: -0.2px;
  position: relative;
  z-index: 1;
}

.gaming-category-box p {
  font-size: 16px;
  line-height: 1.9;
  color: #333333;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 991px) {
  .gaming-category-card h2 {
    font-size: 28px;
  }

  .gaming-category-card > p {
    font-size: 15px;
    margin-bottom: 22px;
  }

  .gaming-category-grid {
    gap: 18px;
  }

  .gaming-category-box {
    padding: 22px 20px 20px;
    border-radius: 18px;
  }

  .gaming-category-box h3 {
    font-size: 21px;
  }

  .gaming-category-box p {
    font-size: 15px;
  }
}

@media (max-width: 767px) {
  .gaming-category-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .gaming-category-card h2 {
    font-size: 24px;
    margin-bottom: 14px;
  }

  .gaming-category-card > p {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 18px;
  }

  .gaming-category-box {
    padding: 20px 16px 18px;
    border-radius: 16px;
  }

  .gaming-icon {
    width: 46px;
    height: 46px;
    font-size: 22px;
    border-radius: 14px;
    margin-bottom: 14px;
  }

  .gaming-category-box h3 {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .gaming-category-box p {
    font-size: 14px;
    line-height: 1.8;
  }
}

/* =========================
   DEPOSIT / WITHDRAW SECTION
========================= */
.wallet-guide-card h2 {
  font-size: 34px;
  line-height: 1.25;
  font-weight: 800;
  color: #111111;
  margin-bottom: 16px;
  letter-spacing: -0.4px;
}

.wallet-guide-card > p {
  font-size: 17px;
  line-height: 1.9;
  color: #333333;
  margin-bottom: 22px;
}

.wallet-guide-box {
  position: relative;
  padding: 24px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(247, 106, 25, 0.08) 0%, rgba(218, 17, 23, 0.06) 100%);
  border: 1px solid rgba(247, 106, 25, 0.12);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.wallet-guide-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.18), transparent 42%),
    linear-gradient(315deg, rgba(247,106,25,0.05), transparent 45%);
  pointer-events: none;
}

.wallet-guide-box h3 {
  position: relative;
  z-index: 1;
  font-size: 24px;
  line-height: 1.3;
  font-weight: 800;
  color: #111111;
  margin-bottom: 16px;
  letter-spacing: -0.2px;
}

.wallet-step-list {
  position: relative;
  z-index: 1;
}

.wallet-step-list li {
  background: rgba(255, 255, 255, 0.82);
}

.wallet-divider {
  width: 100%;
  height: 1px;
  margin: 34px 0;
  background: linear-gradient(
    90deg,
    rgba(247, 106, 25, 0),
    rgba(247, 106, 25, 0.35),
    rgba(218, 17, 23, 0.35),
    rgba(218, 17, 23, 0)
  );
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 991px) {
  .wallet-guide-card h2 {
    font-size: 28px;
  }

  .wallet-guide-card > p {
    font-size: 15px;
    margin-bottom: 18px;
  }

  .wallet-guide-box {
    padding: 20px;
    border-radius: 18px;
  }

  .wallet-guide-box h3 {
    font-size: 21px;
    margin-bottom: 14px;
  }

  .wallet-divider {
    margin: 28px 0;
  }
}

@media (max-width: 767px) {
  .wallet-guide-card h2 {
    font-size: 24px;
    margin-bottom: 14px;
  }

  .wallet-guide-card > p {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 16px;
  }

  .wallet-guide-box {
    padding: 16px;
    border-radius: 16px;
  }

  .wallet-guide-box h3 {
    font-size: 20px;
    margin-bottom: 12px;
  }

  .wallet-divider {
    margin: 24px 0;
  }
}

/* =========================
   REFER / FEATURES / SUPPORT / CONCLUSION SECTION
========================= */
.refer-support-card h2 {
  font-size: 34px;
  line-height: 1.25;
  font-weight: 800;
  color: #111111;
  margin-bottom: 16px;
  letter-spacing: -0.4px;
}

.refer-support-card p {
  font-size: 17px;
  line-height: 1.9;
  color: #333333;
  margin-bottom: 22px;
}

.refer-earn-list,
.support-step-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.refer-earn-list li,
.support-step-list li {
  position: relative;
  margin-bottom: 14px;
  padding: 16px 18px 16px 62px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(247, 106, 25, 0.08) 0%, rgba(218, 17, 23, 0.06) 100%);
  border: 1px solid rgba(247, 106, 25, 0.12);
  color: #222222;
  font-size: 16px;
  line-height: 1.85;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.refer-earn-list li:last-child,
.support-step-list li:last-child {
  margin-bottom: 0;
}

.refer-earn-list li::before,
.support-step-list li::before {
  content: counter(list-item);
  position: absolute;
  left: 16px;
  top: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #F76A19 0%, #DA1117 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(218, 17, 23, 0.18);
}

.lucknow-note-box {
  margin-top: 22px;
  padding: 18px 20px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 245, 239, 0.95) 0%, rgba(255, 250, 247, 0.98) 100%);
  border-left: 5px solid #F76A19;
  border: 1px solid rgba(247, 106, 25, 0.14);
  color: #2a2a2a;
  font-size: 16px;
  line-height: 1.85;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.04);
}

.lucknow-note-box strong {
  color: #DA1117;
  font-weight: 800;
}

.section-divider {
  width: 100%;
  height: 1px;
  margin: 34px 0;
  background: linear-gradient(
    90deg,
    rgba(247, 106, 25, 0),
    rgba(247, 106, 25, 0.38),
    rgba(218, 17, 23, 0.38),
    rgba(218, 17, 23, 0)
  );
}

/* =========================
   FEATURES GRID
========================= */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.feature-pill {
  position: relative;
  padding: 18px 18px 18px 54px;
  border-radius: 18px;
  background: linear-gradient(135deg, #ffffff 0%, #fff7f2 100%);
  border: 1px solid rgba(247, 106, 25, 0.12);
  color: #1f1f1f;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.04);
  overflow: hidden;
}

.feature-pill::before {
  content: "✓";
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, #F76A19 0%, #DA1117 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(218, 17, 23, 0.16);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 991px) {
  .refer-support-card h2 {
    font-size: 28px;
  }

  .refer-support-card p {
    font-size: 15px;
    margin-bottom: 18px;
  }

  .refer-earn-list li,
  .support-step-list li {
    font-size: 15px;
    padding: 15px 16px 15px 58px;
    border-radius: 16px;
  }

  .lucknow-note-box {
    font-size: 15px;
    padding: 16px 18px;
    border-radius: 16px;
  }

  .feature-pill {
    font-size: 15px;
    padding: 16px 16px 16px 50px;
    border-radius: 16px;
  }

  .section-divider {
    margin: 28px 0;
  }
}

@media (max-width: 767px) {
  .refer-support-card h2 {
    font-size: 24px;
    margin-bottom: 14px;
  }

  .refer-support-card p {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 16px;
  }

  .refer-earn-list li,
  .support-step-list li {
    font-size: 14px;
    line-height: 1.8;
    padding: 14px 14px 14px 52px;
    border-radius: 14px;
    margin-bottom: 12px;
  }

  .refer-earn-list li::before,
  .support-step-list li::before {
    width: 28px;
    height: 28px;
    left: 14px;
    top: 14px;
    font-size: 13px;
  }

  .lucknow-note-box {
    margin-top: 18px;
    padding: 14px 16px;
    border-radius: 14px;
    font-size: 14px;
    line-height: 1.8;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .feature-pill {
    font-size: 14px;
    padding: 14px 14px 14px 48px;
    border-radius: 14px;
  }

  .feature-pill::before {
    width: 24px;
    height: 24px;
    left: 14px;
    font-size: 13px;
  }

  .section-divider {
    margin: 24px 0;
  }
}

/* =========================
   FAQ ACCORDION SECTION
========================= */
.faq-section-card h2 {
  font-size: 34px;
  line-height: 1.25;
  font-weight: 800;
  color: #111111;
  margin-bottom: 24px;
  letter-spacing: -0.4px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(247, 106, 25, 0.08) 0%, rgba(218, 17, 23, 0.06) 100%);
  border: 1px solid rgba(247, 106, 25, 0.12);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  position: relative;
  padding: 22px 60px 22px 22px;
  user-select: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary h3 {
  position: relative;
  font-size: 22px;
  line-height: 1.35;
  font-weight: 600;
  color: #111111;
  margin: 0;
  padding-left: 34px;
  letter-spacing: -0.2px;
}

.faq-item summary h3::before {
  content: "?";
  position: absolute;
  left: 0;
  top: 1px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, #F76A19 0%, #DA1117 100%);
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 18px rgba(218, 17, 23, 0.18);
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, #F76A19 0%, #DA1117 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-answer {
  padding: 0 22px 22px 22px;
}

.faq-answer p {
  font-size: 16px;
  line-height: 1.85;
  color: #333333;
  margin: 0;
  padding-left: 34px;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 991px) {
  .faq-section-card h2 {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .faq-item summary {
    padding: 20px 54px 20px 18px;
  }

  .faq-item summary h3 {
    font-size: 20px;
    padding-left: 32px;
  }

  .faq-answer {
    padding: 0 18px 18px 18px;
  }

  .faq-answer p {
    font-size: 15px;
    padding-left: 32px;
  }
}

@media (max-width: 767px) {
  .faq-section-card h2 {
    font-size: 24px;
    margin-bottom: 18px;
  }

  .faq-list {
    gap: 12px;
  }

  .faq-item {
    border-radius: 16px;
  }

  .faq-item summary {
    padding: 16px 48px 16px 14px;
  }

  .faq-item summary h3 {
    font-size: 18px;
    line-height: 1.4;
    padding-left: 30px;
  }

  .faq-item summary h3::before {
    width: 22px;
    height: 22px;
    font-size: 13px;
  }

  .faq-item summary::after {
    right: 14px;
    width: 30px;
    height: 30px;
    font-size: 20px;
  }

  .faq-answer {
    padding: 0 14px 16px 14px;
  }

  .faq-answer p {
    font-size: 14px;
    line-height: 1.8;
    padding-left: 30px;
  }
}

/* ess pages */

/* =========================
   COMMON INNER PAGE SECTION
========================= */
.site-page-section {
  padding: 40px 0;
}

.site-page-wrap {
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 16px;
}

.site-page-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff 0%, #fffaf6 100%);
  border: 1px solid rgba(247, 106, 25, 0.12);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.07);
  padding: 0;
}

.site-page-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(247, 106, 25, 0.10), transparent 26%),
    radial-gradient(circle at bottom left, rgba(218, 17, 23, 0.08), transparent 24%);
  pointer-events: none;
}

.site-page-top-strip {
  width: 100%;
  height: 7px;
  background: linear-gradient(90deg, #F76A19 0%, #DA1117 100%);
}

.site-page-head {
  position: relative;
  z-index: 1;
  padding: 40px 34px 26px;
  text-align: center;
  background:
    radial-gradient(circle at top left, rgba(247, 106, 25, 0.08), transparent 24%),
    radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.10), transparent 22%),
    linear-gradient(135deg, #eb4a4f 0%, #df3439 38%, #ff954d 100%);
  border-radius: 0 0 22px 22px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.site-page-head::before {
  content: "";
  position: absolute;
  top: -45px;
  left: -45px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.site-page-head::after {
  content: "";
  position: absolute;
  right: -35px;
  bottom: -40px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}

.site-page-label {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.site-page-head h1 {
  position: relative;
  z-index: 2;
  margin: 0;
  font-size: 42px;
  line-height: 1.2;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.4px;
}

@media (max-width: 991px) {
  .site-page-head {
    padding: 34px 24px 22px;
  }

  .site-page-head h1 {
    font-size: 34px;
  }
}

@media (max-width: 767px) {
  .site-page-head {
    padding: 28px 16px 20px;
    border-radius: 0 0 18px 18px;
  }

  .site-page-head::before {
    width: 100px;
    height: 100px;
    top: -30px;
    left: -30px;
  }

  .site-page-head::after {
    width: 90px;
    height: 90px;
    right: -24px;
    bottom: -28px;
  }

  .site-page-label {
    min-height: 34px;
    padding: 7px 14px;
    font-size: 12px;
    margin-bottom: 12px;
  }

  .site-page-head h1 {
    font-size: 28px;
  }
}

.site-page-content {
  position: relative;
  z-index: 1;
  padding: 10px 34px 34px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* =========================
   INTRO BOX
========================= */
.site-intro-box {
  position: relative;
  padding: 26px;
  border-radius: 24px;
 
  border: 1px solid rgba(247, 106, 25, 0.14);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.04);
}

.site-intro-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.22), transparent 42%),
    linear-gradient(315deg, rgba(247,106,25,0.05), transparent 45%);
  pointer-events: none;
}

.site-intro-box p {
  position: relative;
  z-index: 1;
  font-size: 17px;
  line-height: 1.95;
  color: #2f2f2f;
  margin: 0 0 16px;
}

.site-intro-box p:last-child {
  margin-bottom: 0;
}

/* =========================
   CONTENT CARD
========================= */
.site-content-card {
  position: relative;
  padding: 24px;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid rgba(247, 106, 25, 0.12);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
  overflow: hidden;
}

.site-content-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(247, 106, 25, 0.04), transparent 34%),
    linear-gradient(315deg, rgba(218, 17, 23, 0.04), transparent 36%);
  pointer-events: none;
}

.site-content-card h2 {
  position: relative;
  z-index: 1;
  font-size: 28px;
  line-height: 1.3;
  font-weight: 800;
  color: #111111;
  margin: 0 0 14px;
  letter-spacing: -0.3px;
  padding-left: 18px;
}

.site-content-card h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: calc(100% - 14px);
  min-height: 24px;
  border-radius: 999px;
  background: linear-gradient(180deg, #F76A19 0%, #DA1117 100%);
}

.site-content-card h3 {
  position: relative;
  font-size: 24px;
  line-height: 1.35;
  font-weight: 600;
  color: #111111;
  margin: 30px 14px;
  letter-spacing: -0.3px;
  padding-left: 16px;
}


.site-content-card p {
  position: relative;
  z-index: 1;
  font-size: 16px;
  line-height: 1.9;
  color: #333333;
  margin: 0 0 14px;
}

.site-content-card p:last-child {
  margin-bottom: 0;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 991px) {
  .site-page-card {
    border-radius: 24px;
  }

 

  .site-page-content {
    padding: 10px 24px 28px;
    gap: 18px;
  }

  .site-intro-box {
    padding: 22px;
    border-radius: 20px;
  }

  .site-intro-box p {
    font-size: 15px;
    line-height: 1.9;
  }

  .site-content-card {
    padding: 22px 20px;
    border-radius: 20px;
  }

  .site-content-card h2 {
    font-size: 24px;
    margin-bottom: 12px;
  }

  .site-content-card p {
    font-size: 15px;
    line-height: 1.85;
  }
}

@media (max-width: 767px) {
  .site-page-section {
    padding: 24px 0;
  }

  .site-page-wrap {
    padding: 0 12px;
  }

  .site-page-card {
    border-radius: 20px;
  }

  .site-page-top-strip {
    height: 6px;
  }

 

  .site-page-content {
    padding: 8px 16px 20px;
    gap: 14px;
  }

  .site-intro-box {
    padding: 18px 16px;
    border-radius: 16px;
  }

  .site-intro-box p {
    font-size: 14px;
    line-height: 1.85;
    margin-bottom: 12px;
  }

  .site-content-card {
    padding: 18px 16px;
    border-radius: 16px;
  }

  .site-content-card h2 {
    font-size: 21px;
    line-height: 1.35;
    margin-bottom: 10px;
    padding-left: 16px;
  }

  .site-content-card h2::before {
    top: 6px;
    width: 5px;
    min-height: 20px;
  }

  .site-content-card p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 12px;
  }
}

/* ===== AUTHOR PAGE ===== */
.author-profile-card {
  padding: 34px;
}

.author-profile-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 28px;
  align-items: center;
}

.author-profile-image {
  position: relative;
}

.author-profile-image img {
  display: block;
  width: 100%;
  max-width: 280px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 26px;
  border: 1px solid rgba(247, 106, 25, 0.18);
  box-shadow: 0 20px 45px rgba(17, 17, 17, 0.12);
  background: #ffffff;
}

.author-profile-info {
  display: grid;
  gap: 14px;
}

.author-profile-info p {
  margin: 0;
  padding: 14px 18px;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #fff7f1 100%);
  border: 1px solid rgba(247, 106, 25, 0.14);
  box-shadow: 0 10px 24px rgba(17, 17, 17, 0.06);
  font-size: 15px;
  line-height: 1.7;
  color: #333333;
}

.author-profile-info strong {
  color: #111111;
  font-weight: 800;
}

@media (max-width: 991px) {
  .author-profile-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .author-profile-image {
    text-align: center;
  }

  .author-profile-image img {
    margin: 0 auto;
    max-width: 240px;
  }

  .author-profile-card {
    padding: 26px;
  }
}

@media (max-width: 767px) {
  .author-profile-card {
    padding: 20px;
  }

  .author-profile-grid {
    gap: 18px;
  }

  .author-profile-image img {
    max-width: 200px;
    border-radius: 22px;
  }

  .author-profile-info p {
    padding: 12px 14px;
    border-radius: 14px;
    font-size: 14px;
  }
}

 .site-footer {
    background: #ffffff;
    border-top: 1px solid rgba(218, 17, 23, 0.12);
    position: relative;
  }

  .site-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #DA1117 0%, #F76A19 100%);
  }

  .site-footer-wrap {
    max-width: 1240px;
    margin: 0 auto;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    text-align: center;
  }

  .site-footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 18px;
  }

  .site-footer-links li {
    position: relative;
  }

  .site-footer-links li:not(:last-child)::after {
    content: "|";
    color: rgba(218, 17, 23, 0.35);
    margin-left: 18px;
    font-weight: 600;
  }

  .site-footer-links a {
    text-decoration: none;
    color: #111111;
    font-size: 14px;
    font-weight: 700;
    transition: 0.3s ease;
  }

  .site-footer-links a:hover {
    color: #DA1117;
  }

  .site-footer-text {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: #444444;
    line-height: 1.6;
  }

  @media (max-width: 767px) {
    .site-footer-wrap {
      padding: 20px 15px;
      gap: 12px;
    }

    .site-footer-links {
      gap: 10px 14px;
    }

    .site-footer-links li:not(:last-child)::after {
      margin-left: 14px;
    }

    .site-footer-links a,
    .site-footer-text {
      font-size: 13px;
    }
  }