  :root {
      --gold:      #f5b800;
      --orange:    #e07b00;
      --brown:     #7a5c2e;
      --olive:     #4a5a2a;
      --body-bg:   #f5f5f0;
      --white:     #ffffff;
      --card-bg:   #ffffff;
      --border:    #e0ddd5;
      --text-main: #1a1a1a;
      --text-muted:#6b6b6b;
      --green:     #2a7a3b;
      --section-alt:#edeae3;
    }
 
    *, *::before, *::after { box-sizing: border-box; }
 
    body {
      background: var(--body-bg);
      color: var(--text-main);
      font-family: 'Open Sans', sans-serif;
      font-size: 0.9rem;
      overflow-x: hidden;
    }
 
    h1,h2,h3,h4,h5,h6 {
      font-family: 'Oswald', sans-serif;
      letter-spacing: 0.02em;
    }
 
    /* ── NAVBAR ── */
    .navbar {
      background: #3b2e14;
      border-bottom: 3px solid var(--gold);
      padding: 0.6rem 0;
      position: sticky; top: 0; z-index: 1000;
    }
    .brand-text {
      font-family: 'Oswald', sans-serif;
      font-size: 1.7rem;
      font-weight: 700;
      background: linear-gradient(135deg, #f5b800, #ff9500);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      letter-spacing: 0.04em;
      text-decoration: none;
    }
    .nav-link {
      color: #d9c99a !important;
      font-family: 'Oswald', sans-serif;
      font-size: 0.82rem;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      transition: color 0.2s;
    }
    .nav-link:hover { color: var(--gold) !important; }
    .btn-nav-login {
      border: 2px solid var(--gold);
      color: var(--gold) !important;
      border-radius: 4px;
      padding: 0.3rem 1.1rem !important;
      font-family: 'Oswald', sans-serif;
      font-size: 0.82rem;
      letter-spacing: 0.1em;
      background: transparent;
      transition: background 0.2s, color 0.2s;
    }
    .btn-nav-login:hover { background: var(--gold); color: #1a1a1a !important; }
    .btn-nav-signup {
      background: var(--gold);
      border: 2px solid var(--gold);
      color: #1a1a1a !important;
      border-radius: 4px;
      padding: 0.3rem 1.1rem !important;
      font-family: 'Oswald', sans-serif;
      font-size: 0.82rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      transition: filter 0.2s;
    }
    .btn-nav-signup:hover { filter: brightness(1.1); }
 
    /* ── TICKER ── */
    .ticker-bar {
      background: #4a5a2a;
      overflow: hidden;
      padding: 0.4rem 0;
      border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    .ticker-inner {
      display: flex; gap: 3rem;
      animation: ticker 28s linear infinite;
      white-space: nowrap;
    }
    .ticker-item {
      font-family: 'Oswald', sans-serif;
      font-size: 0.72rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: #c8d8a0;
      flex-shrink: 0;
    }
    .ticker-item .live { color: #6ee46e; margin-right: 0.4rem; }
    .ticker-item .odds { color: var(--gold); }
    @keyframes ticker {
      0%   { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }
 
    /* ── HERO ── */
    .hero {
      background: linear-gradient(135deg, #3b2e14 0%, #2a2010 55%, #1a1800 100%);
      padding: 70px 0 80px;
      position: relative;
      overflow: hidden;
    }
    .hero::after {
      content: '';
      position: absolute; bottom: 0; left: 0; right: 0; height: 4px;
      background: linear-gradient(90deg, transparent, var(--gold), var(--orange), transparent);
    }
    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      font-family: 'Oswald', sans-serif;
      font-size: 0.7rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--gold);
      border: 1px solid rgba(245,184,0,0.4);
      padding: 0.28rem 0.9rem;
      border-radius: 3px;
      margin-bottom: 1rem;
    }
    .hero h1 {
      font-size: clamp(2.2rem, 5vw, 3.8rem);
      font-weight: 700;
      line-height: 1.08;
      text-transform: uppercase;
      color: #fff;
      margin-bottom: 1rem;
    }
    .hero h1 .accent { color: var(--gold); }
    .hero .hero-sub {
      font-size: 0.92rem;
      color: #b8a882;
      max-width: 480px;
      line-height: 1.7;
      margin-bottom: 1.8rem;
    }
    .btn-primary-gold {
      background: var(--gold);
      color: #1a1a1a;
      font-family: 'Oswald', sans-serif;
      font-size: 0.9rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      font-weight: 700;
      border: none;
      padding: 0.75rem 2rem;
      border-radius: 4px;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      text-decoration: none;
      transition: transform 0.2s, box-shadow 0.2s;
      box-shadow: 0 4px 18px rgba(245,184,0,0.35);
    }
    .btn-primary-gold:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 28px rgba(245,184,0,0.5);
      color: #1a1a1a;
    }
    .btn-outline-hero {
      background: transparent;
      border: 2px solid rgba(245,184,0,0.5);
      color: var(--gold);
      font-family: 'Oswald', sans-serif;
      font-size: 0.9rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      font-weight: 600;
      padding: 0.75rem 2rem;
      border-radius: 4px;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      text-decoration: none;
      transition: all 0.2s;
    }
    .btn-outline-hero:hover { background: rgba(245,184,0,0.12); color: var(--gold); }
 
    .hero-stats { display: flex; gap: 2rem; margin-top: 2rem; flex-wrap: wrap; }
    .hero-stat-val {
      font-family: 'Oswald', sans-serif;
      font-size: 1.6rem;
      font-weight: 700;
      color: var(--gold);
      line-height: 1;
    }
    .hero-stat-lbl { font-size: 0.7rem; color: #8a7a5a; text-transform: uppercase; letter-spacing: 0.1em; }
 
    /* ── LOGIN CARD ── */
    .login-card {
      background: #fff;
      border: 1px solid #d9c99a;
      border-radius: 10px;
      padding: 2.2rem 1.8rem;
      box-shadow: 0 12px 48px rgba(0,0,0,0.35);
      position: relative;
      overflow: hidden;
    }
    .login-card::before {
      content: '';
      position: absolute; top: 0; left: 0; right: 0; height: 4px;
      background: linear-gradient(90deg, var(--gold), var(--orange));
    }
    .login-card h4 {
      font-size: 1.3rem;
      text-transform: uppercase;
      color: #1a1a1a;
      margin-bottom: 0.2rem;
    }
    .login-card .sub { font-size: 0.78rem; color: var(--text-muted); }
    .form-label {
      font-size: 0.72rem;
      letter-spacing: 0.09em;
      text-transform: uppercase;
      color: #6b6b6b;
      font-weight: 600;
      margin-bottom: 0.35rem;
    }
    .form-control {
      background: #f9f7f2;
      border: 1px solid #ddd8cc;
      color: #1a1a1a;
      border-radius: 6px;
      padding: 0.65rem 0.9rem;
      font-family: 'Open Sans', sans-serif;
      font-size: 0.88rem;
      transition: border-color 0.2s, box-shadow 0.2s;
    }
    .form-control:focus {
      background: #fff;
      border-color: var(--gold);
      box-shadow: 0 0 0 3px rgba(245,184,0,0.15);
      color: #1a1a1a;
    }
    .form-control::placeholder { color: #aaa; }
    .input-group-text {
      background: #f9f7f2;
      border: 1px solid #ddd8cc;
      color: #888;
    }
    .badge-secure {
      display: inline-flex;
      align-items: center;
      gap: 0.3rem;
      background: rgba(42,122,59,0.1);
      border: 1px solid rgba(42,122,59,0.3);
      color: var(--green);
      font-size: 0.68rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 0.25rem 0.7rem;
      border-radius: 3px;
      font-family: 'Oswald', sans-serif;
    }
    .btn-login-main {
      background: var(--gold);
      color: #1a1a1a;
      font-family: 'Oswald', sans-serif;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      font-weight: 700;
      font-size: 0.95rem;
      border: none;
      border-radius: 6px;
      padding: 0.8rem;
      width: 100%;
      transition: transform 0.2s, box-shadow 0.2s;
      box-shadow: 0 4px 16px rgba(245,184,0,0.3);
    }
    .btn-login-main:hover { transform: translateY(-1px); box-shadow: 0 6px 22px rgba(245,184,0,0.45); }
    .btn-demo {
      background: #f5f2ec;
      border: 1px solid #ddd8cc;
      color: #555;
      font-family: 'Oswald', sans-serif;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      font-size: 0.85rem;
      border-radius: 6px;
      padding: 0.65rem;
      width: 100%;
      transition: border-color 0.2s, color 0.2s;
    }
    .btn-demo:hover { border-color: var(--gold); color: var(--orange); }
    .divider-text {
      position: relative; text-align: center;
      font-size: 0.72rem; color: #aaa;
      letter-spacing: 0.1em; text-transform: uppercase;
    }
    .divider-text::before, .divider-text::after {
      content: ''; position: absolute; top: 50%;
      width: 38%; height: 1px; background: #e0ddd5;
    }
    .divider-text::before { left: 0; }
    .divider-text::after { right: 0; }
    .recaptcha-note { font-size: 0.68rem; color: #bbb; text-align: center; margin-top: 0.6rem; }
    .recaptcha-note a { color: #aaa; text-decoration: none; }
 
    /* ── SECTION HELPERS ── */
    .section-label {
      font-family: 'Oswald', sans-serif;
      font-size: 0.68rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--orange);
      display: block;
      margin-bottom: 0.5rem;
    }
    .section-title {
      font-size: clamp(1.5rem, 3vw, 2.2rem);
      font-weight: 700;
      text-transform: uppercase;
      line-height: 1.15;
      color: var(--text-main);
    }
    .section-title .accent { color: var(--orange); }
 
    /* ── FEATURES ── */
    .features-section { background: var(--white); padding: 75px 0; }
    .feature-card {
      background: var(--body-bg);
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 1.8rem 1.5rem;
      height: 100%;
      border-top: 3px solid var(--gold);
      transition: box-shadow 0.25s, transform 0.25s;
    }
    .feature-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.09); transform: translateY(-3px); }
    .feature-icon {
      width: 46px; height: 46px;
      background: rgba(245,184,0,0.12);
      border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      color: var(--orange);
      font-size: 1.3rem;
      margin-bottom: 1rem;
    }
    .feature-card h5 { font-size: 1rem; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 0.5rem; color: #1a1a1a; }
    .feature-card p { font-size: 0.84rem; color: var(--text-muted); line-height: 1.6; margin: 0; }
 
    /* ── HOW IT WORKS ── */
    .how-section { background: var(--section-alt); padding: 75px 0; }
    .step-card {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 1.8rem 1.5rem;
      height: 100%;
    }
    .step-num {
      font-family: 'Oswald', sans-serif;
      font-size: 3rem;
      font-weight: 700;
      color: rgba(245,184,0,0.2);
      line-height: 1;
      margin-bottom: -0.4rem;
    }
    .step-card h5 { font-size: 0.98rem; text-transform: uppercase; letter-spacing: 0.04em; color: var(--orange); margin-bottom: 0.45rem; }
    .step-card p { font-size: 0.84rem; color: var(--text-muted); line-height: 1.62; margin: 0; }
 
    /* ── SECURITY ── */
    .security-section { background: var(--white); padding: 75px 0; }
    .security-list { list-style: none; padding: 0; margin: 0; }
    .security-list li {
      display: flex; align-items: flex-start; gap: 1rem;
      padding: 1rem 0;
      border-bottom: 1px solid var(--border);
    }
    .security-list li:last-child { border: none; }
    .security-icon {
      width: 38px; height: 38px; flex-shrink: 0;
      background: rgba(245,184,0,0.1);
      border-radius: 7px;
      display: flex; align-items: center; justify-content: center;
      color: var(--orange); font-size: 1rem;
    }
    .security-list h6 { font-family: 'Oswald', sans-serif; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.2rem; color: #1a1a1a; }
    .security-list p { font-size: 0.82rem; color: var(--text-muted); margin: 0; line-height: 1.55; }
 
    /* ── RESPONSIBLE ── */
    .resp-section { background: var(--section-alt); padding: 75px 0; }
    .resp-card {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 1.6rem 1.4rem;
      display: flex; align-items: flex-start; gap: 0.9rem;
      height: 100%;
      transition: border-color 0.2s;
    }
    .resp-card:hover { border-color: var(--gold); }
    .resp-card-icon { font-size: 1.5rem; color: var(--orange); flex-shrink: 0; margin-top: 0.1rem; }
    .resp-card h6 { font-family: 'Oswald', sans-serif; text-transform: uppercase; letter-spacing: 0.05em; font-size: 0.9rem; margin-bottom: 0.3rem; color: #1a1a1a; }
    .resp-card p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.55; margin: 0; }
 
    /* ── MOBILE ── */
    .mobile-section { background: var(--white); padding: 75px 0; }
    .mobile-feature {
      display: flex; align-items: flex-start; gap: 0.9rem;
      margin-bottom: 1.3rem;
    }
    .mobile-feature-icon {
      width: 38px; height: 38px; flex-shrink: 0;
      background: rgba(245,184,0,0.1); border-radius: 7px;
      display: flex; align-items: center; justify-content: center;
      color: var(--orange); font-size: 1rem;
    }
    .mobile-feature h6 { font-family: 'Oswald', sans-serif; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.2rem; color: #1a1a1a; }
    .mobile-feature p { font-size: 0.82rem; color: var(--text-muted); margin: 0; line-height: 1.55; }
    .mobile-mockup {
      background: #fff;
      border: 2px solid #e0ddd5;
      border-radius: 20px;
      padding: 1.8rem 1.4rem;
      max-width: 240px; margin: 0 auto;
      box-shadow: 0 12px 40px rgba(0,0,0,0.1);
    }
    .mockup-bar { background: #e8e5de; border-radius: 4px; height: 9px; margin-bottom: 0.5rem; }
    .mockup-bar.gold { background: linear-gradient(90deg, var(--gold), var(--orange)); width: 60%; }
    .mockup-btn {
      background: var(--gold);
      border-radius: 6px; height: 38px;
      display: flex; align-items: center; justify-content: center;
      font-family: 'Oswald', sans-serif; font-size: 0.82rem;
      color: #1a1a1a; font-weight: 700; letter-spacing: 0.1em;
      text-transform: uppercase; margin-top: 1rem;
    }
    .mockup-row {
      background: #f5f2ec; border-radius: 6px; padding: 0.7rem 0.8rem;
      margin-bottom: 0.5rem;
      display: flex; justify-content: space-between;
      font-size: 0.76rem;
    }
    .mockup-row .match { color: #555; }
    .mockup-row .odds { color: var(--orange); font-family: 'Oswald', sans-serif; font-weight: 600; }
 
    /* ── SUPPORT ── */
    .support-section { background: var(--section-alt); padding: 75px 0; }
    .support-card {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 1.8rem 1.5rem;
      text-align: center;
      height: 100%;
      border-top: 3px solid var(--gold);
      transition: box-shadow 0.25s, transform 0.25s;
    }
    .support-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.09); transform: translateY(-3px); }
    .support-card .icon { font-size: 1.8rem; color: var(--orange); margin-bottom: 0.9rem; }
    .support-card h5 { font-size: 0.98rem; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.4rem; }
    .support-card p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; margin: 0; }
 
    /* ── CTA ── */
    .cta-section {
      background: linear-gradient(135deg, #3b2e14, #2a2010);
      padding: 70px 0;
      text-align: center;
      border-top: 3px solid var(--gold);
    }
    .cta-section .section-label { color: #d9c99a; }
    .cta-section .section-title { color: #fff; }
    .cta-section .section-title .accent { color: var(--gold); }
    .cta-section p { font-size: 0.88rem; color: #b8a882; max-width: 440px; margin: 0 auto 1.8rem; line-height: 1.7; }
    .btn-outline-light-gold {
      background: transparent;
      border: 2px solid rgba(245,184,0,0.5);
      color: var(--gold);
      font-family: 'Oswald', sans-serif;
      font-size: 0.9rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      font-weight: 600;
      padding: 0.75rem 2rem;
      border-radius: 4px;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      text-decoration: none;
      transition: all 0.2s;
    }
    .btn-outline-light-gold:hover { background: rgba(245,184,0,0.1); color: var(--gold); }
 
    /* ── FOOTER ── */
    footer {
      background: #2a2010;
      border-top: 1px solid rgba(255,255,255,0.07);
      padding: 55px 0 25px;
    }
    .footer-heading {
      font-family: 'Oswald', sans-serif;
      font-size: 0.68rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 0.9rem;
    }
    footer p { font-size: 0.8rem; color: #8a7a5a; line-height: 1.6; }
    .footer-links { list-style: none; padding: 0; margin: 0; }
    .footer-links li { margin-bottom: 0.45rem; }
    .footer-links a { font-size: 0.8rem; color: #8a7a5a; text-decoration: none; transition: color 0.2s; }
    .footer-links a:hover { color: var(--gold); }
    .footer-divider { border-color: rgba(255,255,255,0.07); margin: 1.8rem 0 1.2rem; }
    .footer-bottom { font-size: 0.72rem; color: #5a4a2a; }
 
    /* ── ANIMATIONS ── */
    .fade-up {
      opacity: 0;
      transform: translateY(22px);
      animation: fadeUp 0.65s ease forwards;
    }
    @keyframes fadeUp { to { opacity: 1; transform: none; } }
    .d1 { animation-delay: 0.08s; }
    .d2 { animation-delay: 0.2s; }
    .d3 { animation-delay: 0.32s; }
    .d4 { animation-delay: 0.44s; }
 
    @media (max-width: 767px) {
      .hero-stats { gap: 1.3rem; }
    }
    
    
     /* ── SPORT BETTING SECTION ── */
  .sports-section { background: #0e1a0a; padding: 80px 0; }
  .sports-section .section-label { color: #6ee46e; }
  .sports-section .section-title { color: #fff; }
  .sports-section .section-title .accent { color: var(--gold); }
 
  .sport-category { margin-bottom: 2.5rem; }
  .sport-category-header {
    display: flex; align-items: center; gap: 0.75rem;
    margin-bottom: 1.1rem;
  }
  .sport-cat-badge {
    font-family: 'Oswald', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 0.22rem 0.85rem;
    border-radius: 3px;
    font-weight: 600;
  }
  .badge-t20   { background: rgba(245,184,0,0.15); color: var(--gold); border: 1px solid rgba(245,184,0,0.35); }
  .badge-odi   { background: rgba(110,228,110,0.12); color: #6ee46e; border: 1px solid rgba(110,228,110,0.3); }
  .badge-test  { background: rgba(96,165,250,0.12); color: #93c5fd; border: 1px solid rgba(96,165,250,0.3); }
  .badge-icc   { background: rgba(251,146,60,0.12); color: #fb923c; border: 1px solid rgba(251,146,60,0.3); }
 
  .sport-cat-line { flex: 1; height: 1px; background: rgba(255,255,255,0.07); }
 
  .match-card {
    background: #192613;
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 8px;
    padding: 0.9rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    transition: border-color 0.2s, background 0.2s;
    margin-bottom: 0.6rem;
  }
  .match-card:hover { border-color: rgba(245,184,0,0.3); background: #1f3019; }
  .match-card.live-card { border-left: 3px solid #6ee46e; }
  .match-card.icc-card  { border-left: 3px solid #fb923c; }
  .match-card.odi-card  { border-left: 3px solid #6ee46e; }
  .match-card.test-card { border-left: 3px solid #93c5fd; }
 
  .match-meta { display: flex; flex-direction: column; gap: 2px; flex: 1; min-width: 0; }
  .match-teams {
    font-family: 'Oswald', sans-serif;
    font-size: 0.9rem; font-weight: 600;
    color: #f0ead8; letter-spacing: 0.03em;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  }
  .match-info { font-size: 0.72rem; color: #6a7a5a; letter-spacing: 0.04em; }
  .match-live-dot {
    display: inline-flex; align-items: center; gap: 0.3rem;
    font-family: 'Oswald', sans-serif;
    font-size: 0.62rem; letter-spacing: 0.12em;
    color: #6ee46e; text-transform: uppercase;
  }
  .match-live-dot::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%; background: #6ee46e;
    animation: blink 1.1s ease-in-out infinite;
  }
  @keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }
 
  .odds-group { display: flex; gap: 0.5rem; flex-shrink: 0; }
  .odd-btn {
    font-family: 'Oswald', sans-serif;
    font-size: 0.8rem; font-weight: 600;
    letter-spacing: 0.05em;
    padding: 0.35rem 0.75rem;
    border-radius: 5px;
    border: 1px solid rgba(245,184,0,0.25);
    background: rgba(245,184,0,0.07);
    color: var(--gold);
    cursor: pointer;
    transition: background 0.18s, border-color 0.18s, transform 0.15s;
    text-align: center; min-width: 52px;
  }
  .odd-btn:hover { background: rgba(245,184,0,0.18); border-color: var(--gold); transform: scale(1.04); }
  .odd-btn small { display: block; font-size: 0.58rem; color: #8a8a6a; font-weight: 400; }
 
  .sport-see-all {
    font-family: 'Oswald', sans-serif;
    font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--gold); text-decoration: none;
    display: inline-flex; align-items: center; gap: 0.4rem;
    margin-top: 0.4rem; transition: gap 0.2s;
  }
  .sport-see-all:hover { gap: 0.7rem; color: var(--gold); }
  
  
  
  .teams-row{
    display:flex;
    align-items:center;
    gap:14px;
}

.team-logo{

    width:44px;
    height:44px;

    object-fit:contain;

    background:#fff;

    border-radius:50%;

    padding:4px;

    border:1px solid #eee;
}
 
  /* ── ONLINE CASINO SECTION ── */
 /* ── ONLINE CASINO SECTION — updated to match site palette ── */
  .casino-section { background: var(--section-alt); padding: 80px 0; }
  .casino-section .section-label { color: var(--orange); }
  .casino-section .section-title { color: var(--text-main); }
  .casino-section .section-title .accent { color: var(--orange); }
 
  .casino-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.25s, box-shadow 0.25s;
    height: 100%;
    position: relative;
    border-top: 3px solid var(--gold);
  }
  .casino-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  }
 
  .casino-card-art {
    height: 130px;
    display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden;
  }
  .casino-card-art img{
    object-fit: contain;
    width: 100%;
    display:block;
    transition:transform .4s ease;
  }
  .casino-card-art img:hover{
    transform:scale(1.04);
}
  .art-tp  { background: #f5f0e6; }
  .art-ab  { background: #edf2f5; }
  .art-rl  { background: #f5ece6; }
  .art-sl  { background: #edf5ee; }
 
  .casino-card-emoji {
    font-size: 3.2rem;
    position: relative; z-index: 1;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.12));
  }
  .casino-hot-badge {
    position: absolute; top: 10px; right: 10px;
    background: #e11d48; color: #fff;
    font-family: 'Oswald', sans-serif; font-size: 0.6rem;
    letter-spacing: 0.12em; text-transform: uppercase;
    padding: 0.2rem 0.6rem; border-radius: 3px; z-index: 2;
  }
  .casino-new-badge {
    position: absolute; top: 10px; right: 10px;
    background: var(--olive); color: #fff;
    font-family: 'Oswald', sans-serif; font-size: 0.6rem;
    letter-spacing: 0.12em; text-transform: uppercase;
    padding: 0.2rem 0.6rem; border-radius: 3px; z-index: 2;
  }
 
  .casino-card-body { padding: 1.2rem 1.3rem 1.4rem; }
  .casino-card-body h5 {
    font-family: 'Oswald', sans-serif; font-size: 1rem;
    text-transform: uppercase; letter-spacing: 0.06em;
    color: var(--text-main); margin-bottom: 0.35rem;
  }
  .casino-card-body p {
    font-size: 0.82rem; color: var(--text-muted);
    line-height: 1.6; margin-bottom: 1rem;
  }
  .casino-tag-row { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 1rem; }
  .casino-tag {
    font-size: 0.65rem; font-family: 'Oswald', sans-serif; letter-spacing: 0.08em;
    text-transform: uppercase; padding: 0.2rem 0.65rem;
    border-radius: 3px;
    border: 1px solid rgba(224,123,0,0.25);
    color: var(--orange);
    background: rgba(245,184,0,0.07);
  }
  .btn-play-now {
    width: 100%;
    background: var(--gold);
    border: none; color: #1a1a1a;
    font-family: 'Oswald', sans-serif; font-size: 0.88rem;
    letter-spacing: 0.1em; text-transform: uppercase; font-weight: 700;
    padding: 0.68rem; border-radius: 6px;
    transition: filter 0.2s, transform 0.15s;
    cursor: pointer;
    box-shadow: 0 3px 12px rgba(245,184,0,0.3);
  }
  .btn-play-now:hover { filter: brightness(1.08); transform: translateY(-1px); }
  .casino-players {
    font-size: 0.68rem; color: var(--text-muted); text-align: center;
    margin-top: 0.55rem; display: flex; align-items: center; justify-content: center; gap: 0.3rem;
  }
  .casino-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--green); display: inline-block; }
 
  .btn-browse-casino {
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--text-main);
    font-family: 'Oswald', sans-serif;
    font-size: 0.9rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 700;
    padding: 0.75rem 2rem; border-radius: 4px;
    display: inline-flex; align-items: center; gap: 0.5rem;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
  }
  .btn-browse-casino:hover { background: var(--gold); color: #1a1a1a; }
 
  /* ── APP DOWNLOAD SECTION ── */
.app-section{
    background:#f4f1eb;
    padding:90px 0;
    position:relative;
    overflow:hidden;

    border-top:1px solid #e6dfd2;
    border-bottom:1px solid #e6dfd2;
}

/* subtle luxury glow */
.app-section::before{
    content:'';
    position:absolute;
    top:-120px;
    right:-120px;
    width:420px;
    height:420px;

    background:
    radial-gradient(
        circle,
        rgba(245,184,0,0.10),
        transparent 65%
    );

    pointer-events:none;
}

/* section label */
.app-section .section-label{
    font-family:'Oswald',sans-serif;
    font-size:.72rem;
    letter-spacing:.28em;
    text-transform:uppercase;
    color:#d88900;
    margin-bottom:.7rem;
    display:block;
}

/* MAIN HEADING */
.app-section .section-title{
    font-family:'Oswald',sans-serif;
    font-size:clamp(2rem,4vw,3.2rem);
    line-height:1.05;
    text-transform:uppercase;
    font-weight:700;

    color:#171717;

    margin-bottom:1rem;
}

/* accent text */
.app-section .section-title .accent{
    color:#e08a00;
}

/* paragraph */
.app-section p{
    color:#6e675d !important;
    font-size:.92rem;
    line-height:1.8;
}

/* feature strip */
.app-feature-strip{
    display:flex;
    flex-wrap:wrap;
    gap:1.2rem;
    margin:2rem 0;
}

.app-feat{
    display:flex;
    align-items:center;
    gap:.45rem;

    font-family:'Oswald',sans-serif;
    font-size:.78rem;
    text-transform:uppercase;
    letter-spacing:.06em;

    color:#7a6c52;
}

.app-feat i{
    color:#f0a500;
}

/* buttons group */
.dl-btn-group{
    display:flex;
    flex-direction:column;
    gap:1rem;
    max-width:340px;
}

/* common button */
.dl-btn{
    background:#ffffff;

    border:1px solid #e2dccf;

    border-radius:14px;

    padding:1rem 1.3rem;

    display:flex;
    align-items:center;
    gap:1rem;

    text-decoration:none;

    transition:.25s ease;

    box-shadow:
    0 4px 18px rgba(0,0,0,.04);
}

.dl-btn:hover{
    transform:translateY(-3px);
    border-color:#f0b000;

    box-shadow:
    0 10px 30px rgba(240,176,0,.12);
}

/* icons */
.dl-btn-icon{
    width:52px;
    height:52px;

    border-radius:12px;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:1.5rem;

    flex-shrink:0;
}

/* android */
.dl-btn-android .dl-btn-icon{
    background:#e8f8ea;
    color:#33b249;
}

/* ios */
.dl-btn-ios .dl-btn-icon{
    background:#f1f1f5;
    color:#666;
}

/* apk */
.dl-btn-apk .dl-btn-icon{
    background:#fff4d8;
    color:#e09a00;
}

/* text */
.dl-btn-text small{
    display:block;

    font-family:'Oswald',sans-serif;

    font-size:.64rem;

    text-transform:uppercase;

    letter-spacing:.08em;

    color:#999;
}

.dl-btn-text strong{
    display:block;

    font-family:'Oswald',sans-serif;

    font-size:1rem;

    text-transform:uppercase;

    letter-spacing:.05em;

    color:#171717;
}

  .app-phone-visual {
    position: relative;
    display: flex; justify-content: center;
  }
  .phone-frame {
    background: linear-gradient(160deg, #2a2010, #1a1200);
    border: 2px solid rgba(245,184,0,0.25);
    border-radius: 28px;
    width: 220px;
    padding: 1.4rem 1.1rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(245,184,0,0.08);
    position: relative;
  }
  .phone-notch {
    width: 60px; height: 10px; background: #0a0800;
    border-radius: 10px; margin: 0 auto 1rem;
  }
  .phone-screen-header {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 0.8rem;
  }
  .phone-brand { font-family: 'Oswald', sans-serif; font-size: 0.85rem; color: var(--gold); font-weight: 700; letter-spacing: 0.06em; }
  .phone-live { font-size: 0.6rem; color: #4ade80; font-family: 'Oswald', sans-serif; letter-spacing: 0.1em; display: flex; align-items: center; gap: 3px; }
  .phone-live::before { content: ''; width: 5px; height: 5px; background: #4ade80; border-radius: 50%; display: inline-block; animation: blink 1.1s infinite; }
  .phone-bar { background: rgba(245,184,0,0.15); border-radius: 3px; height: 7px; margin-bottom: 0.4rem; }
  .phone-bar.active { background: linear-gradient(90deg, var(--gold), var(--orange)); }
  .phone-match-row {
    background: rgba(255,255,255,0.04); border-radius: 6px;
    padding: 0.55rem 0.65rem; margin-bottom: 0.4rem;
    display: flex; justify-content: space-between; align-items: center;
  }
  .phone-match-row .t { font-size: 0.7rem; color: #c0b080; font-family: 'Oswald', sans-serif; }
  .phone-match-row .o { font-size: 0.75rem; color: var(--gold); font-family: 'Oswald', sans-serif; font-weight: 600; }
  .phone-cta-btn {
    background: var(--gold); border-radius: 6px; margin-top: 0.8rem;
    padding: 0.55rem; text-align: center;
    font-family: 'Oswald', sans-serif; font-size: 0.78rem; color: #1a1a1a; font-weight: 700; letter-spacing: 0.1em;
  }
  .phone-glow {
    position: absolute; bottom: -30px; left: 50%; transform: translateX(-50%);
    width: 160px; height: 50px;
    background: radial-gradient(ellipse, rgba(245,184,0,0.25), transparent 70%);
    filter: blur(8px);
  }
 
  /* ── BETTING ID FEATURES SECTION ── */
  .betid-section { background: var(--section-alt); padding: 80px 0; }
  .betid-section .section-label { color: var(--orange); }
  .betid-section .section-title .accent { color: var(--orange); }
 
  .betid-hero-card {
    background: linear-gradient(135deg, #3b2e14 0%, #2a2010 100%);
    border: 1px solid rgba(245,184,0,0.2);
    border-radius: 14px;
    padding: 2.2rem 2rem;
    margin-bottom: 2rem;
    position: relative; overflow: hidden;
  }
  .betid-hero-card::after {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--orange));
  }
  .betid-hero-card h3 {
    font-size: clamp(1.4rem, 3vw, 2rem);
    text-transform: uppercase; color: #fff; margin-bottom: 0.3rem;
  }
  .betid-hero-card h3 span { color: var(--gold); }
  .betid-hero-card p { font-size: 0.85rem; color: #b8a882; margin-bottom: 1.5rem; }
 
  .betid-stats-strip {
    display: flex; gap: 1.5rem; flex-wrap: wrap;
  }
  .betid-stat {
    background: rgba(245,184,0,0.07);
    border: 1px solid rgba(245,184,0,0.15);
    border-radius: 8px; padding: 0.8rem 1.2rem;
    flex: 1; min-width: 110px;
  }
  .betid-stat-val { font-family: 'Oswald', sans-serif; font-size: 1.4rem; color: var(--gold); font-weight: 700; line-height: 1; }
  .betid-stat-lbl { font-size: 0.65rem; color: #8a7a5a; text-transform: uppercase; letter-spacing: 0.08em; margin-top: 2px; }
 
  .betid-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 1rem; }
  .betid-feat-card {
    background: var(--body-bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 1.3rem 1.2rem;
    display: flex; align-items: flex-start; gap: 0.9rem;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  }
  .betid-feat-card:hover {
    border-color: var(--gold);
    box-shadow: 0 4px 18px rgba(245,184,0,0.1);
    transform: translateY(-2px);
  }
  .betid-feat-icon {
    width: 40px; height: 40px; flex-shrink: 0;
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
  }
  .icon-gold   { background: rgba(245,184,0,0.12); color: var(--orange); }
  .icon-green  { background: rgba(42,122,59,0.1);  color: #2a7a3b; }
  .icon-blue   { background: rgba(59,130,246,0.1); color: #3b82f6; }
  .icon-red    { background: rgba(239,68,68,0.1);  color: #ef4444; }
  .icon-purple { background: rgba(168,85,247,0.1); color: #a855f7; }
  .icon-teal   { background: rgba(20,184,166,0.1); color: #14b8a6; }
 
  .betid-feat-card h6 { font-family: 'Oswald', sans-serif; font-size: 0.88rem; text-transform: uppercase; letter-spacing: 0.05em; color: #1a1a1a; margin-bottom: 0.2rem; }
  .betid-feat-card p  { font-size: 0.79rem; color: var(--text-muted); line-height: 1.5; margin: 0; }
  .betid-feat-card .feat-val { font-family: 'Oswald', sans-serif; font-size: 1rem; color: var(--orange); font-weight: 700; display: block; margin-bottom: 0.1rem; }
  
  
  
  .bet-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.72);
  backdrop-filter:blur(6px);
  z-index:999999;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:20px;
}

.bet-popup{
  width:100%;
  max-width:420px;
  background:#07150b;
  border:1px solid rgba(255,196,0,.2);
  border-radius:22px;
  padding:28px;
  color:#fff;
  box-shadow:
  0 20px 60px rgba(0,0,0,.5),
  0 0 40px rgba(255,196,0,.08);
  animation:popupFade .35s ease;
}

@keyframes popupFade{
  from{
    opacity:0;
    transform:translateY(20px) scale(.96);
  }
  to{
    opacity:1;
    transform:none;
  }
}

.bet-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:25px;
}

.bet-series{
  font-size:.82rem;
  letter-spacing:1px;
  color:#ffc400;
  text-transform:uppercase;
  font-weight:700;
}

.bet-close{
  width:34px;
  height:34px;
  border-radius:50%;
  background:#122117;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  font-size:20px;
}

.bet-teams{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}

.bet-team{
  flex:1;
  text-align:center;
}

.bet-team-logo{
  width:72px;
  height:72px;
  object-fit:contain;
  background:#fff;
  border-radius:50%;
  padding:8px;
}

.bet-team-name{
  margin-top:12px;
  font-size:.92rem;
  font-weight:700;
}

.bet-vs{
  font-size:1rem;
  font-weight:800;
  color:#ffc400;
}

.bet-meta{
  margin-top:22px;
  padding-top:18px;
  border-top:1px solid rgba(255,255,255,.08);
  display:flex;
  flex-direction:column;
  gap:10px;
  color:#9eb39f;
  font-size:.86rem;
}

.bet-loader-wrap{
  margin-top:28px;
  text-align:center;
}

.bet-count{
  font-size:52px;
  font-weight:800;
  color:#ffc400;
  margin-bottom:18px;
}

.bet-loader{
  width:44px;
  height:44px;
  margin:auto;
  border-radius:50%;
  border:4px solid rgba(255,255,255,.1);
  border-top-color:#ffc400;
  animation:spin .8s linear infinite;
}

.bet-note{
  margin-top:18px;
  text-align:center;
  color:#93a48e;
  font-size:.85rem;
}

@keyframes spin{
  to{
    transform:rotate(360deg);
  }
}