                                                                                                /* Google Fonts */
  /* ===== DESIGN TOKENS — extracted from logo =====
     Logo: deep crimson red #cc0011 / #e8001d, near-black bg #0a0a0a,
           white stroke outlines, stencil block lettering
  ================================================= */
  :root {
    --crimson:       #cc0011;
    --crimson-vivid: #e8001d;
    --crimson-glow:  #ff2035;
    --crimson-deep:  #8b000b;

    --bg-void:    #070707;
    --bg-dark:    #0a0a0a;
    --bg-surface: #101010;
    --bg-card:    #131313;
    --bg-raised:  #161616;

    --text-bright: #ffffff;
    --text-main:   #e0e0e0;
    --text-soft:   #999999;
    --text-faint:  #555555;

    --gold:      #d4a017;
    --gold-soft: #f0c040;
    --green:     #16a34a;
    --green-soft:#22c55e;

    --border-dim:    #1e1e1e;
    --border-mid:    #282828;
    --border-accent: rgba(204,0,17,0.45);

    /* Font stack matched to logo character */
    --font-display: 'Oswald', sans-serif;    /* stencil = logo match */
    --font-heading: 'Oswald', sans-serif;        /* condensed bold = logo weight */
    --font-body:    'Oswald', sans-serif;       /* clean body */
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }

  body {
    background: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
  }

  h1,h2,h3,h4,h5,h6 { font-family: var(--font-heading); }

  ::-webkit-scrollbar { width: 4px; }
  ::-webkit-scrollbar-track { background: var(--bg-void); }
  ::-webkit-scrollbar-thumb { background: var(--crimson); border-radius: 2px; }

  /* ==================== NAVBAR ==================== */
  .navbar {
    background: rgba(7,7,7,0.97);
    border-bottom: 1px solid var(--border-dim);
    padding: 0;
    position: sticky; top: 0; z-index: 1050;
    backdrop-filter: blur(10px);
  }
  .navbar-inner {
    display: flex; align-items: center;
    justify-content: space-between;
    padding: 9px 0; gap: 12px;
  }
  .navbar-logo img {
    height: 42px; width: auto; display: block;
    filter: drop-shadow(0 0 8px rgba(204,0,17,0.5));
    transition: filter 0.3s;
  }
  .navbar-logo img:hover { filter: drop-shadow(0 0 16px rgba(232,0,29,0.9)); }

  /* ── Dropdown base ── */
  .dropdown-menu {
    background: #0f0f0f;
    border: 1px solid var(--border-dim);
    border-radius: 4px;
    padding: 6px 0;
    min-width: 180px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.7);
    margin-top: 2px !important;
  }

  .dropdown-item {
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: #aaa;
    padding: 9px 18px;
    transition: all 0.2s;
    background: transparent;
  }
  .dropdown-item:hover,
  .dropdown-item:focus {
    background: rgba(204,0,17,0.12);
    color: var(--crimson-vivid);
  }

  /* ── Submenu ── */
  .dropdown-submenu { position: relative; }

  .dropdown-submenu > .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: 0 !important;
    margin-left: 2px;
    display: none;
  }

  /* Show submenu on hover (desktop) */
  @media (min-width: 992px) {
    .dropdown-submenu:hover > .dropdown-menu {
      display: block;
    }
  }

  /* Submenu arrow indicator */
  .dropdown-submenu > .dropdown-item::after {
    content: '›';
    float: right;
    font-size: 1rem;
    line-height: 1;
    color: var(--text-faint);
  }

  /* Nav dropdown toggle arrow override */
  .nav-link.dropdown-toggle::after {
    border: none;
    content: '▾';
    font-size: 0.7rem;
    vertical-align: middle;
    margin-left: 4px;
    
  }

  /* Mobile: submenu toggle */
  @media (max-width: 991px) {
    .dropdown-submenu > .dropdown-menu {
      position: static;
      left: 0;
      margin-left: 12px;
      margin-top: 0 !important;
      box-shadow: none;
      border-left: 2px solid rgba(204,0,17,0.3);
      border-top: none;
      border-right: none;
      border-bottom: none;
      border-radius: 0;
    }

    .dropdown-menu {
      border: none;
      background: rgba(204,0,17,0.05);
      box-shadow: none;
      padding: 0 0 4px 8px;
      margin-top: 0 !important;
    }

    .dropdown-item {
      padding: 8px 14px;
    }
  }
  .navbar-toggler {
    background: none; border: 1px solid var(--border-mid);
    border-radius: 3px; padding: 6px 10px; cursor: pointer;
  }
  .navbar-toggler i { color: var(--crimson-vivid); font-size: 1rem; }

  .nav-link {
    font-family: var(--font-heading);
    color: #aaa !important;
    font-size: 0.86rem; font-weight: 500;
    letter-spacing: 0.8px; padding: 8px 11px !important;
    text-transform: uppercase; transition: color 0.2s;
    position: relative;
  }
  .nav-link::after {
    content: ''; position: absolute;
    bottom: 4px; left: 11px; right: 11px;
    height: 2px; background: var(--crimson-vivid);
    transform: scaleX(0); transition: transform 0.2s; border-radius: 1px;
  }
  .nav-link:hover { color: #fff !important; }
  .nav-link:hover::after { transform: scaleX(1); }

  .btn-login {
    font-family: var(--font-heading);
    background: transparent; border: 1.5px solid var(--crimson);
    color: var(--crimson-vivid); font-size: 0.84rem; font-weight: 600;
    letter-spacing: 1.5px; padding: 7px 17px; border-radius: 3px;
    text-transform: uppercase; transition: all 0.2s; cursor: pointer;
    white-space: nowrap;
  }
  .btn-login:hover { background: var(--crimson); color: #fff; box-shadow: 0 0 14px rgba(204,0,17,0.4); }

  .btn-register {
    font-family: var(--font-heading);
    background: var(--crimson); border: 1.5px solid var(--crimson);
    color: #fff; font-size: 0.84rem; font-weight: 600;
    letter-spacing: 1.5px; padding: 7px 17px; border-radius: 3px;
    text-transform: uppercase; transition: all 0.2s; cursor: pointer;
    white-space: nowrap;
  }
  .btn-register:hover { background: var(--crimson-vivid); box-shadow: 0 4px 18px rgba(204,0,17,0.45); }

  /* ==================== HERO ==================== */
  .hero {
    position: relative; overflow: hidden;
    padding: 100px 0 80px; background: var(--bg-void);
  }
  .hero::before {
    content: ''; position: absolute; inset: 0;
    background:
      radial-gradient(ellipse 65% 75% at 25% 50%, rgba(204,0,17,0.11) 0%, transparent 70%),
      linear-gradient(180deg, #0a0000 0%, var(--bg-void) 100%);
  }
  .hero::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 108%;
    background-image: url("/media/icct20.png"); /* your image */
    background-repeat: no-repeat;
    background-position: 525px -120px;
    background-size: contain;
    pointer-events: none;
  }
  .hero-content { position: relative; z-index: 2; }

  @keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.25} }

  .hero-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(204,0,17,0.1); border: 1px solid rgba(204,0,17,0.28);
    color: var(--crimson-glow); font-family: var(--font-heading);
    font-size: 0.7rem; font-weight: 600; letter-spacing: 3.5px;
    padding: 5px 14px; border-radius: 2px; margin-bottom: 22px; text-transform: uppercase;
  }
  .hero-eyebrow .dot {
    width: 6px; height: 6px; background: var(--crimson-vivid);
    border-radius: 50%; animation: blink 1.4s ease-in-out infinite;
  }

  /* Black Ops One for hero title — mirrors logo stencil letterforms */
  .hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    line-height: 1.1; color: var(--text-bright); margin-bottom: 18px;
    text-shadow: 2px 2px 0 rgba(0,0,0,0.7), -1px -1px 0 rgba(255,255,255,0.04);
  }
  .hero-title .red-word {
    color: var(--crimson-vivid);
    text-shadow: 0 0 24px rgba(204,0,17,0.6), 2px 2px 0 rgba(0,0,0,0.9), -1px 0 0 rgba(255,60,60,0.15);
  }

  .hero-sub {
    font-family: var(--font-body);
    color: var(--text-soft); font-size: 1rem; line-height: 1.75;
    max-width: 520px; margin-bottom: 34px; font-weight: 300;
  }

  .hero-cta-group { display: flex; flex-wrap: wrap; gap: 13px; }

  .btn-hero-primary {
    font-family: var(--font-heading);
    background: var(--crimson); border: none; color: #fff;
    padding: 13px 30px; border-radius: 3px; font-size: 0.95rem;
    font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
    cursor: pointer; transition: all 0.3s;
    box-shadow: 0 4px 22px rgba(204,0,17,0.4);
    position: relative; overflow: hidden;
  }
  .btn-hero-primary::after {
    content: ''; position: absolute; top: 0; left: -100%;
    width: 60%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
    transition: left 0.5s;
  }
  .btn-hero-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(204,0,17,0.55); }
  .btn-hero-primary:hover::after { left: 150%; }

  .btn-hero-ghost {
    font-family: var(--font-heading);
    background: transparent; border: 1.5px solid var(--border-mid);
    color: #aaa; padding: 13px 30px; border-radius: 3px;
    font-size: 0.95rem; font-weight: 600; letter-spacing: 1.5px;
    text-transform: uppercase; cursor: pointer; transition: all 0.3s;
  }
  .btn-hero-ghost:hover { border-color: var(--crimson); color: var(--crimson-vivid); }

  .hero-stats {
    display: flex; margin-top: 46px;
    border: 1px solid var(--border-dim); border-radius: 3px;
    overflow: hidden; max-width: 500px;
  }
  .hero-stat {
    flex: 1; padding: 15px 12px;
    border-right: 1px solid var(--border-dim);
    background: rgba(255,255,255,0.02); text-align: center;
  }
  .hero-stat:last-child { border-right: none; }
  .hero-stat .val {
    font-family: var(--font-display); font-size: 1.35rem;
    color: var(--crimson-vivid); display: block; line-height: 1.1;
    text-shadow: 0 0 12px rgba(204,0,17,0.45);
  }
  .hero-stat .lbl {
    font-family: var(--font-heading); font-size: 0.6rem;
    color: var(--text-faint); letter-spacing: 1.5px;
    text-transform: uppercase; display: block; margin-top: 4px;
  }

  /* ==================== SECTION COMMON ==================== */
  section { padding: 76px 0; }

  .sec-label {
    font-family: var(--font-heading); font-size: 0.68rem; font-weight: 600;
    letter-spacing: 4px; text-transform: uppercase;
    color: var(--crimson-vivid); margin-bottom: 10px;
  }
  .sec-title {
    font-family: var(--font-heading);
    font-size: clamp(1.9rem, 3.5vw, 2.7rem); font-weight: 700;
    letter-spacing: 0.5px; color: var(--text-bright);
    margin-bottom: 10px; text-transform: uppercase;
  }
  .sec-title .hl { color: var(--crimson-vivid); }
  .sec-sub {
    color: var(--text-soft); font-size: 0.9rem;
    max-width: 480px; margin: 0 auto 42px; line-height: 1.7; font-weight: 300;
  }
  .title-rule {
    width: 44px; height: 3px;
    background: linear-gradient(90deg, var(--crimson), var(--crimson-vivid));
    border-radius: 2px; margin: 12px auto 16px;
  }

  /* ==================== SPORTS ==================== */
  .sports-section { background: var(--bg-surface); }

  .sport-card {
    background: var(--bg-card); border: 1px solid var(--border-dim);
    border-radius: 5px; padding: 22px 18px; height: 100%;
    cursor: pointer; transition: all 0.3s; position: relative; overflow: hidden;
  }
  .sport-card::before {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0;
    height: 2px; background: linear-gradient(90deg, var(--crimson), var(--crimson-glow));
    transform: scaleX(0); transition: transform 0.3s;
  }
  .sport-card:hover { border-color: rgba(204,0,17,0.4); transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.5); }
  .sport-card:hover::before { transform: scaleX(1); }

.sports_1,
.sports_2,
.sports_3,
.sports_4,
.sports_5,
.sports_6{
    position: relative;
    overflow: hidden;
    background: transparent !important;
}

/* blurred background image */
.sports_1::before,
.sports_2::before,
.sports_3::before,
.sports_4::before,
.sports_5::before,
.sports_6::before{
    content:"";
    position:absolute;
    inset:0;
    filter: blur(1px);
    transform: scale(1.08);
    z-index:0;
}

/* overlay */
.sports_1::after,
.sports_2::after,
.sports_3::after,
.sports_4::after,
.sports_5::after,
.sports_6::after{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.55);
    z-index:1;
}

/* keep text above */
.sports_1 > *,
.sports_2 > *,
.sports_3 > *,
.sports_4 > *,
.sports_5 > *,
.sports_6 > *{
    position:relative;
    z-index:2;
}
.sports_1::before{
    background:url("/media/cricket.webp") center/cover no-repeat;
    height: 100%;
}

.sports_2::before{
    background:url("/media/fotball.webp") center/cover no-repeat;
    height: 100%;
}

.sports_3::before{
    background:url("/media/tennis.jpg") center/cover no-repeat;
    height: 100%;
}

.sports_4::before{
    background:url("/media/kabaddi.webp") center/cover no-repeat;
    height: 100%;
}

.sports_5::before{
    background:url("/media/esports.jpg") center/cover no-repeat;
    height: 100%;
}

.sports_6::before{
    background:url("/media/basketball.jpg") center/cover no-repeat;
    height: 100%;
}

.sport-card:hover::before{
    transform: scale(1.15);
}

/* keep card content above */
.sports_1 > *{
    position:relative;
    z-index:2;
}


  .sport-icon-wrap {
    width: 48px; height: 48px;
    background: rgb(220 215 215 / 48%); border: 1px solid rgb(255 225 225 / 18%);
    border-radius: 8px; display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; margin-bottom: 14px; transition: background 0.3s;
  }
  .sport-card:hover .sport-icon-wrap { background: rgba(204,0,17,0.18); }

  .sport-card h5 {
    font-family: var(--font-heading); font-size: 1rem; font-weight: 600;
    letter-spacing: 0.5px; text-transform: uppercase;
    margin-bottom: 6px; color: var(--text-bright);
  }
  .sport-card p { font-size: 0.78rem; color: #fff; margin: 0; line-height: 1.5; font-weight: 300; }

  .live-pip {
    display: inline-flex; align-items: center; gap: 5px;
    background: rgba(22,163,74,0.1); border: 1px solid rgba(22,163,74,0.25);
    color: var(--green-soft); font-size: 0.62rem; font-weight: 600;
    font-family: var(--font-heading); letter-spacing: 1px;
    padding: 2px 8px; border-radius: 2px; margin-top: 12px; text-transform: uppercase;
  }
  .live-pip::before {
    content: ''; width: 5px; height: 5px;
    background: var(--green-soft); border-radius: 50%;
    animation: blink 1.2s ease-in-out infinite;
  }

  /* ==================== GET YOUR ID ==================== */
  .get-id-section { background: var(--bg-dark); }

  .step-card {
    background: var(--bg-card); border: 1px solid var(--border-dim);
    border-radius: 5px; padding: 34px 24px 28px; text-align: center;
    position: relative; transition: border-color 0.3s;
  }
  .step-card:hover { border-color: rgba(204,0,17,0.35); }

  .step-num {
    position: absolute; top: -15px; left: 50%; transform: translateX(-50%);
    background: var(--crimson); color: #fff; width: 30px; height: 30px;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display); font-size: 0.82rem;
    box-shadow: 0 0 14px rgba(204,0,17,0.5);
  }
  .step-icon-wrap {
    width: 66px; height: 66px;
    background: rgba(204,0,17,0.08); border: 1px solid rgba(204,0,17,0.18);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    margin: 0 auto 18px; font-size: 1.6rem; color: var(--crimson-vivid);
  }
  .step-card h5 {
    font-family: var(--font-heading); font-size: 1.05rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.5px;
    margin-bottom: 10px; color: var(--text-bright);
  }
  .step-card p { font-size: 0.8rem; color: var(--text-soft); line-height: 1.6; font-weight: 300; }

  .cta-banner {
    background: linear-gradient(135deg, #130005, #0d0d0d);
    border: 1px solid rgba(204,0,17,0.2); border-radius: 7px;
    padding: 40px 30px; text-align: center; margin-top: 52px;
  }
  .cta-banner h3 {
    font-family: var(--font-heading); font-size: 1.8rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px;
  }
  .cta-banner p { color: var(--text-soft); font-size: 0.9rem; margin-bottom: 26px; font-weight: 300; }

  .wa-group { max-width: 420px; margin: 0 auto; display: flex; gap: 10px; }
  .wa-group input {
    flex: 1; background: var(--bg-raised); border: 1px solid var(--border-mid);
    color: var(--text-bright); padding: 12px 16px; border-radius: 3px;
    font-family: var(--font-body); font-size: 0.88rem; outline: none; transition: border-color 0.2s;
  }
  .wa-group input:focus { border-color: var(--crimson); }
  .wa-group input::placeholder { color: var(--text-faint); }

  /* ==================== WHY CHOOSE ==================== */
  .why-section { background: var(--bg-surface); }

  .feature-card {
    background: var(--bg-card); border: 1px solid var(--border-dim);
    border-radius: 5px; padding: 28px 22px; text-align: center;
    height: 100%; transition: all 0.3s;
  }
  .feature-card:hover { border-color: rgba(204,0,17,0.35); transform: translateY(-3px); }

  .feature-icon-wrap {
    width: 58px; height: 58px; background: rgba(204,0,17,0.1);
    border: 1px solid rgba(204,0,17,0.2); border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 18px; font-size: 1.4rem; color: var(--crimson-vivid);
    transition: all 0.3s;
  }
  .feature-card:hover .feature-icon-wrap { background: rgba(204,0,17,0.2); box-shadow: 0 0 18px rgba(204,0,17,0.3); }

  .feature-card h5 {
    font-family: var(--font-heading); font-size: 1rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 10px; color: var(--text-bright);
  }
  .feature-card p { font-size: 0.8rem; color: var(--text-soft); line-height: 1.6; font-weight: 300; }

  .trust-strip {
    background: var(--crimson); border-radius: 4px; padding: 15px 24px;
    text-align: center; margin-top: 32px; font-family: var(--font-heading);
    font-size: 0.88rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
  }

  /* ==================== STATS ==================== */
  .stats-section {
    background: var(--bg-dark);
    border-top: 1px solid var(--border-dim);
    border-bottom: 1px solid var(--border-dim);
  }
  .big-stat-card {
    background: var(--bg-card); border: 1px solid var(--border-dim);
    border-radius: 5px; padding: 34px 20px; text-align: center;
    position: relative; overflow: hidden;
  }
  .big-stat-card::after {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, var(--crimson-deep), var(--crimson-vivid), var(--crimson-glow));
  }
  .big-stat-card .num {
    font-family: var(--font-display); font-size: 2.8rem;
    color: var(--text-bright); display: block; line-height: 1; margin-bottom: 8px;
    text-shadow: 0 0 20px rgba(204,0,17,0.3);
  }
  .big-stat-card .num span { color: var(--crimson-vivid); }
  .big-stat-card .lbl {
    font-family: var(--font-heading); font-size: 0.7rem; font-weight: 500;
    color: var(--text-faint); letter-spacing: 2px; text-transform: uppercase;
  }

  /* ==================== RECENT WINS ==================== */
  .wins-section { background: var(--bg-surface); }

  .win-card {
    background: var(--bg-card); border: 1px solid var(--border-dim);
    border-radius: 5px; padding: 26px 22px; transition: border-color 0.2s;
  }
  .win-card:hover { border-color: rgba(204,0,17,0.3); }

  .win-label-badge {
    display: inline-block;
    background: rgba(22,163,74,0.1); border: 1px solid rgba(22,163,74,0.25);
    color: var(--green-soft); font-family: var(--font-heading);
    font-size: 0.65rem; font-weight: 600; letter-spacing: 2px;
    padding: 3px 10px; border-radius: 2px; text-transform: uppercase; margin-bottom: 14px;
  }
  .win-amount {
    font-family: var(--font-display); font-size: 2.8rem;
    color: var(--crimson-vivid); line-height: 1; margin-bottom: 6px;
    text-shadow: 0 0 20px rgba(204,0,17,0.4);
  }
  .win-desc { font-size: 0.8rem; color: var(--text-soft); font-weight: 300; }

  .win-user-row {
    display: flex; align-items: center; gap: 10px;
    margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--border-dim);
  }
  .avatar {
    width: 38px; height: 38px; border-radius: 50%;
    background: linear-gradient(135deg, var(--crimson-deep), var(--crimson-vivid));
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display); font-size: 1rem; color: #fff; flex-shrink: 0;
  }
  .win-name { font-family: var(--font-heading); font-size: 0.9rem; font-weight: 600; color: var(--text-bright); }
  .win-meta { font-size: 0.7rem; color: var(--text-faint); }
  .verified-tag { font-family: var(--font-heading); font-size: 0.62rem; font-weight: 600; color: var(--green-soft); }

  /* ---- Payment Proof Carousel ---- */
  .proof-wrap {
    background: var(--bg-card); border: 1px solid var(--border-dim);
    border-radius: 5px; overflow: hidden;
  }
  .proof-header {
    background: rgba(204,0,17,0.06); border-bottom: 1px solid var(--border-dim);
    padding: 13px 18px; display: flex; align-items: center; justify-content: space-between;
  }
  .proof-title {
    font-family: var(--font-heading); font-size: 0.74rem; font-weight: 600;
    letter-spacing: 2px; text-transform: uppercase; color: var(--crimson-vivid);
    display: flex; align-items: center; gap: 8px;
  }
  .proof-subtitle { font-size: 0.68rem; color: var(--text-faint); }

  /* Real image slides: replace proof-slide with <img> */
  .proof-carousel .carousel-item img {
    width: 100%; height: 300px; object-fit: cover; display: block;
  }
  .proof-slide {
    width: 100%; height: 300px;
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; padding: 20px;
  }
  .proof-receipt {
    background: var(--bg-raised); border: 1px solid var(--border-mid);
    border-radius: 8px; padding: 18px 28px; text-align: center; min-width: 220px;
    position: relative;
  }
  .proof-receipt::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    border-radius: 8px 8px 0 0; background: var(--crimson);
  }
  .proof-receipt .bank-icon { font-size: 1.8rem; margin-bottom: 10px; display: block; }
  .proof-receipt .p-amount {
    font-family: var(--font-display); font-size: 1.6rem; margin-bottom: 6px; display: block;
  }
  .proof-receipt .p-user {
    font-family: var(--font-heading); font-size: 0.8rem; font-weight: 500;
    color: var(--text-soft); margin-bottom: 10px; display: block;
  }
  .proof-receipt .p-txn {
    font-size: 0.7rem; color: var(--text-faint); font-family: monospace;
    background: var(--bg-void); padding: 4px 10px; border-radius: 3px; display: block; margin-bottom: 10px;
  }
  .proof-receipt .p-ok {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(22,163,74,0.1); border: 1px solid rgba(22,163,74,0.3);
    color: var(--green-soft); font-family: var(--font-heading); font-size: 0.7rem;
    font-weight: 600; letter-spacing: 1px; padding: 3px 10px; border-radius: 2px; text-transform: uppercase;
  }

  .carousel-control-prev, .carousel-control-next {
    width: 32px; height: 32px; top: 50%; transform: translateY(-50%);
    background: var(--crimson); border-radius: 50%; opacity: 0.9;
  }
  .carousel-control-prev { left: 12px; }
  .carousel-control-next { right: 12px; }
  .carousel-control-prev-icon, .carousel-control-next-icon { width: 12px; height: 12px; }

  .carousel-indicators [data-bs-target] {
    width: 7px; height: 7px; border-radius: 50%;
    background: #2e2e2e; border: none; opacity: 1;
  }
  .carousel-indicators .active { background: var(--crimson-vivid); }

  .proof-footer-bar {
    padding: 11px 18px; background: rgba(0,0,0,0.3);
    border-top: 1px solid var(--border-dim); text-align: center;
    font-size: 0.7rem; color: var(--text-faint);
  }
  .proof-submit-note {
    margin-top: 12px; background: rgba(204,0,17,0.05);
    border: 1px dashed rgba(204,0,17,0.2); border-radius: 4px;
    padding: 12px 16px; text-align: center; font-size: 0.76rem; color: var(--text-soft);
  }
  .proof-submit-note span { color: var(--crimson-vivid); font-weight: 600; }

  /* ==================== LIVE ODDS ==================== */
  .odds-section { background: var(--bg-dark); }

  .match-row {
    background: var(--bg-card); border: 1px solid var(--border-dim);
    border-radius: 5px; padding: 16px 20px; margin-bottom: 10px; transition: border-color 0.2s;
  }
  .match-row:hover { border-color: var(--border-mid); }

  .badge-live {
    display: inline-flex; align-items: center; gap: 5px;
    background: rgba(204,0,17,0.13); border: 1px solid rgba(204,0,17,0.28);
    color: var(--crimson-vivid); font-family: var(--font-heading);
    font-size: 0.6rem; font-weight: 600; letter-spacing: 1.5px;
    padding: 2px 8px; border-radius: 2px; text-transform: uppercase;
  }
  .badge-live::before {
    content: ''; width: 5px; height: 5px; background: var(--crimson-vivid);
    border-radius: 50%; animation: blink 1.2s ease-in-out infinite;
  }
  .badge-upcoming {
    display: inline-block;
    background: rgba(22,163,74,0.1); border: 1px solid rgba(22,163,74,0.25);
    color: var(--green-soft); font-family: var(--font-heading);
    font-size: 0.6rem; font-weight: 600; letter-spacing: 1.5px;
    padding: 2px 8px; border-radius: 2px; text-transform: uppercase;
  }
  .match-title {
    font-family: var(--font-heading); font-size: 1rem; font-weight: 600;
    color: var(--text-bright); letter-spacing: 0.3px;
  }
  .odd-btn {
    background: var(--bg-raised); border: 1px solid var(--border-mid);
    color: var(--text-main); padding: 7px 14px; border-radius: 3px;
    font-family: var(--font-heading); font-size: 0.88rem; font-weight: 600;
    cursor: pointer; transition: all 0.2s; text-align: center;
    min-width: 64px; letter-spacing: 0.3px;
  }
  .odd-btn:hover { background: var(--crimson); border-color: var(--crimson); color: #fff; }
  .odd-btn .odd-lbl { display: block; font-size: 0.58rem; color: var(--text-faint); font-weight: 400; letter-spacing: 0.5px; }

  /* ==================== TESTIMONIALS ==================== */
  .testimonials-section { background: var(--bg-surface); }

  .review-card {
    background: var(--bg-card); border: 1px solid var(--border-dim);
    border-radius: 5px; padding: 24px 20px; height: 100%; transition: border-color 0.3s;
  }
  .review-card:hover { border-color: var(--border-mid); }

  .stars { color: var(--gold-soft); font-size: 0.85rem; letter-spacing: 2px; margin-bottom: 12px; }
  .review-text { font-size: 0.82rem; color: #aaa; line-height: 1.7; margin-bottom: 16px; font-weight: 300; }

  .reviewer {
    display: flex; align-items: center; gap: 10px;
    padding-top: 14px; border-top: 1px solid var(--border-dim);
  }
  .reviewer-av {
    width: 36px; height: 36px; border-radius: 50%;
    background: linear-gradient(135deg, var(--crimson-deep), var(--crimson));
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display); font-size: 0.9rem; color: #fff; flex-shrink: 0;
  }
  .reviewer-name { font-family: var(--font-heading); font-size: 0.88rem; font-weight: 600; color: var(--text-bright); }
  .reviewer-loc { font-size: 0.7rem; color: var(--text-faint); }

  .rating-box {
    background: var(--bg-card); border: 1px solid var(--border-dim);
    border-radius: 5px; padding: 28px; text-align: center; margin-top: 28px;
  }
  .rating-big {
    font-family: var(--font-display); font-size: 3.5rem;
    color: var(--gold-soft); text-shadow: 0 0 20px rgba(212,160,23,0.4); line-height: 1;
  }

  /* ==================== FINAL CTA ==================== */
  .final-cta {
    background: var(--bg-dark); position: relative; overflow: hidden;
    text-align: center; padding: 96px 0;
  }
  .final-cta::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(204,0,17,0.1) 0%, transparent 70%);
  }
  .final-cta h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: var(--text-bright); margin-bottom: 12px;
    text-shadow: 2px 2px 0 rgba(0,0,0,0.7);
  }
  .final-cta h2 .hl {
    color: var(--crimson-vivid);
    text-shadow: 0 0 22px rgba(204,0,17,0.55), 2px 2px 0 rgba(0,0,0,0.9);
  }
  .final-cta .sub-p { color: var(--text-soft); margin-bottom: 28px; font-weight: 300; }

  .bonus-tag {
    display: inline-block;
    background: rgba(212,160,23,0.1); border: 1px solid rgba(212,160,23,0.3);
    color: var(--gold-soft); font-family: var(--font-heading);
    font-size: 1.2rem; font-weight: 700; letter-spacing: 1px;
    padding: 10px 24px; border-radius: 3px; margin-bottom: 28px;
  }

  /* ==================== GLOBAL BUTTONS ==================== */
  .btn-red {
    font-family: var(--font-heading);
    background: var(--crimson); border: none; color: #fff;
    padding: 12px 28px; border-radius: 3px; font-size: 0.9rem;
    font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
    cursor: pointer; transition: all 0.3s; box-shadow: 0 4px 18px rgba(204,0,17,0.35);
  }
  .btn-red:hover { background: var(--crimson-vivid); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(204,0,17,0.5); color: #fff; }

  /* ==================== FOOTER ==================== */
  footer {
    background: var(--bg-void);
    border-top: 1px solid var(--border-dim);
    padding: 56px 0 24px;
  }
  .footer-logo-img {
    height: 40px; width: auto; margin-bottom: 14px;
    filter: drop-shadow(0 0 6px rgba(204,0,17,0.4)); display: block;
  }
  .footer-desc { font-size: 0.8rem; color: var(--text-faint); line-height: 1.75; font-weight: 300; }

  .footer-head {
    font-family: var(--font-heading); font-size: 0.78rem; font-weight: 600;
    letter-spacing: 2px; text-transform: uppercase; color: var(--text-bright);
    margin-bottom: 16px; padding-bottom: 8px; border-bottom: 1px solid var(--border-dim);
  }
  .footer-links { list-style: none; padding: 0; margin: 0; }
  .footer-links li { margin-bottom: 9px; }
  .footer-links a {
    color: var(--text-faint); text-decoration: none;
    font-size: 0.82rem; font-weight: 300; transition: color 0.2s;
  }
  .footer-links a:hover { color: var(--crimson-vivid); }

  .socials { display: flex; gap: 10px; margin-top: 18px; }
  .social-btn {
    width: 36px; height: 36px; background: var(--bg-raised);
    border: 1px solid var(--border-mid); border-radius: 4px;
    display: flex; align-items: center; justify-content: center;
    color: var(--text-faint); font-size: 0.88rem; transition: all 0.2s; text-decoration: none;
  }
  .social-btn:hover { background: var(--crimson); border-color: var(--crimson); color: #fff; }

  .footer-bottom {
    border-top: 1px solid var(--border-dim); margin-top: 44px;
    padding-top: 20px; text-align: center;
  }
  .footer-bottom p { font-size: 0.72rem; color: var(--text-faint); }

  /* ==================== RESPONSIVE ==================== */
  @media (max-width: 991px) {
    .navbar-collapse { padding: 14px 0 8px; }
    .nav-link::after { display: none; }
    .nav-btns { margin-top: 12px; }
  }
  @media (max-width: 768px) {
    section { padding: 54px 0; }
    .hero { padding: 68px 0 54px; }
    .hero-cta-group { flex-direction: column; }
    .hero-cta-group button { width: 100%; }
    .wa-group { flex-direction: column; }
  }
  @media (max-width: 480px) {
    .hero-title { font-size: 2rem; }
    .hero-stat .val { font-size: 1.1rem; }
    .hero-stat .lbl { font-size: 0.55rem; letter-spacing: 0.5px; }
  }


#card-body {
  padding-right: 15px;
  height: 350px;
  overflow-x: scroll;
  padding: 20px;
}
#card-body{
    font-size: 30px;
}
#card-body::-webkit-scrollbar {
  width: 6px;
}
#card-body::-webkit-scrollbar-thumb {
  background-color: #28a745;
  border-radius: 3px;
}
#card-body::-webkit-scrollbar-track {
  background: #f1f1f1;
}
#card-body,
#card-body p,
#card-body span,
#card-body div,
#card-body ul,
#card-body li {
  font-size: 13px;
  line-height: 1.5;
  color: #000;

}
.card-header{
    font-size: 17px !important;
    width: 75%;
    margin: 0 auto;
}
.card-header h1{
    padding: 3px 0px 3px 15px;
    background-color: #fff;
    color: #000;
}
#card {margin : 100px 0 0 0;}
#card h1 {font-size: 18px;}
#card-body h1 { font-size: 18px; }
#card-body h2 { font-size: 16px; }
#card-body h3 { font-size: 15px; }
#card-body h4,
#card-body h5 { font-size: 14px; }

/* Feature highlights below button - more compact */
.feature-highlights {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    margin: 15px auto 25px;
    flex-wrap: wrap;
}

.feature-highlights .feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #90c957;
    font-size: 0.9rem;
    white-space: nowrap;
}

.feature-highlights .feature-item::before {
    content: "🛡️";
    font-size: 1rem;
}

.feature-highlights .feature-item:nth-child(2)::before {
    content: "⚡";
}

.feature-highlights .feature-item:nth-child(3)::before {
    content: "🎁";
}


.feature-icon {
    font-size: 42px;
    margin-bottom: 15px;
    color: #22c55e;
    background: rgba(34,197,94,0.1);
    padding: 10px;
    border-radius: 50%;
    display: inline-block;
    transition: 0.3s;
}

.feature-card:hover .feature-icon {
    background: #fff;
    color: #16a34a;
}



.blog-hero {
    background: linear-gradient(135deg,#000,#111);
}

.blog-content {
    font-size: 18px;
    line-height: 1.8;
}

.blog-content h2, 
.blog-content h3 {
    margin-top: 30px;
    font-weight: 700;
}
.blog-content p{
    font-size: 16px;
    color: #000;
}
.blog-content ul li{
    font-size: 16px;
    color: #000;
}
.blog-content ol li{
    font-size: 16px;
    color: #000;
}
.blog-content table td{
    font-size: 16px;
    color: #000;
}
.content-top{
    padding-top: 150px !important;
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: #198754;
    color: #fff;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.left-blog-side{
    background: white;
    border-radius: 6px;
    padding: 30px;
}

/* Smooth scroll behavior */
.SEO_content {
    scroll-behavior: smooth;
}

/* Responsive design */
@media (max-width: 768px) {
    .SEO_content {
        max-height: 500px;
        padding: 30px 15px;
    }
    
    .SEO_content h2 {
        font-size: 1.0rem;
        padding: 10px 0;
    }
    
    .SEO_content h3 {
        font-size: 0.9rem;
        margin-top: 20px;
    }
    
    .SEO_content p {
        font-size: 0.6rem;
        text-align: left;
        line-height: 1.5;
    }
    
    .feature-highlights {
        gap: 15px;
        font-size: 0.85rem;
    }
    
    .cta-button {
        padding: 10px 25px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .SEO_content {
        max-height: 450px;
    }
    
    .feature-highlights {
        flex-direction: column;
        gap: 10px;
    }
}

/* Optional: Read more indicator */
.scroll-indicator {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    color: #90c957;
    font-size: 0.85rem;
    animation: bounce 2s infinite;
    z-index: 11;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}                                