/* Hero */
    .hero-section {
      position: relative;
      overflow: hidden;
      background: linear-gradient(145deg, #060b18 0%, #0d1a3a 40%, #0a1528 100%);
      padding: 5rem 0 4rem;
      min-height: 520px;
      display: flex;
      align-items: center;
    }
    .hero-bg-glow-1 {
      position: absolute;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(0,201,255,.12) 0%, transparent 70%);
      top: -100px;
      right: -50px;
      pointer-events: none;
    }
    .hero-bg-glow-2 {
      position: absolute;
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, rgba(123,47,255,.1) 0%, transparent 70%);
      bottom: -80px;
      left: -60px;
      pointer-events: none;
    }
    .hero-content { position: relative; z-index: 2; max-width: 800px; }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: .5rem;
      background: rgba(0,201,255,.1);
      border: 1px solid rgba(0,201,255,.25);
      border-radius: 50px;
      padding: .4rem 1rem;
      font-size: .8rem;
      font-weight: 700;
      color: var(--acc);
      letter-spacing: 1px;
      text-transform: uppercase;
      margin-bottom: 1.25rem;
    }
    .hero-badge-dot {
      width: 7px;
      height: 7px;
      background: var(--acc);
      border-radius: 50%;
      animation: pulse-dot 1.5s infinite;
    }
    @keyframes pulse-dot {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: .5; transform: scale(.7); }
    }

    .hero-section h1 {
      font-size: clamp(2rem, 5vw, 3.5rem);
      font-weight: 900;
      line-height: 1.1;
      color: #fff;
      margin-bottom: 1.25rem;
      letter-spacing: -.5px;
    }
    .hero-section h1 span {
      background: linear-gradient(135deg, var(--acc), var(--acc3));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .hero-desc {
      font-size: 1.1rem;
      color: var(--fg2);
      max-width: 660px;
      margin-bottom: 2rem;
      line-height: 1.7;
    }

    .hero-stats {
      display: flex;
      flex-wrap: wrap;
      gap: 1.5rem;
      margin-bottom: 2.25rem;
    }
    .stat-item { text-align: left; }
    .stat-num {
      font-size: 1.75rem;
      font-weight: 900;
      color: #fff;
      line-height: 1;
    }
    .stat-label {
      font-size: .8rem;
      color: var(--fg2);
      margin-top: .2rem;
    }
    .stat-divider {
      width: 1px;
      background: rgba(255,255,255,.1);
      align-self: stretch;
    }

    .hero-cta-row {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 1rem;
      margin-bottom: 2rem;
    }

    .hero-trust {
      display: flex;
      flex-wrap: wrap;
      gap: .75rem;
      align-items: center;
    }
    .trust-chip {
      display: inline-flex;
      align-items: center;
      gap: .4rem;
      background: rgba(255,255,255,.05);
      border: 1px solid rgba(255,255,255,.1);
      border-radius: 50px;
      padding: .35rem .9rem;
      font-size: .78rem;
      color: var(--fg2);
      font-weight: 500;
    }
    .trust-chip-icon { font-size: .85rem; }

    .hero-countdown {
      display: inline-flex;
      align-items: center;
      gap: .5rem;
      background: rgba(255,77,109,.1);
      border: 1px solid rgba(255,77,109,.25);
      border-radius: var(--rad-sm);
      padding: .6rem 1.1rem;
      font-size: .85rem;
      color: var(--acc2);
      font-weight: 600;
      margin-bottom: 1.5rem;
    }
    .countdown-timer {
      font-weight: 900;
      font-size: 1rem;
      letter-spacing: 1px;
      color: #fff;
    }

    /* Bonuses */
    .bonuses {
      background: var(--bg);
      padding: var(--sp3) 0;
    }
    .bonuses h2 {
      font-size: clamp(1.6rem, 3.5vw, 2.4rem);
      font-weight: 800;
      color: var(--fg);
      margin-bottom: .75rem;
    }

    .cards-grid-3 {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.25rem;
      margin: var(--sp2) 0;
    }

    .info-card {
      background: var(--card-bg);
      border: 1px solid var(--card-border);
      border-radius: var(--rad);
      padding: 1.5rem;
      backdrop-filter: blur(10px);
      transition: transform .25s, box-shadow .25s;
    }
    .info-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 16px 48px rgba(0,201,255,.15);
    }
    .info-card h3 {
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--fg);
      margin-bottom: .75rem;
      padding-bottom: .6rem;
      border-bottom: 1px solid rgba(0,201,255,.15);
    }
    .info-card p {
      color: var(--fg2);
      font-size: .92rem;
      line-height: 1.65;
      margin-bottom: .65rem;
    }
    .info-card p:last-child { margin-bottom: 0; }
    .info-card .checklist { margin-top: .5rem; }

    /* Games */
    .games {
      background: linear-gradient(180deg, #0a0e1f 0%, #0d1f3c 100%);
      padding: var(--sp3) 0;
      position: relative;
      overflow: hidden;
    }
    .games h2 {
      font-size: clamp(1.6rem, 3.5vw, 2.4rem);
      font-weight: 800;
      color: var(--fg);
      margin-bottom: .75rem;
    }
    .feature-block {
      background: var(--card-bg);
      border: 1px solid var(--card-border);
      border-radius: var(--rad);
      padding: 2rem;
      margin-bottom: 1.5rem;
      backdrop-filter: blur(8px);
    }
    .feature-block h3 {
      font-size: 1.25rem;
      font-weight: 700;
      color: var(--acc);
      margin-bottom: 1rem;
    }
    .feature-block p {
      color: var(--fg2);
      font-size: .95rem;
      line-height: 1.7;
    }

    /* VIP */
    .vip-program {
      background: linear-gradient(135deg, #0d1f3c 0%, #0a0f1e 50%, #13052a 100%);
      padding: var(--sp3) 0;
      position: relative;
      overflow: hidden;
    }
    .vip-glow {
      position: absolute;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(123,47,255,.08) 0%, transparent 70%);
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      pointer-events: none;
    }
    .vip-program h2 {
      font-size: clamp(1.6rem, 3.5vw, 2.4rem);
      font-weight: 800;
      color: var(--fg);
      margin-bottom: 1rem;
    }
    .vip-program p {
      color: var(--fg2);
      font-size: .97rem;
      line-height: 1.7;
      margin-bottom: 1.25rem;
    }
    .vip-program a { color: var(--acc); text-decoration: none; border-bottom: 1px solid rgba(0,201,255,.3); transition: color .2s; }
    .vip-program a:hover { color: #fff; }

    .vip-levels {
      display: flex;
      flex-wrap: wrap;
      gap: .6rem;
      margin: 1.5rem 0;
    }
    .vip-level-chip {
      padding: .4rem 1rem;
      border-radius: 50px;
      font-size: .8rem;
      font-weight: 700;
      letter-spacing: .5px;
    }
    .vip-level-chip.bronze { background: rgba(205,127,50,.15); color: #cd7f32; border: 1px solid rgba(205,127,50,.3); }
    .vip-level-chip.silver { background: rgba(192,192,192,.15); color: #c0c0c0; border: 1px solid rgba(192,192,192,.3); }
    .vip-level-chip.gold { background: rgba(240,192,64,.15); color: var(--gold); border: 1px solid rgba(240,192,64,.3); }
    .vip-level-chip.platinum { background: rgba(0,201,255,.15); color: var(--acc); border: 1px solid rgba(0,201,255,.3); }
    .vip-level-chip.diamond { background: rgba(123,47,255,.15); color: #a66fff; border: 1px solid rgba(123,47,255,.3); }
    .vip-level-chip.red { background: rgba(255,77,109,.15); color: var(--acc2); border: 1px solid rgba(255,77,109,.3); }

    /* License */
    .license-security {
      background: var(--bg);
      padding: var(--sp3) 0;
    }
    .license-security h2 {
      font-size: clamp(1.6rem, 3.5vw, 2.4rem);
      font-weight: 800;
      color: var(--fg);
      margin-bottom: 1rem;
    }
    .license-security p {
      color: var(--fg2);
      font-size: .97rem;
      line-height: 1.7;
      margin-bottom: 1rem;
    }
    .license-security p:last-child { margin-bottom: 0; }

    .trust-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 1rem;
      margin: var(--sp2) 0;
    }
    .trust-card {
      background: var(--card-bg);
      border: 1px solid var(--card-border);
      border-radius: var(--rad-sm);
      padding: 1.25rem;
      display: flex;
      align-items: center;
      gap: .85rem;
      backdrop-filter: blur(8px);
    }
    .trust-icon {
      width: 44px;
      height: 44px;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.3rem;
      flex-shrink: 0;
      background: linear-gradient(135deg, var(--c3), var(--acc3));
    }
    .trust-card-text strong { display: block; color: var(--fg); font-size: .9rem; font-weight: 700; }
    .trust-card-text span { color: var(--fg2); font-size: .8rem; }

    /* Payments */
    .payments {
      background: linear-gradient(180deg, #0a0e1f 0%, #0d1f3c 100%);
      padding: var(--sp3) 0;
    }
    .payments h2 {
      font-size: clamp(1.6rem, 3.5vw, 2.4rem);
      font-weight: 800;
      color: var(--fg);
      margin-bottom: .75rem;
    }
    .payments p {
      color: var(--fg2);
      font-size: .97rem;
      line-height: 1.7;
      margin-bottom: 1.25rem;
    }
    .payments a { color: var(--acc); text-decoration: none; border-bottom: 1px solid rgba(0,201,255,.3); transition: color .2s; }
    .payments a:hover { color: #fff; }

    /* Support */
    .support-mobile {
      background: var(--bg);
      padding: var(--sp3) 0;
    }
    .support-mobile h2 {
      font-size: clamp(1.6rem, 3.5vw, 2.4rem);
      font-weight: 800;
      color: var(--fg);
      margin-bottom: .75rem;
    }
    .cards-grid-2 {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.25rem;
      margin-top: var(--sp2);
    }

    /* FAQ */
    .faq {
      background: linear-gradient(180deg, #0d1f3c 0%, #060b18 100%);
      padding: var(--sp3) 0;
    }
    .faq h2 {
      font-size: clamp(1.6rem, 3.5vw, 2.4rem);
      font-weight: 800;
      color: var(--fg);
      margin-bottom: var(--sp2);
    }
    .faq-cta-box {
      background: linear-gradient(135deg, rgba(0,201,255,.08), rgba(123,47,255,.08));
      border: 1px solid rgba(0,201,255,.2);
      border-radius: var(--rad);
      padding: 2rem;
      text-align: center;
      margin-top: var(--sp2);
    }
    .faq-cta-box p { color: var(--fg2); margin-bottom: 1.25rem; }

    @media (max-width: 1023px) {
      .cards-grid-3 { grid-template-columns: repeat(2, 1fr); }
    }

    @media (max-width: 767px) {
      .hero-section { padding: 3rem 0 2.5rem; min-height: auto; }
      .hero-stats { gap: 1rem; }
      .stat-divider { display: none; }
      .cards-grid-3 { grid-template-columns: 1fr; }
      .cards-grid-2 { grid-template-columns: 1fr; }
      .hero-cta-row { flex-direction: column; align-items: flex-start; }
      .section-pad { padding: 2.5rem 0; }
      .feature-block { padding: 1.5rem; }
      .btn-gold { font-size: .95rem; padding: .85rem 2rem; }
      .trust-grid { grid-template-columns: 1fr 1fr; }
    }

    @media (max-width: 479px) {
      .hero-stats { flex-direction: column; gap: .75rem; }
      .trust-grid { grid-template-columns: 1fr; }
    }

    @media (min-width: 1440px) {
      .container { max-width: 1280px; }
      .hero-section h1 { font-size: 4rem; }
    }