:root {
      --primary: #0ea5e9;
      --primary-dark: #0284c7;
      --primary-deeper: #0369a1;
      --secondary: #22c55e;
      --secondary-dark: #16a34a;
      --bg-light: #e0f2fe;
      --bg-mid: #bae6fd;
      --text-dark: #0c2340;
      --text-mid: #334e68;
      --text-light: #64748b;
      --gold: #f59e0b;
      --gold-light: #fcd34d;
      --card-radius: 16px;
      --shadow-sm: 0 2px 12px rgba(14,165,233,0.10);
      --shadow-md: 0 6px 28px rgba(14,165,233,0.15);
      --shadow-lg: 0 12px 48px rgba(14,165,233,0.20);
    }

*, *::before, *::after { box-sizing: border-box; }

body {
    overflow-x: clip;
    width: 100%;
      font-family: 'Hind Siliguri', 'Inter', sans-serif;
      background: var(--bg-light);
      color: var(--text-dark);
      margin: 0;
      overflow-x: hidden;
    }

/* ── TICKER ── */
    .live-ticker {
      background: linear-gradient(90deg, #0c4a6e, #0369a1, #0c4a6e);
      color: #fff;
      padding: 7px 0;
      overflow: hidden;
      white-space: nowrap;
      font-size: 0.82rem;
      border-bottom: 2px solid var(--primary);
    }

.ticker-track {
      display: inline-block;
      animation: tickerScroll 38s linear infinite;
    }

@keyframes tickerScroll {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

.ticker-item { display: inline-block; margin: 0 2rem; }

.ticker-item span { color: var(--gold-light); font-weight: 700; }

.ticker-sep { color: var(--primary); opacity: 0.5; }

/* ── BREADCRUMB ── */
    .breadcrumb-bar {
      background: #fff;
      border-bottom: 1.5px solid var(--bg-mid);
      padding: 0.6rem 0;
    }

.breadcrumb { margin: 0; font-size: 0.83rem; background: none; padding: 0; }

.breadcrumb-item a { color: var(--primary-dark); text-decoration: none; }

.breadcrumb-item.active { color: var(--text-light); }

.breadcrumb-item + .breadcrumb-item::before { color: var(--primary); }

/* ── HERO ── */
    .page-hero {
      background: linear-gradient(135deg, #082f49 0%, #0c4a6e 45%, #0369a1 100%);
      padding: 72px 0 80px;
      position: relative;
      overflow: hidden;
      color: #fff;
    }

.hero-glow-1 {
      position: absolute; width: 500px; height: 500px;
      background: radial-gradient(circle, rgba(14,165,233,0.2) 0%, transparent 70%);
      top: -100px; left: -100px; pointer-events: none;
    }

.hero-glow-2 {
      position: absolute; width: 400px; height: 400px;
      background: radial-gradient(circle, rgba(34,197,94,0.15) 0%, transparent 70%);
      bottom: -80px; right: -80px; pointer-events: none;
    }

.hero-badge {
      display: inline-flex; align-items: center; gap: 6px;
      background: rgba(14,165,233,0.2);
      border: 1px solid rgba(14,165,233,0.5);
      color: #7dd3fc;
      border-radius: 20px;
      padding: 5px 16px;
      font-size: 0.82rem;
      font-weight: 700;
      margin-bottom: 1rem;
    }

.page-hero h1 {
      font-size: clamp(1.6rem, 3.5vw, 2.6rem);
      font-weight: 900;
      line-height: 1.25;
      color: #fff;
    }

.page-hero .lead {
      font-size: 1rem;
      color: rgba(255,255,255,0.82);
      line-height: 1.75;
      max-width: 620px;
    }

.btn-primary-cta {
      display: inline-flex; align-items: center;
      background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
      color: #fff;
      padding: 0.7rem 1.8rem;
      border-radius: 10px;
      font-weight: 700;
      font-size: 0.95rem;
      text-decoration: none;
      box-shadow: 0 4px 18px rgba(34,197,94,0.35);
      transition: transform 0.2s, box-shadow 0.2s;
      border: none;
    }

.btn-primary-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(34,197,94,0.45); color: #fff; }

.btn-outline-cta {
      display: inline-flex; align-items: center;
      background: transparent;
      color: #fff;
      padding: 0.7rem 1.8rem;
      border-radius: 10px;
      font-weight: 600;
      font-size: 0.95rem;
      text-decoration: none;
      border: 2px solid rgba(255,255,255,0.45);
      transition: background 0.2s, border-color 0.2s;
    }

.btn-outline-cta:hover { background: rgba(255,255,255,0.1); border-color: #fff; color: #fff; }

/* HERO VISUAL CARDS */
    .hero-live-visual {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      max-width: 420px;
      margin: 0 auto;
    }

.hlv-card {
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.15);
      border-radius: 14px;
      padding: 1.2rem 1rem;
      text-align: center;
      backdrop-filter: blur(8px);
      transition: transform 0.2s;
    }

.hlv-card:hover { transform: translateY(-4px); }

.hlv-card .hlv-icon { font-size: 2rem; margin-bottom: 0.5rem; }

.hlv-card .hlv-name { font-size: 0.82rem; font-weight: 700; color: #e0f2fe; }

.hlv-card .hlv-live {
      display: inline-flex; align-items: center; gap: 4px;
      background: rgba(239,68,68,0.25);
      border: 1px solid rgba(239,68,68,0.5);
      color: #fca5a5;
      font-size: 0.68rem;
      font-weight: 700;
      padding: 2px 8px;
      border-radius: 20px;
      margin-top: 0.4rem;
    }

.hlv-live::before {
      content: '';
      width: 6px; height: 6px;
      background: #ef4444;
      border-radius: 50%;
      animation: pulse-dot 1.2s infinite;
    }

@keyframes pulse-dot {
      0%,100% { opacity: 1; }
      50% { opacity: 0.3; }
    }

/* ── OCEAN DIVIDER ── */
    .ocean-divider {
      height: 4px;
      background: linear-gradient(90deg, var(--primary-deeper), var(--primary), var(--secondary), var(--primary), var(--primary-deeper));
      opacity: 0.35;
    }

/* ── STATS BAR ── */
    .stats-bar {
      background: linear-gradient(90deg, #0c4a6e, #0284c7, #0c4a6e);
      padding: 18px 0;
    }

.s-stat { text-align: center; }

.s-val { display: block; font-size: 1.45rem; font-weight: 900; color: var(--gold-light); line-height: 1; }

.s-lbl { display: block; font-size: 0.76rem; color: rgba(255,255,255,0.7); margin-top: 3px; }

/* ── SECTION COMMONS ── */
    section { padding: 64px 0; }

.section-title {
      font-size: clamp(1.3rem, 2.5vw, 1.9rem);
      font-weight: 900;
      color: var(--text-dark);
      margin-bottom: 0.5rem;
    }

.section-subtitle {
      font-size: 0.95rem;
      color: var(--text-light);
      margin-bottom: 0;
    }

/* ── CONTENT IMAGE ── */
    .content-img {
      width: 100%;
      border-radius: var(--card-radius);
      box-shadow: var(--shadow-md);
      display: block;
      object-fit: cover;
    }

/* ── LIVE GAME CARDS ── */
    .game-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 20px; }

.game-card {
      background: #fff;
      border-radius: var(--card-radius);
      overflow: hidden;
      box-shadow: var(--shadow-sm);
      border: 1.5px solid rgba(14,165,233,0.12);
      transition: transform 0.22s, box-shadow 0.22s;
    }

.game-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.gc-header {
      padding: 1.8rem 1rem 1rem;
      text-align: center;
      position: relative;
    }

.gc-icon { font-size: 2.8rem; margin-bottom: 0.5rem; display: block; }

.gc-live-badge {
      position: absolute; top: 10px; right: 10px;
      background: #ef4444;
      color: #fff;
      font-size: 0.65rem;
      font-weight: 800;
      padding: 2px 8px;
      border-radius: 20px;
      display: flex; align-items: center; gap: 4px;
    }

.gc-live-badge::before {
      content: '';
      width: 5px; height: 5px;
      background: #fff;
      border-radius: 50%;
      animation: pulse-dot 1.2s infinite;
    }

.gc-body {
    overflow-x: clip;
    width: 100%; padding: 0.8rem 1.1rem 1.2rem; }

.gc-name { font-size: 1rem; font-weight: 800; color: var(--text-dark); margin-bottom: 0.3rem; }

.gc-desc { font-size: 0.82rem; color: var(--text-light); line-height: 1.6; margin-bottom: 0.8rem; }

.gc-meta { display: flex; gap: 6px; flex-wrap: wrap; }

.gc-tag {
      background: var(--bg-light);
      color: var(--primary-dark);
      border: 1px solid var(--bg-mid);
      border-radius: 20px;
      font-size: 0.7rem;
      font-weight: 600;
      padding: 2px 10px;
    }

/* game card color variants */
    .gch-baccarat { background: linear-gradient(135deg, #1e3a5f 0%, #1e40af 100%); }

.gch-roulette { background: linear-gradient(135deg, #7f1d1d 0%, #991b1b 100%); }

.gch-blackjack { background: linear-gradient(135deg, #14532d 0%, #166534 100%); }

.gch-dragon { background: linear-gradient(135deg, #7f1d1d 0%, #0c4a6e 100%); }

.gch-sicbo { background: linear-gradient(135deg, #713f12 0%, #92400e 100%); }

.gch-andar { background: linear-gradient(135deg, #4c1d95 0%, #5b21b6 100%); }

.gch-teen { background: linear-gradient(135deg, #064e3b 0%, #065f46 100%); }

.gch-poker { background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%); }

/* ── WHY LIVE FEATURES ── */
    .why-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 20px; }

.why-card {
      background: #fff;
      border-radius: var(--card-radius);
      padding: 1.6rem 1.4rem;
      box-shadow: var(--shadow-sm);
      border-top: 4px solid var(--primary);
      transition: transform 0.2s;
    }

.why-card:hover { transform: translateY(-4px); }

.why-card.wc-green { border-top-color: var(--secondary); }

.why-card.wc-gold { border-top-color: var(--gold); }

.why-card.wc-purple { border-top-color: #8b5cf6; }

.why-icon { font-size: 2rem; margin-bottom: 0.8rem; }

.why-card h5 { font-size: 1rem; font-weight: 800; color: var(--text-dark); margin-bottom: 0.5rem; }

.why-card p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.7; margin: 0; }

/* ── ARTICLE TEXT ── */
    .article-text h2 {
      font-size: clamp(1.2rem, 2vw, 1.6rem);
      font-weight: 900;
      color: var(--text-dark);
      margin-bottom: 1rem;
      line-height: 1.3;
    }

.article-text h3 {
      font-size: 1.1rem;
      font-weight: 800;
      color: var(--primary-dark);
      margin: 1.5rem 0 0.6rem;
    }

.article-text p {
      font-size: 0.95rem;
      color: var(--text-mid);
      line-height: 1.85;
      margin-bottom: 1rem;
    }

/* ── INFO BOX ── */
    .info-box {
      display: flex; align-items: flex-start; gap: 12px;
      background: rgba(14,165,233,0.07);
      border-left: 4px solid var(--primary);
      border-radius: 10px;
      padding: 1rem 1.2rem;
    }

.info-box i { font-size: 1.3rem; color: var(--primary); flex-shrink: 0; margin-top: 2px; }

.info-box p { margin: 0; font-size: 0.9rem; color: var(--text-mid); line-height: 1.7; }

.info-box.ib-green { background: rgba(34,197,94,0.07); border-color: var(--secondary); }

.info-box.ib-green i { color: var(--secondary); }

.info-box.ib-gold { background: rgba(245,158,11,0.07); border-color: var(--gold); }

.info-box.ib-gold i { color: var(--gold); }

/* ── STEP CARDS ── */
    .step-card {
      display: flex; align-items: flex-start; gap: 16px;
      background: #fff;
      border-radius: var(--card-radius);
      padding: 1.3rem 1.4rem;
      box-shadow: var(--shadow-sm);
      border: 1.5px solid rgba(14,165,233,0.1);
      transition: transform 0.2s;
    }

.step-card:hover { transform: translateY(-3px); }

.step-num {
      width: 42px; height: 42px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--primary), var(--primary-dark));
      color: #fff;
      font-weight: 900;
      font-size: 1.1rem;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }

.step-card h6 { font-weight: 800; color: var(--text-dark); margin-bottom: 0.3rem; font-size: 0.97rem; }

.step-card p { font-size: 0.86rem; color: var(--text-mid); margin: 0; line-height: 1.65; }

/* ── TABLE COMPARISON ── */
    .compare-table-wrap {
      background: #fff;
      border-radius: var(--card-radius);
      box-shadow: var(--shadow-sm);
      overflow: hidden;
      border: 1.5px solid rgba(14,165,233,0.12);
    }

.compare-table-wrap table thead th {
      background: linear-gradient(90deg, #0c4a6e, #0369a1);
      color: #fff;
      font-weight: 700;
      font-size: 0.88rem;
      border: none;
      padding: 0.85rem 1rem;
    }

.compare-table-wrap table tbody td {
      font-size: 0.88rem;
      color: var(--text-mid);
      padding: 0.75rem 1rem;
      vertical-align: middle;
      border-color: rgba(14,165,233,0.1);
    }

.compare-table-wrap table tbody tr:hover td { background: rgba(14,165,233,0.04); }

.badge-yes { background: rgba(34,197,94,0.15); color: #15803d; border-radius: 20px; padding: 3px 12px; font-size: 0.78rem; font-weight: 700; }

.badge-no { background: rgba(239,68,68,0.12); color: #b91c1c; border-radius: 20px; padding: 3px 12px; font-size: 0.78rem; font-weight: 700; }

/* ── BONUS BANNER ── */
    .bonus-banner {
      background: linear-gradient(135deg, #0c4a6e 0%, #0369a1 50%, #082f49 100%);
      border-radius: 18px;
      padding: 2.8rem 2rem;
      text-align: center;
      color: #fff;
      box-shadow: var(--shadow-lg);
      position: relative;
      overflow: hidden;
    }

.bonus-banner::before {
      content: '';
      position: absolute; inset: 0;
      background: radial-gradient(ellipse at 20% 50%, rgba(34,197,94,0.15) 0%, transparent 60%),
                  radial-gradient(ellipse at 80% 50%, rgba(14,165,233,0.15) 0%, transparent 60%);
      pointer-events: none;
    }

.bonus-tag {
      display: inline-block;
      background: rgba(245,158,11,0.2);
      border: 1px solid rgba(245,158,11,0.5);
      color: var(--gold-light);
      border-radius: 20px;
      padding: 4px 16px;
      font-size: 0.82rem;
      font-weight: 700;
      margin-bottom: 0.8rem;
    }

.bonus-banner h3 { font-size: clamp(1.2rem, 2.5vw, 1.7rem); font-weight: 900; margin-bottom: 0.8rem; }

.bonus-banner p { font-size: 0.95rem; opacity: 0.88; max-width: 560px; margin: 0 auto 1.6rem; }

/* ── FAQ ── */
    .faq-accordion .accordion-item {
      border: 1.5px solid rgba(14,165,233,0.15);
      border-radius: 10px !important;
      margin-bottom: 0.7rem;
      overflow: hidden;
    }

.faq-accordion .accordion-button {
      font-weight: 600; font-size: 0.95rem;
      color: var(--text-dark); background: #fff;
      border-radius: 10px !important; box-shadow: none;
    }

.faq-accordion .accordion-button:not(.collapsed) {
      background: linear-gradient(90deg, rgba(14,165,233,0.08), rgba(34,197,94,0.06));
      color: var(--primary-dark);
    }

.faq-accordion .accordion-body {
    overflow-x: clip;
    width: 100%;
      font-size: 0.9rem; color: var(--text-mid);
      background: rgba(224,242,254,0.4); line-height: 1.75;
    }

/* ── RESPONSIBLE NOTE ── */
    .resp-note {
      background: rgba(245,158,11,0.08);
      border: 1.5px solid rgba(245,158,11,0.3);
      border-radius: 12px;
      padding: 1.2rem 1.5rem;
      font-size: 0.88rem;
      color: var(--text-mid);
      line-height: 1.75;
    }

.resp-note a { color: var(--primary-dark); font-weight: 700; }

/* ── WAVE ── */
    .wave-deco {
      position: absolute; bottom: 0; left: 0; right: 0;
      height: 48px; overflow: hidden; line-height: 0;
    }

.wave-deco::after {
      content: '';
      display: block;
      position: absolute; bottom: 0; left: 0; right: 0;
      height: 48px;
      background: var(--bg-light);
      clip-path: ellipse(55% 100% at 50% 100%);
    }

@media (max-width: 768px) {
.hero-live-visual { grid-template
-columns: 1fr 1fr; max-width: 100%; }

section { padding: 44px 0; }
}
