   /* ===== TOKEN SYSTEM ===== */
    :root {
      --gold-light:   #F5D787;
      --gold-main:    #C9A227;
      --gold-deep:    #8B6914;
      --black-rich:   #0A0804;
      --black-card:   #131007;
      --black-surface:#1C1608;
      --black-border: #2E2410;
      --cream:        #FDF6E3;
      --text-muted:   #8A7A5A;
      --danger:       #E74C3C;
      --success:      #27AE60;
    }
 
    /* ===== BASE ===== */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
 
    body {
      font-family: 'Rajdhani', sans-serif;
      background: var(--black-rich) !important;
      color: var(--cream);
      overflow-x: hidden;
      min-height: 100vh;
    }
 
    /* ===== GOLD GRADIENT UTILITY ===== */
    .gold-text {
      background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-main) 50%, var(--gold-deep) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .gold-border { border: 1px solid var(--gold-main); }
    .gold-bg {
      background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-main) 60%, var(--gold-deep) 100%);
    }
 
    /* ===== TOP NAV ===== */
    .top-nav {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(10,8,4,0.95);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--black-border);
      padding: 10px 16px;
    }
    .nav-logo {
      font-family: 'Cinzel Decorative', serif;
      font-size: 1.15rem;
      font-weight: 900;
      line-height: 1;
    }
    .nav-logo img{
        width: 65px;
    }
    .nav-logo span { font-size: 0.55rem; display: block; letter-spacing: 3px; color: var(--gold-main); text-transform: uppercase; }
    .nav-btn {
      font-family: 'Rajdhani', sans-serif;
      font-weight: 700;
      font-size: 0.8rem;
      letter-spacing: 1px;
      padding: 6px 14px;
      border-radius: 4px;
      border: none;
      cursor: pointer;
      transition: all .2s;
    }
    .nav-btn-outline {
      background: transparent;
      border: 1px solid var(--gold-main);
      color: var(--gold-main);
    }
    .nav-btn-outline:hover { background: var(--gold-main); color: var(--black-rich); }
    .nav-btn-gold {
      background: linear-gradient(135deg, var(--gold-light), var(--gold-main));
      color: var(--black-rich);
    }
    .nav-btn-gold:hover { opacity: .88; }
 
    /* ===== DESKTOP NAV LINKS ===== */
    .desktop-nav-links {
      display: none;
    }
    @media (min-width: 992px) {
      .desktop-nav-links {
        display: flex;
        align-items: center;
        gap: 2px;
      }
    }
    .desktop-nav-links a {
      font-family: 'Rajdhani', sans-serif;
      font-weight: 600;
      font-size: 0.8rem;
      letter-spacing: 0.8px;
      text-transform: uppercase;
      color: rgba(253,246,227,0.7);
      text-decoration: none;
      padding: 6px 11px;
      border-radius: 4px;
      transition: color .18s, background .18s;
      white-space: nowrap;
    }
    .desktop-nav-links a:hover {
      color: var(--gold-light);
      background: rgba(201,162,39,0.08);
    }
    .desktop-nav-links a.active {
      color: var(--gold-main);
    }
    .nav-divider {
      width: 1px;
      height: 18px;
      background: var(--black-border);
      margin: 0 6px;
    }
 
    /* ===== HERO ===== */
    .hero {
      position: relative;
      min-height: 92vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      padding: 60px 20px 80px;
      overflow: hidden;
    }
    .hero-bg {
      position: absolute; inset: 0; z-index: 0;
      background:
        radial-gradient(ellipse 70% 60% at 50% 40%, rgba(201,162,39,.12) 0%, transparent 70%),
        radial-gradient(ellipse 40% 30% at 20% 80%, rgba(201,162,39,.06) 0%, transparent 60%),
        linear-gradient(180deg, #0A0804 0%, #0F0C04 60%, #0A0804 100%);
    }
    /* Animated ambient orbs */
    .hero-orb {
      position: absolute; border-radius: 50%; filter: blur(60px); z-index: 0;
      animation: pulse-orb 6s ease-in-out infinite;
    }
    .hero-orb-1 { width: 300px; height: 300px; background: rgba(201,162,39,.07); top: 10%; left: -10%; }
    .hero-orb-2 { width: 200px; height: 200px; background: rgba(245,215,135,.05); bottom: 15%; right: -5%; animation-delay: -3s; }
    @keyframes pulse-orb { 0%,100%{opacity:.5;transform:scale(1);} 50%{opacity:1;transform:scale(1.15);} }
 
    .hero-eyebrow {
      font-size: .7rem;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: var(--gold-main);
      margin-bottom: 16px;
      position: relative; z-index: 1;
    }
    .hero-crown {
      font-size: 2.8rem;
      margin-bottom: 12px;
      position: relative; z-index: 1;
      animation: float-crown 4s ease-in-out infinite;
    }
    @keyframes float-crown { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-8px);} }
 
    .hero-title {
      font-family: 'Cinzel Decorative', serif;
      font-size: clamp(2.2rem, 8vw, 3.8rem);
      font-weight: 900;
      line-height: 1.05;
      position: relative; z-index: 1;
      margin-bottom: 8px;
    }
    .hero-sub {
      font-size: 1rem;
      color: var(--gold-main);
      letter-spacing: 3px;
      text-transform: uppercase;
      position: relative; z-index: 1;
      margin-bottom: 20px;
    }
    .hero-desc {
      font-size: 1.05rem;
      font-weight: 400;
      color: rgba(253,246,227,.65);
      max-width: 480px;
      line-height: 1.65;
      position: relative; z-index: 1;
      margin-bottom: 36px;
    }
    .hero-cta-group { position: relative; z-index: 1; display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
    .btn-hero-primary {
      font-family: 'Rajdhani', sans-serif;
      font-weight: 700;
      font-size: 1rem;
      letter-spacing: 1.5px;
      padding: 14px 32px;
      border-radius: 4px;
      border: none;
      cursor: pointer;
      background: linear-gradient(135deg, var(--gold-light), var(--gold-main), var(--gold-deep));
      color: var(--black-rich);
      box-shadow: 0 0 30px rgba(201,162,39,.35);
      transition: all .25s;
      text-decoration: none;
      display: inline-block;
    }
    .btn-hero-primary:hover { transform: translateY(-2px); box-shadow: 0 0 45px rgba(201,162,39,.55); color: var(--black-rich); }
    .btn-hero-secondary {
      font-family: 'Rajdhani', sans-serif;
      font-weight: 600;
      font-size: 1rem;
      letter-spacing: 1px;
      padding: 13px 28px;
      border-radius: 4px;
      border: 1px solid var(--gold-main);
      color: var(--gold-light);
      background: transparent;
      cursor: pointer;
      text-decoration: none;
      display: inline-block;
      transition: all .25s;
    }
    .btn-hero-secondary:hover { background: rgba(201,162,39,.1); color: var(--gold-light); }
 
    /* Stats strip */
    .stats-strip {
      position: absolute; bottom: 0; left: 0; right: 0; z-index: 1;
      background: rgba(19,16,7,.85);
      border-top: 1px solid var(--black-border);
      padding: 14px 0;
    }
    .stat-item { text-align: center; padding: 0 12px; }
    .stat-num {
      font-family: 'Cinzel Decorative', serif;
      font-size: 1.2rem;
      font-weight: 700;
      background: linear-gradient(135deg, var(--gold-light), var(--gold-main));
      -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    }
    .stat-label { font-size: .65rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-muted); }
    .stat-divider { width: 1px; background: var(--black-border); align-self: stretch; }
 
    /* ===== TRUST BADGES ===== */
    .trust-row { padding: 20px 16px; border-bottom: 1px solid var(--black-border); }
    .trust-badge {
      display: flex; align-items: center; gap: 7px;
      font-size: .78rem; font-weight: 600; letter-spacing: .5px;
      color: var(--gold-light);
    }
    .trust-badge i { color: var(--gold-main); font-size: 1rem; }
 
    /* ===== SECTION COMMONS ===== */
    .section { padding: 56px 0; }
    .section-eyebrow {
      font-size: .65rem; letter-spacing: 4px; text-transform: uppercase;
      color: var(--gold-main); margin-bottom: 8px;
    }
    .section-title {
      font-family: 'Rajdhani', sans-serif;
      font-size: clamp(1.4rem, 5vw, 2.2rem);
      font-weight: 700; line-height: 1.2; margin-bottom: 12px;
    }
    .section-body { color: rgba(253,246,227,.6); font-size: .95rem; line-height: 1.7; margin-bottom: 32px; }
 
    /* Gold line decoration */
    .gold-line { width: 48px; height: 2px; background: linear-gradient(90deg, var(--gold-main), transparent); margin-bottom: 28px; }
 
    /* ===== SPORTS GRID ===== */
    .sports-section { background: var(--black-surface); }
    .sport-card {
        background: var(--black-card);
        border: 1px solid var(--black-border);
        border-radius: 14px;
        overflow: hidden;
        text-align: center;
        transition: all .35s ease;
        height: 100%;
        position: relative;
    }
    .sport-card:hover {
      border-color: var(--gold-main);
      transform: translateY(-4px);
      box-shadow: 0 8px 32px rgba(201,162,39,.15);
    }
    .sport-image {
    position: relative;
    height: 160px;
    overflow: hidden;
    }
    .sport-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .5s ease;
    }
    
    .sport-card:hover .sport-image img {
        transform: scale(1.08);
    }
    /* Dark Overlay */
    .sport-image::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(
            to top,
            rgba(10,8,4,.95),
            rgba(10,8,4,.2)
        );
    }
    .sport-icon { font-size: 2.2rem; margin-bottom: 10px; }
    .sport-name {
      font-family: 'Rajdhani', sans-serif; font-weight: 700;
      font-size: .9rem; letter-spacing: 1px; text-transform: uppercase;
      color: var(--gold-light);
    }
    .sport-count { font-size: .7rem; color: var(--text-muted); margin-top: 4px; }
    .sport-card.featured { border-color: var(--gold-main); background: rgba(201,162,39,.04); }
    .sport-badge {
      display: inline-block; font-size: .55rem; letter-spacing: 1px;
      background: linear-gradient(135deg, var(--gold-light), var(--gold-main));
      color: var(--black-rich); font-weight: 700; padding: 2px 8px;
      border-radius: 2px; text-transform: uppercase; margin-bottom: 6px;
    }
 
    /* ===== HOW IT WORKS ===== */
    .steps-section { background: var(--black-rich); }
    .step-card {
      display: flex; gap: 16px; align-items: flex-start;
      padding: 20px 0;
      border-bottom: 1px solid var(--black-border);
    }
    .step-card:last-child { border-bottom: none; }
    .step-num {
      font-family: 'Cinzel Decorative', serif; font-size: 2rem; font-weight: 900;
      line-height: 1; min-width: 48px;
      background: linear-gradient(135deg, var(--gold-light), var(--gold-deep));
      -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    }
    .step-content h5 {
      font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: 1rem;
      letter-spacing: .5px; color: var(--cream); margin-bottom: 4px;
    }
    .step-content p { font-size: .85rem; color: var(--text-muted); line-height: 1.55; }
 
    /* ===== FEATURES ===== */
    .features-section { background: var(--black-surface); }
    .feature-card {
      background: var(--black-card); border: 1px solid var(--black-border);
      border-radius: 8px; padding: 24px 20px; height: 100%;
      transition: border-color .2s;
    }
    .feature-card:hover { border-color: var(--gold-deep); }
    .feature-icon {
      width: 48px; height: 48px; border-radius: 8px;
      background: rgba(201,162,39,.1); border: 1px solid var(--gold-deep);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.4rem; margin-bottom: 16px;
    }
    .feature-icon i{
    font-size:1.7rem;
    color:var(--gold-main);
}

.feature-card:hover .feature-icon{
    background:rgba(201,162,39,.15);
    border-color:var(--gold-main);
    transform:translateY(-3px);
}

.feature-card:hover .feature-icon i{
    color:var(--gold-light);
}
    .feature-title { font-weight: 700; font-size: .95rem; color: var(--gold-light); margin-bottom: 6px; }
    .feature-desc { font-size: .82rem; color: var(--text-muted); line-height: 1.6; }
 
    /* ===== BONUSES ===== */
    .bonuses-section { background: var(--black-rich); }
    .bonus-card {
      background: var(--black-card); border: 1px solid var(--black-border);
      border-radius: 8px; padding: 20px; margin-bottom: 12px;
      display: flex; align-items: center; gap: 16px;
      transition: all .2s;
    }
    .bonus-card:hover { border-color: var(--gold-main); }
    .bonus-amount {
      font-family: 'Cinzel Decorative', serif; font-size: 1rem; font-weight: 700;
      background: linear-gradient(135deg, var(--gold-light), var(--gold-main));
      -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
      min-width: 80px; text-align: center; line-height: 1.2;
    }
    .bonus-amount small { font-size: .55rem; display: block; font-family: 'Rajdhani', sans-serif; color: var(--gold-deep); -webkit-text-fill-color: var(--gold-deep); }
    .bonus-divider { width: 1px; height: 40px; background: var(--black-border); flex-shrink: 0; }
    .bonus-info h6 { font-weight: 700; font-size: .9rem; color: var(--cream); margin-bottom: 2px; }
    .bonus-info p { font-size: .75rem; color: var(--text-muted); line-height: 1.4; }
 
    /* ===== TESTIMONIALS ===== */
    .testimonials-section { background: var(--black-surface); }
    .testi-card {
      background: var(--black-card); border: 1px solid var(--black-border);
      border-radius: 8px; padding: 22px; height: 100%;
      position: relative;
    }
    .testi-card::before {
      content: '"';
      font-family: 'Cinzel Decorative', serif; font-size: 3.5rem; line-height: .8;
      color: rgba(201,162,39,.15); position: absolute; top: 12px; right: 16px;
    }
    .testi-stars { color: var(--gold-main); font-size: .75rem; margin-bottom: 10px; }
    .testi-text { font-size: .85rem; color: rgba(253,246,227,.7); line-height: 1.65; margin-bottom: 14px; }
    .testi-author { font-weight: 700; font-size: .85rem; color: var(--gold-light); }
    .testi-city { font-size: .72rem; color: var(--text-muted); }
 
    /* ===== CASINO GAMES ===== */
    .casino-section { background: var(--black-rich); }
    .game-pill {
      display: inline-flex; align-items: center; gap: 8px;
      background: var(--black-card); border: 1px solid var(--black-border);
      border-radius: 100px; padding: 8px 16px; margin: 4px;
      font-size: .8rem; font-weight: 600; color: var(--cream);
      transition: all .2s; cursor: pointer;
    }
    .game-pill:hover { border-color: var(--gold-main); color: var(--gold-light); }
    .game-pill i { color: var(--gold-main); font-size: .9rem; }
 
    /* ===== PAYMENT METHODS ===== */
    .payment-section { background: var(--black-surface); }
    .pay-badge {
      background: var(--black-card); border: 1px solid var(--black-border);
      border-radius: 8px; padding: 12px 20px;
      font-size: .85rem; font-weight: 600; color: var(--cream);
      display: flex; align-items: center; gap: 8px;
    }
    .pay-badge i { color: var(--gold-main); }
 
    /* ===== WHATSAPP CTA ===== */
    .whatsapp-cta {
      background: linear-gradient(135deg, rgba(201,162,39,.08), rgba(139,105,20,.04));
      border: 1px solid var(--gold-deep); border-radius: 12px;
      padding: 36px 24px; text-align: center;
      margin: 0 16px 40px;
    }
    .wa-btn {
      display: inline-flex; align-items: center; gap: 10px;
      background: #25D366; color: #fff;
      font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: 1rem;
      letter-spacing: 1px; padding: 14px 28px; border-radius: 6px;
      border: none; cursor: pointer; text-decoration: none;
      transition: all .2s; margin-bottom: 10px;
    }
    .wa-btn:hover { background: #128C7E; color: #fff; transform: translateY(-2px); }
    .wa-cta-text { font-size: .8rem; color: var(--text-muted); }
 
    /* ===== FOOTER ===== */
    footer {
      background: var(--black-card);
      border-top: 1px solid var(--black-border);
      padding: 40px 0 80px;
    }
    .footer-logo-text {
      font-family: 'Cinzel Decorative', serif; font-size: 1.1rem; font-weight: 900;
    }
    .footer-tagline { font-size: .65rem; letter-spacing: 3px; text-transform: uppercase; color: var(--gold-main); margin-top: 2px; }
    .footer-link { color: var(--text-muted); font-size: .82rem; text-decoration: none; display: block; padding: 3px 0; transition: color .15s; }
    .footer-link:hover { color: var(--gold-light); }
    .footer-heading { font-weight: 700; font-size: .75rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gold-main); margin-bottom: 14px; }
    .social-btn {
      width: 36px; height: 36px; border-radius: 6px;
      border: 1px solid var(--black-border); background: var(--black-surface);
      color: var(--text-muted); display: inline-flex; align-items: center; justify-content: center;
      font-size: 1rem; text-decoration: none; transition: all .2s; margin-right: 6px;
    }
    .social-btn:hover { border-color: var(--gold-main); color: var(--gold-main); }
    .footer-bottom {
      border-top: 1px solid var(--black-border); margin-top: 36px; padding-top: 16px;
      font-size: .7rem; color: var(--text-muted); text-align: center;
    }
    .footer-disclaimer {
      font-size: .68rem; color: var(--text-muted); line-height: 1.5; margin-top: 10px;
      padding: 12px; background: rgba(255,255,255,.02); border-radius: 6px;
      border: 1px solid var(--black-border);
    }
 
    /* ===== BOTTOM NAV (mobile) ===== */
    .bottom-nav {
      position: fixed; bottom: 0; left: 0; right: 0; z-index: 1001;
      background: rgba(10,8,4,.97);
      border-top: 1px solid var(--black-border);
      padding: 8px 0 12px;
      backdrop-filter: blur(12px);
    }
    .bnav-item {
      display: flex; flex-direction: column; align-items: center; gap: 3px;
      color: var(--text-muted); font-size: .6rem; font-weight: 600;
      letter-spacing: .5px; text-transform: uppercase; text-decoration: none;
      transition: color .2s;
    }
    .bnav-item.active, .bnav-item:hover { color: var(--gold-main); }
    .bnav-item i { font-size: 1.15rem; }
    .bnav-center-btn {
      display: flex; flex-direction: column; align-items: center; gap: 3px;
      background: linear-gradient(135deg, var(--gold-light), var(--gold-main));
      color: var(--black-rich); border-radius: 50%; width: 52px; height: 52px;
      justify-content: center; margin-top: -20px;
      box-shadow: 0 0 20px rgba(201,162,39,.4);
      font-size: .55rem; font-weight: 700; letter-spacing: .5px; text-decoration: none;
    }
    .bnav-center-btn i { font-size: 1.3rem; }
 
    /* ===== LIVE BADGE ===== */
    .live-dot {
      width: 6px; height: 6px; border-radius: 50%; background: var(--danger);
      display: inline-block; margin-right: 4px;
      animation: blink 1.2s ease-in-out infinite;
    }
    @keyframes blink { 0%,100%{opacity:1;} 50%{opacity:.2;} }
    .live-badge {
      font-size: .65rem; font-weight: 700; letter-spacing: 1px;
      color: var(--danger); text-transform: uppercase;
    }
 
    /* ===== RESPONSIVE ===== */
    @media (min-width: 768px) {
      .bottom-nav { display: none; }
      body { padding-bottom: 0; }
    }
    @media (max-width: 767px) {
      body { padding-bottom: 70px; }
      .hero { min-height: 85vh; padding: 50px 20px 100px; }
      .hero-title { font-size: 2.1rem; }
    }
 
    /* ===== SCROLL ANIMATION ===== */
    .fade-up { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
    .fade-up.visible { opacity: 1; transform: translateY(0); }
 
    /* ===== IPL BADGE ===== */
    .ipl-chip {
      display: inline-flex; align-items: center; gap: 6px;
      background: rgba(201,162,39,.12); border: 1px solid var(--gold-deep);
      border-radius: 100px; padding: 4px 12px; font-size: .7rem;
      font-weight: 700; letter-spacing: 1px; color: var(--gold-light);
      text-transform: uppercase; margin-bottom: 20px;
    }
 
    /* hamburger menu */
    .hamburger { background: none; border: none; color: var(--cream); font-size: 1.4rem; cursor: pointer; padding: 2px 6px; }
    .mobile-menu {
      position: fixed; inset: 0; z-index: 999;
      background: rgba(10,8,4,.98); backdrop-filter: blur(16px);
      display: none; flex-direction: column; padding: 80px 32px 40px;
    }
    .mobile-menu.open { display: flex; }
    .mobile-menu a {
      font-family: 'Cinzel Decorative', serif; font-size: 1.2rem;
      color: var(--cream); text-decoration: none; padding: 14px 0;
      border-bottom: 1px solid var(--black-border); letter-spacing: 1px;
      transition: color .2s;
    }
    .mobile-menu a:hover { color: var(--gold-main); }
    .close-menu {
      position: absolute; top: 20px; right: 20px;
      background: none; border: none; color: var(--text-muted);
      font-size: 1.6rem; cursor: pointer;
    }
    
        .wa-float{
        position: fixed;
        right: -44px;
        bottom: 16px;
    }
    .wa-float i{
        width: 111px;
        color: #25d366;
    }
    
    
       /* ===== PAGE LAYOUT ===== */
    .page-wrap-login {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 32px 16px 48px;
      position: relative;
      overflow: hidden;
    }
 
    /* Ambient background */
    .page-wrap-login::before {
      content: '';
      position: absolute; inset: 0;
      background:
        radial-gradient(ellipse 60% 50% at 50% 30%, rgba(201,162,39,.08) 0%, transparent 70%),
        radial-gradient(ellipse 30% 40% at 10% 80%, rgba(201,162,39,.04) 0%, transparent 60%);
      pointer-events: none;
    }
 
    /* ===== CARD ===== */
    .login-card {
      background: var(--black-card);
      border: 1px solid var(--black-border);
      border-radius: 12px;
      width: 100%;
      max-width: 440px;
      overflow: hidden;
      position: relative;
      z-index: 1;
      box-shadow: 0 24px 80px rgba(0,0,0,.6), 0 0 0 1px rgba(201,162,39,.04);
    }
 
    /* Gold top accent line */
    .card-accent {
      height: 3px;
      background: linear-gradient(90deg, transparent, var(--gold-main), var(--gold-light), var(--gold-main), transparent);
    }
 
    .card-body-inner { padding: 32px 28px 28px; }
 
    /* ===== LOGO HEADER ===== */
    .card-logo {
      text-align: center; margin-bottom: 28px;
    }
    .card-logo-crown { font-size: 1.8rem; line-height: 1; margin-bottom: 6px; }
    .card-logo-name {
      font-family: 'Cinzel Decorative', serif;
      font-size: 1.25rem; font-weight: 900; line-height: 1;
    }
    .card-logo-sub {
      font-size: .6rem; letter-spacing: 3px; text-transform: uppercase;
      color: var(--gold-main); margin-top: 4px;
    }
 
    /* ===== STEP TABS ===== */
    .step-tabs {
      display: flex;
      background: var(--black-surface);
      border: 1px solid var(--black-border);
      border-radius: 8px;
      padding: 4px;
      gap: 4px;
      margin-bottom: 28px;
    }
    .step-tab {
      flex: 1; display: flex; flex-direction: column; align-items: center; gap: 3px;
      padding: 9px 6px;
      border-radius: 6px;
      border: none; background: transparent; cursor: pointer;
      transition: all .2s; font-family: 'Rajdhani', sans-serif;
      position: relative;
    }
    .step-tab .tab-num {
      width: 20px; height: 20px; border-radius: 50%;
      border: 1.5px solid var(--black-border);
      font-size: .65rem; font-weight: 700;
      display: flex; align-items: center; justify-content: center;
      color: var(--text-muted); transition: all .2s;
    }
    .step-tab .tab-label {
      font-size: .62rem; letter-spacing: .8px; text-transform: uppercase;
      color: var(--text-muted); font-weight: 600; transition: color .2s;
    }
    .step-tab.active {
      background: rgba(201,162,39,.08);
    }
    .step-tab.active .tab-num {
      border-color: var(--gold-main);
      background: linear-gradient(135deg, var(--gold-light), var(--gold-main));
      color: var(--black-rich);
    }
    .step-tab.active .tab-label { color: var(--gold-light); }
    .step-tab.done .tab-num {
      border-color: var(--success); background: var(--success); color: #fff;
    }
    .step-tab.done .tab-label { color: var(--text-muted); }
 
    /* Step connector */
    .step-tab:not(:last-child)::after {
      content: '';
      position: absolute; right: -2px; top: 50%; transform: translateY(-50%);
      width: 1px; height: 20px; background: var(--black-border);
    }
 
    /* ===== PANELS ===== */
    .panel { display: none; }
    .panel.active { display: block; }
 
    /* ===== FORM ELEMENTS ===== */
    .field-label {
      font-size: .72rem; font-weight: 700; letter-spacing: 1px;
      text-transform: uppercase; color: var(--text-muted); margin-bottom: 7px; display: block;
    }
    .field-wrap { position: relative; margin-bottom: 16px; }
    .field-icon {
      position: absolute; left: 13px; top: 50%; transform: translateY(-50%);
      color: var(--text-muted); font-size: .95rem; pointer-events: none;
    }
    .form-input {
      width: 100%;
      background: var(--black-surface);
      border: 1px solid var(--black-border);
      border-radius: 6px;
      padding: 12px 14px 12px 38px;
      color: var(--cream);
      font-family: 'Rajdhani', sans-serif;
      font-size: .95rem;
      font-weight: 500;
      outline: none;
      transition: border-color .2s, box-shadow .2s;
    }
    .form-input::placeholder { color: rgba(138,122,90,.5); }
    .form-input:focus {
      border-color: var(--gold-deep);
      box-shadow: 0 0 0 3px rgba(201,162,39,.08);
    }
    .toggle-pw {
      position: absolute; right: 13px; top: 50%; transform: translateY(-50%);
      background: none; border: none; color: var(--text-muted); cursor: pointer;
      font-size: .9rem; padding: 0; transition: color .2s;
    }
    .toggle-pw:hover { color: var(--gold-main); }
 
    /* ===== SUBMIT BUTTON ===== */
    .btn-submit {
      width: 100%;
      padding: 13px;
      border: none; border-radius: 6px; cursor: pointer;
      font-family: 'Rajdhani', sans-serif; font-weight: 700;
      font-size: 1rem; letter-spacing: 1.5px; text-transform: uppercase;
      background: linear-gradient(135deg, var(--gold-light), var(--gold-main), var(--gold-deep));
      color: var(--black-rich);
      box-shadow: 0 4px 20px rgba(201,162,39,.25);
      transition: all .2s; margin-top: 4px;
      text-decoration: none; display: block; text-align: center;
    }
    .btn-submit:hover {
      transform: translateY(-1px);
      box-shadow: 0 6px 28px rgba(201,162,39,.4);
      color: var(--black-rich);
    }
    .btn-submit:active { transform: translateY(0); }
    .btn-submit i { margin-right: 6px; }
 
    /* WhatsApp button */
    .btn-wa {
      width: 100%; padding: 13px; border: none; border-radius: 6px; cursor: pointer;
      font-family: 'Rajdhani', sans-serif; font-weight: 700;
      font-size: 1rem; letter-spacing: 1px; text-transform: uppercase;
      background: #25D366; color: #fff;
      transition: all .2s; text-decoration: none; display: block; text-align: center;
    }
    .btn-wa:hover { background: #128C7E; color: #fff; transform: translateY(-1px); }
 
    .btn-outline-gold {
      width: 100%; padding: 12px; border: 1px solid var(--gold-deep); border-radius: 6px;
      font-family: 'Rajdhani', sans-serif; font-weight: 700;
      font-size: .9rem; letter-spacing: 1px; text-transform: uppercase;
      background: transparent; color: var(--gold-light); cursor: pointer;
      transition: all .2s; text-decoration: none; display: block; text-align: center;
    }
    .btn-outline-gold:hover { background: rgba(201,162,39,.08); color: var(--gold-light); }
 
    /* ===== DIVIDER ===== */
    .or-divider {
      display: flex; align-items: center; gap: 12px; margin: 16px 0;
    }
    .or-divider::before, .or-divider::after {
      content: ''; flex: 1; height: 1px; background: var(--black-border);
    }
    .or-divider span { font-size: .7rem; color: var(--text-muted); letter-spacing: 1px; }
 
    /* ===== FORGOT / HELP LINKS ===== */
    .help-link {
      font-size: .75rem; color: var(--text-muted); text-decoration: none; transition: color .2s;
    }
    .help-link:hover { color: var(--gold-main); }
 
    /* ===== PANEL: GET ID ===== */
    .panel-heading {
      margin-bottom: 20px;
    }
    .panel-heading h2 {
      font-family: 'Cinzel Decorative', serif;
      font-size: 1.15rem; font-weight: 700; margin-bottom: 4px;
    }
    .panel-heading p {
      font-size: .82rem; color: var(--text-muted); line-height: 1.5;
    }
 
    /* ID type selector */
    .id-type-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 8px; margin-bottom: 20px;
    }
    .id-type-card {
      background: var(--black-surface); border: 1.5px solid var(--black-border);
      border-radius: 8px; padding: 12px 10px; cursor: pointer;
      transition: all .2s; text-align: center;
    }
    .id-type-card:hover { border-color: var(--gold-deep); }
    .id-type-card.selected {
      border-color: var(--gold-main);
      background: rgba(201,162,39,.06);
    }
    .id-type-card input[type="radio"] { display: none; }
    .id-type-icon { font-size: 1.4rem; margin-bottom: 5px; }
    .id-type-name {
      font-size: .78rem; font-weight: 700; color: var(--cream);
      letter-spacing: .5px; display: block;
    }
    .id-type-desc { font-size: .65rem; color: var(--text-muted); margin-top: 2px; display: block; }
    .id-type-card.selected .id-type-name { color: var(--gold-light); }
 
    /* ===== PANEL: DEPOSIT ===== */
    .amount-chips {
      display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px;
    }
    .amount-chip {
      padding: 7px 14px; border-radius: 100px;
      border: 1px solid var(--black-border); background: var(--black-surface);
      font-family: 'Rajdhani', sans-serif; font-weight: 700;
      font-size: .8rem; color: var(--text-muted); cursor: pointer;
      transition: all .2s;
    }
    .amount-chip:hover { border-color: var(--gold-deep); color: var(--gold-light); }
    .amount-chip.selected {
      border-color: var(--gold-main); background: rgba(201,162,39,.08); color: var(--gold-light);
    }
 
    .pay-methods { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px; }
    .pay-method {
      display: flex; align-items: center; gap: 6px;
      padding: 8px 12px; border-radius: 6px;
      border: 1.5px solid var(--black-border); background: var(--black-surface);
      font-size: .78rem; font-weight: 600; color: var(--text-muted);
      cursor: pointer; transition: all .2s;
    }
    .pay-method:hover { border-color: var(--gold-deep); color: var(--cream); }
    .pay-method.selected { border-color: var(--gold-main); color: var(--gold-light); }
    .pay-method i { color: var(--gold-main); }
 
    /* ===== SUCCESS STATE ===== */
    .success-state {
      text-align: center; padding: 16px 0 8px;
    }
    .success-icon {
      width: 60px; height: 60px; border-radius: 50%;
      background: rgba(39,174,96,.12); border: 2px solid var(--success);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.6rem; margin: 0 auto 16px; color: var(--success);
    }
    .success-state h3 {
      font-family: 'Cinzel Decorative', serif; font-size: 1rem;
      font-weight: 700; margin-bottom: 6px;
    }
    .success-state p { font-size: .82rem; color: var(--text-muted); line-height: 1.6; }
 
    /* ===== BONUS CALLOUT ===== */
    .bonus-callout {
      background: rgba(201,162,39,.06);
      border: 1px solid var(--gold-deep);
      border-radius: 8px; padding: 12px 14px;
      display: flex; align-items: center; gap: 12px;
      margin-bottom: 20px;
    }
    .bonus-callout-icon { font-size: 1.4rem; flex-shrink: 0; }
    .bonus-callout-text { font-size: .78rem; line-height: 1.5; }
    .bonus-callout-text strong { color: var(--gold-light); }
 
    /* ===== FOOTER CARD ===== */
    .card-footer-inner {
      padding: 16px 28px 20px;
      border-top: 1px solid var(--black-border);
      background: rgba(0,0,0,.2);
    }
 
    /* ===== TRUST ROW ===== */
    .trust-mini {
      display: flex; justify-content: center; gap: 20px; flex-wrap: wrap;
      margin-top: 24px;
    }
    .trust-mini-item {
      display: flex; align-items: center; gap: 5px;
      font-size: .68rem; color: var(--text-muted); font-weight: 600;
    }
    .trust-mini-item i { color: var(--gold-main); font-size: .85rem; }
 
    /* ===== FOOTER ===== */
    .page-footer {
      text-align: center; padding: 20px 16px;
      font-size: .7rem; color: var(--text-muted);
      border-top: 1px solid var(--black-border);
    }
    .page-footer a { color: var(--gold-deep); text-decoration: none; }
    .page-footer a:hover { color: var(--gold-main); }
 
    /* ===== MOBILE ===== */
    @media (max-width: 480px) {
      .card-body-inner { padding: 24px 20px 20px; }
      .card-footer-inner { padding: 14px 20px 18px; }
    }
    
    
    .id-type-icon{
    width:48px;
    height:48px;
    margin:0 auto 12px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:12px;
    background:rgba(201,162,39,.08);
    border:1px solid rgba(201,162,39,.2);
}

.id-type-icon i{
    font-size:1.5rem;
    color:var(--gold-main);
    transition:all .3s ease;
}

.id-type-card.selected .id-type-icon{
    background:rgba(201,162,39,.15);
    border-color:var(--gold-main);
}

.id-type-card.selected .id-type-icon i{
    color:var(--gold-light);
}

.id-type-card:hover .id-type-icon{
    border-color:var(--gold-main);
    transform:translateY(-2px);
}


.about-section{
    background:#fff;
}

.about-tag{
    color:#c9a227;
    letter-spacing:2px;
    font-size:14px;
}

.about-section h2{
    color:#111;
}

.about-section p{
    font-size:16px;
    line-height:1.8;
}

.about-image img{
    width:100%;
    object-fit:cover;
}

.about-stat{
    padding:15px;
    border:1px solid #eee;
    border-radius:12px;
    transition:.3s ease;
    background:#fff;
}

.about-stat:hover{
    transform:translateY(-4px);
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.about-stat h4{
    color:#c9a227;
    font-weight:700;
    margin-bottom:4px;
}

.about-stat span{
    color:#666;
    font-size:14px;
}


/* HERO */
.betting-hero{
    position:relative;
    overflow:hidden;
    background:
    radial-gradient(circle at 70% 40%, rgba(212,175,55,.18), transparent 35%),
    linear-gradient(180deg,#080808 0%,#000 100%);
    color:#fff;
}

.betting-hero::before{
    content:"";
    position:absolute;
    inset:0;
    background:
    repeating-linear-gradient(
    45deg,
    transparent,
    transparent 80px,
    rgba(212,175,55,.02) 80px,
    rgba(212,175,55,.02) 160px
    );
}

.hero-badge{
    color:var(--gold);
    letter-spacing:3px;
    font-size:13px;
    display:inline-block;
    margin-bottom:20px;
}
.hero-title span{
    color:var(--gold);
}

.hero-desc{
    max-width:550px;
    color:#bdbdbd;
    font-size:18px;
    line-height:1.8;
}

/* BUTTONS */
.btn-gold{
    background:var(--gold);
    color:#000;
    padding:14px 35px;
    font-weight:700;
    border-radius:8px;
}

.btn-gold:hover{
    background:var(--gold-light);
    color:#000;
}

.btn-outline-gold{
    border:1px solid var(--gold);
    color:var(--gold);
    padding:14px 35px;
    border-radius:8px;
}

.btn-outline-gold:hover{
    background:var(--gold);
    color:#000;
}

/* IMAGE */
.hero-image-wrapper{
    position:relative;
    display:inline-block;
}

.glow-circle{
    position:absolute;
    width:420px;
    height:420px;
    border-radius:50%;
    background:radial-gradient(
        circle,
        rgba(212,175,55,.35),
        rgba(212,175,55,.05),
        transparent
    );
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
}

.hero-image{
    position:relative;
    z-index:2;
    max-height:650px;
    filter:drop-shadow(0 0 40px rgba(212,175,55,.25));
}

/* STATS */
.hero-stats h4{
    color:var(--gold);
    font-weight:800;
    margin-bottom:5px;
}

.hero-stats span{
    color:#999;
    font-size:14px;
}


