 :root {
    --brand-gold: #f5a623;
    --brand-dark: #2c1a00;
    --brand-brown: #7a4500;
    --brand-green: #1a7a3c;
    --brand-red: #c0392b;
    --text-dark: #1a1a1a;
    --bg-light: #f8f9fa;
  }
 
  * { box-sizing: border-box; }
 
  body {
    font-family: 'Nunito', sans-serif;
    background: #fff;
    color: var(--text-dark);
    overflow-x: hidden;
  }
 
  /* ── TOPBAR ── */
  .topbar {
    background: var(--brand-dark);
    color: #fff;
    font-size: 0.78rem;
    padding: 6px 0;
    border-bottom: 2px solid var(--brand-gold);
  }
  .topbar a { color: var(--brand-gold); text-decoration: none; }
 
  /* ── NAVBAR ── */
  .navbar {
    background: #fff;
    border-bottom: 3px solid var(--brand-gold);
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1030;
  }
  .navbar-brand img { height: 35px; }
  .navbar .nav-link {
    font-weight: 700;
    font-size: 0.92rem;
    color: var(--text-dark) !important;
    padding: 6px 14px !important;
    border-radius: 6px;
    transition: all .2s;
  }
  .navbar .nav-link:hover { background: var(--brand-gold); color: #fff !important; }
  .btn-getid {
    background: linear-gradient(135deg, #f5a623 0%, #e67e22 100%);
    color: #fff !important;
    font-weight: 800;
    border-radius: 30px;
    padding: 8px 22px !important;
    border: none;
    box-shadow: 0 4px 14px rgba(245,166,35,0.4);
    animation: pulse-btn 2s infinite;
  }
  @keyframes pulse-btn {
    0%,100% { box-shadow: 0 4px 14px rgba(245,166,35,0.4); }
    50% { box-shadow: 0 4px 24px rgba(245,166,35,0.75); }
  }
 
  /* ── HERO ── */
  .hero {
    background: linear-gradient(135deg, #2c1a00 0%, #7a3f00 40%, #1a1a1a 100%);
    color: #fff;
    padding: 70px 0 60px;
    position: relative;
    overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23f5a623' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
  }
  .hero .display-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.8rem, 6vw, 5rem);
    letter-spacing: 2px;
    line-height: 1.1;
  }
  .hero .display-title span { color: var(--brand-gold); }
  .hero .subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.85);
    font-weight: 600;
    margin-top: 12px;
  }
  .hero-badge {
    background: var(--brand-gold);
    color: #2c1a00;
    font-weight: 800;
    font-size: 0.8rem;
    border-radius: 20px;
    padding: 4px 14px;
    display: inline-block;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  .btn-hero-primary {
    background: linear-gradient(135deg, #f5a623, #e67e22);
    color: #fff;
    font-weight: 800;
    font-size: 1.1rem;
    border-radius: 40px;
    padding: 14px 36px;
    border: none;
    box-shadow: 0 6px 20px rgba(245,166,35,0.5);
    transition: transform .2s;
  }
  .btn-hero-primary:hover { transform: translateY(-2px); color: #fff; }
  .btn-hero-secondary {
    background: transparent;
    color: #fff;
    font-weight: 700;
    font-size: 1.05rem;
    border-radius: 40px;
    padding: 13px 32px;
    border: 2px solid rgba(255,255,255,0.5);
    transition: all .2s;
  }
  .btn-hero-secondary:hover { border-color: var(--brand-gold); color: var(--brand-gold); }
 
  .hero-stats {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 40px;
    padding-top: 24px;
  }
  .hero-stats .stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: var(--brand-gold);
    line-height: 1;
  }
  .hero-stats .stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.65); }
 
  /* ── MARQUEE ── */
  .marquee-bar {
    background: var(--brand-gold);
    color: var(--brand-dark);
    font-weight: 800;
    font-size: 0.88rem;
    padding: 9px 0;
    overflow: hidden;
    white-space: nowrap;
  }
  .marquee-inner {
    display: inline-block;
    animation: marquee 25s linear infinite;
  }
  @keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
  .marquee-inner span { margin-right: 60px; }
  .marquee-inner i { margin-right: 6px; }
 
  /* ── SECTION HEADERS ── */
  .section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.4rem;
    letter-spacing: 1px;
    color: var(--text-dark);
  }
  .section-title span { color: var(--brand-gold); }
  .section-subtitle { color: #555; font-size: 1rem; font-weight: 600; }
  .title-divider {
    width: 60px; height: 4px;
    background: linear-gradient(90deg, var(--brand-gold), var(--brand-brown));
    border-radius: 2px;
    margin: 10px auto 0;
  }
 
  /* ── GET ID SECTION ── */
  .get-id-section { background: var(--bg-light); padding: 72px 0; }
  .step-card {
    background: #fff;
    border-radius: 16px;
    padding: 36px 28px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
    border-bottom: 4px solid var(--brand-gold);
    transition: transform .25s, box-shadow .25s;
    height: 100%;
    position: relative;
  }
  .step-card:hover { transform: translateY(-6px); box-shadow: 0 12px 30px rgba(245,166,35,0.2); }
  .step-number {
    width: 60px; height: 60px;
    background: linear-gradient(135deg, #f5a623, #e67e22);
    color: #fff;
    border-radius: 50%;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 4px 14px rgba(245,166,35,0.4);
  }
  .step-icon { font-size: 2.2rem; color: var(--brand-gold); margin-bottom: 14px; display: block; }
  .step-card h5 { font-weight: 800; font-size: 1.15rem; margin-bottom: 10px; }
  .step-card p { color: #666; font-size: 0.92rem; margin: 0; }
  .step-arrow {
    position: absolute;
    top: 50%; right: -18px;
    transform: translateY(-50%);
    color: var(--brand-gold);
    font-size: 1.8rem;
    z-index: 2;
  }
 
  /* ── SPORTS SECTION ── */
  .sports-section { padding: 72px 0; background: #fff; }
  .sport-card {
    background: var(--bg-light);
    border-radius: 14px;
    padding: 24px 16px;
    text-align: center;
    transition: all .25s;
    cursor: pointer;
    border: 2px solid transparent;
    height: 100%;
  }
  .sport-card:hover { background: var(--brand-dark); color: #fff; border-color: var(--brand-gold); transform: translateY(-4px); }
  .sport-card:hover .sport-label { color: #fff; }
  .sport-icon { font-size: 2.5rem; color: var(--brand-gold); margin-bottom: 12px; display: block; }
  .sport-label { font-weight: 800; font-size: 0.95rem; color: var(--text-dark); }
  .sport-badge { font-size: 0.7rem; font-weight: 700; padding: 2px 8px; border-radius: 10px; }
 
  /* ── CASINO SECTION ── */
  .casino-section { padding: 72px 0; background: var(--brand-dark); }
  .casino-section .section-title { color: #fff; }
  .casino-section .section-subtitle { color: rgba(255,255,255,0.65); }
  .casino-card {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    height: 220px;
  }
  .casino-card img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .4s;
  }
  .casino-card:hover img { transform: scale(1.07); }
  .casino-card .casino-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 55%);
    display: flex; align-items: flex-end;
    padding: 16px;
  }
  .casino-card .casino-name { color: #fff; font-weight: 800; font-size: 1rem; }
  .casino-card .live-badge {
    position: absolute; top: 12px; left: 12px;
    background: var(--brand-red);
    color: #fff; font-size: 0.7rem; font-weight: 700;
    padding: 3px 9px; border-radius: 10px;
  }
  .casino-card .hot-badge {
    position: absolute; top: 12px; left: 12px;
    background: var(--brand-gold);
    color: #2c1a00; font-size: 0.7rem; font-weight: 700;
    padding: 3px 9px; border-radius: 10px;
  }
 
  /* Casino image placeholders with background colors */
  .casino-bg-1 { background: linear-gradient(135deg,#1a3a6c,#0d2244); }
  .casino-bg-2 { background: linear-gradient(135deg,#1a4a2e,#0a2016); }
  .casino-bg-3 { background: linear-gradient(135deg,#5a0d0d,#2a0505); }
  .casino-bg-4 { background: linear-gradient(135deg,#4a1a6c,#200a40); }
  .casino-bg-5 { background: linear-gradient(135deg,#3a2a00,#1a1300); }
  .casino-bg-6 { background: linear-gradient(135deg,#1a4a40,#082020); }
  .casino-bg-7 { background: linear-gradient(135deg,#4a2a00,#200d00); }
  .casino-bg-8 { background: linear-gradient(135deg,#1a1a4a,#080820); }
 
  .casino-icon-wrap {
    width: 100%; height: 100%;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 14px;
  }
  .casino-icon-wrap i { font-size: 4rem; color: rgba(255,255,255,0.9); }
  .casino-icon-wrap span { color: rgba(255,255,255,0.6); font-size: 0.85rem; font-weight: 600; }
 
  /* ── WHY US ── */
  .why-section { padding: 72px 0; background: var(--bg-light); }
  .feature-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px 24px;
    text-align: center;
    box-shadow: 0 3px 16px rgba(0,0,0,0.06);
    height: 100%;
    border-top: 4px solid var(--brand-gold);
    transition: transform .25s;
  }
  .feature-card:hover { transform: translateY(-5px); }
  .feature-card i { font-size: 2.4rem; color: var(--brand-gold); margin-bottom: 14px; display: block; }
  .feature-card h6 { font-weight: 800; font-size: 1rem; margin-bottom: 8px; }
  .feature-card p { font-size: 0.88rem; color: #666; margin: 0; }
 
  /* ── PROMOTIONS ── */
  .promo-section { padding: 72px 0; background: #fff; }
  .promo-card {
    border-radius: 16px;
    overflow: hidden;
    color: #fff;
    padding: 32px 28px;
    position: relative;
    height: 100%;
  }
  .promo-card h5 { font-weight: 900; font-size: 1.3rem; margin-bottom: 6px; }
  .promo-card .promo-amount {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: var(--brand-gold);
    line-height: 1;
  }
  .promo-card p { font-size: 0.88rem; opacity: 0.85; margin: 8px 0 0; }
  .promo-card .btn-promo {
    margin-top: 18px;
    background: #fff;
    color: var(--brand-dark);
    font-weight: 800;
    border-radius: 30px;
    padding: 8px 22px;
    font-size: 0.88rem;
    border: none;
  }
  .promo-1 { background: linear-gradient(135deg,#7a3f00,#2c1a00); }
  .promo-2 { background: linear-gradient(135deg,#1a4a2e,#082010); }
  .promo-3 { background: linear-gradient(135deg,#5a0d0d,#1a0404); }
 
  /* ── TESTIMONIALS ── */
  .testimonials-section { padding: 72px 0; background: var(--bg-light); }
  .testimonial-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
    border-left: 4px solid var(--brand-gold);
    height: 100%;
  }
  .testimonial-card .quote { font-size: 2rem; color: var(--brand-gold); line-height: 1; }
  .testimonial-card p { font-size: 0.92rem; color: #444; font-style: italic; font-weight: 600; }
  .testimonial-card .stars { color: var(--brand-gold); font-size: 0.85rem; }
  .testi-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--brand-dark);
    color: var(--brand-gold);
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 0.9rem;
    flex-shrink: 0;
  }
  .verified-badge { color: var(--brand-green); font-size: 0.78rem; font-weight: 700; }
  .carousel-control-prev-icon,
  .carousel-control-next-icon { filter: invert(1); }
  .carousel-indicators [data-bs-target] { background-color: var(--brand-gold); }
 
  /* ── DOWNLOAD ── */
  .download-section {
    background: linear-gradient(135deg, #2c1a00 0%, #7a3f00 100%);
    padding: 72px 0;
    color: #fff;
  }
  .download-section h2 { font-family: 'Bebas Neue', sans-serif; font-size: 3rem; letter-spacing: 1px; }
  .download-section h2 span { color: var(--brand-gold); }
  .btn-download {
    background: var(--brand-gold);
    color: #2c1a00;
    font-weight: 800;
    border-radius: 12px;
    padding: 12px 28px;
    border: none;
    font-size: 0.95rem;
    transition: all .2s;
  }
  .btn-download:hover { background: #fff; color: var(--brand-dark); }
  .download-stat { text-align: center; }
  .download-stat .num { font-family: 'Bebas Neue', sans-serif; font-size: 2rem; color: var(--brand-gold); }
  .download-stat .lbl { font-size: 0.8rem; opacity: 0.7; }
 
  /* ── FOOTER ── */
  footer {
    background: #0d0700;
    color: rgba(255,255,255,0.75);
    padding: 60px 0 30px;
  }
  footer .brand-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    color: var(--brand-gold);
    letter-spacing: 2px;
  }
  footer .brand-tagline { font-size: 0.82rem; color: rgba(255,255,255,0.5); margin-top: 4px; }
  footer h6 { color: var(--brand-gold); font-weight: 800; letter-spacing: 1px; text-transform: uppercase; font-size: 0.82rem; margin-bottom: 16px; }
  footer a { color: rgba(255,255,255,0.65); text-decoration: none; font-size: 0.88rem; display: block; margin-bottom: 8px; transition: color .2s; }
  footer a:hover { color: var(--brand-gold); }
  .footer-divider { border-color: rgba(255,255,255,0.08); margin: 30px 0 20px; }
  .social-btn {
    width: 38px; height: 38px;
    border-radius: 8px;
    background: rgba(255,255,255,0.07);
    display: inline-flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.7);
    font-size: 1rem;
    transition: all .2s;
    text-decoration: none !important;
  }
  .social-btn:hover { background: var(--brand-gold); color: var(--brand-dark) !important; }
  .footer-badge {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 6px 14px;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.6);
    margin-right: 8px; margin-bottom: 8px;
  }
  .gambling-warning {
    background: rgba(255,255,255,0.03);
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 14px 0 0;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.35);
  }
 
  /* ── WHATSAPP FLOAT ── */
  .whatsapp-float {
    position: fixed;
    bottom: 28px; right: 28px;
    z-index: 9999;
    background: #25D366;
    color: #fff;
    width: 60px; height: 60px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37,211,102,0.5);
    animation: float-wa 3s ease-in-out infinite;
  }
  @keyframes float-wa {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
  }
 
  /* ── MISC ── */
  .bg-gold { background: var(--brand-gold) !important; }
  .text-gold { color: var(--brand-gold) !important; }
 
  @media (max-width: 768px) {
    .hero { padding: 48px 0 40px; }
    .step-arrow { display: none !important; }
    .hero-stats { text-align: center; }
  }