:root {
      --primary: #0ea5e9;
      --primary-dark: #0284c7;
      --primary-deeper: #0369a1;
      --secondary: #22c55e;
      --secondary-dark: #16a34a;
      --bg-light: #e0f2fe;
      --bg-white: #1E293B;
      --text-dark: #0f172a;
      --text-mid: #1e3a5f;
      --text-muted: #64748b;
      --border-color: #7dd3fc;
      --card-radius: 16px;
      --shadow-sm: 0 2px 8px rgba(14,165,233,0.10);
      --shadow-md: 0 6px 24px rgba(14,165,233,0.15);
      --shadow-lg: 0 12px 40px rgba(14,165,233,0.20);
    }

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
    overflow-x: clip;
    width: 100%;
      font-family: 'Hind Siliguri', sans-serif;
      background: var(--bg-light);
      color: var(--text-dark);
      line-height: 1.8;
    }

/* ── BREADCRUMB ── */
    .breadcrumb-bar {
      background: linear-gradient(90deg, #bae6fd 0%, #d1fae5 100%);
      border-bottom: 2px solid #7dd3fc;
      padding: 10px 0;
    }

.breadcrumb { margin: 0; background: transparent; }

.breadcrumb-item a { color: var(--primary-dark); font-weight: 600; text-decoration: none; }

.breadcrumb-item a:hover { text-decoration: underline; }

.breadcrumb-item.active { color: var(--text-mid); font-weight: 700; }

.breadcrumb-item + .breadcrumb-item::before { color: var(--primary); }

/* ── OCEAN DIVIDER ── */
    .ocean-divider {
      height: 4px;
      background: linear-gradient(90deg, #0ea5e9, #22c55e, #0ea5e9);
      opacity: 0.35;
    }

/* ── HERO ── */
    .page-hero {
      background: linear-gradient(135deg, var(--primary-deeper) 0%, var(--primary-dark) 45%, #0891b2 100%);
      padding: 64px 0 56px;
      position: relative;
      overflow: hidden;
    }

.page-hero::before {
      content: '';
      position: absolute; inset: 0;
      background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='40' cy='40' r='28' fill='%23ffffff' fill-opacity='0.025'/%3E%3C/svg%3E");
      pointer-events: none;
    }

.hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255,255,255,0.14);
      color: #d1fae5;
      font-weight: 700;
      font-size: 0.84rem;
      padding: 6px 18px;
      border-radius: 30px;
      margin-bottom: 18px;
      border: 1px solid rgba(255,255,255,0.2);
    }

.page-hero h1 {
      color: #fff;
      font-size: clamp(1.9rem, 4vw, 2.8rem);
      font-weight: 800;
      line-height: 1.3;
      margin-bottom: 16px;
    }

.page-hero .lead {
      color: #bae6fd;
      font-size: 1.05rem;
      max-width: 600px;
      line-height: 1.9;
      margin-bottom: 28px;
    }

.hero-badges {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-bottom: 28px;
    }

.hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: rgba(255,255,255,0.10);
      border: 1px solid rgba(255,255,255,0.18);
      border-radius: 20px;
      padding: 5px 14px;
      font-size: 0.8rem;
      color: #bae6fd;
      font-weight: 600;
    }

.btn-hero-primary {
      display: inline-flex; align-items: center; gap: 8px;
      background: var(--secondary); color: #fff;
      font-weight: 700; font-size: 1rem;
      padding: 13px 32px; border-radius: 12px; text-decoration: none;
      box-shadow: 0 4px 18px rgba(34,197,94,0.38);
      transition: opacity 0.2s, transform 0.15s;
    }

.btn-hero-primary:hover { opacity: 0.9; transform: translateY(-2px); color: #fff; }

.btn-hero-outline {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(255,255,255,0.12); color: #fff;
      font-weight: 600; font-size: 1rem;
      padding: 13px 28px; border-radius: 12px; text-decoration: none;
      border: 1.5px solid rgba(255,255,255,0.33);
      transition: background 0.2s;
    }

.btn-hero-outline:hover { background: rgba(255,255,255,0.22); color: #fff; }

/* ── HERO GAME ICONS ── */
    .hero-game-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 10px;
    }

.hero-game-tile {
      background: rgba(255,255,255,0.10);
      border: 1px solid rgba(255,255,255,0.18);
      border-radius: 13px;
      padding: 14px 12px;
      display: flex; align-items: center; gap: 10px;
      cursor: default;
      transition: background 0.2s;
    }

.hero-game-tile:hover { background: rgba(255,255,255,0.18); }

.hgt-icon {
      width: 40px; height: 40px; border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.2rem; flex-shrink: 0;
    }

.hero-game-tile span { font-size: 0.8rem; color: #e0f2fe; font-weight: 600; line-height: 1.3; }

/* ── SECTION COMMON ── */
    section { padding: 68px 0; }

.section-label {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: linear-gradient(90deg, #dbeafe, #d1fae5);
      color: var(--primary-dark);
      font-weight: 700;
      font-size: 0.78rem;
      padding: 5px 16px;
      border-radius: 20px;
      border: 1px solid #bae6fd;
      margin-bottom: 14px;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

.section-title {
      font-size: clamp(1.45rem, 3vw, 2.05rem);
      font-weight: 700;
      color: var(--text-mid);
      margin-bottom: 12px;
      line-height: 1.35;
    }

.section-subtitle {
      color: var(--text-muted);
      font-size: 0.98rem;
      max-width: 640px;
      margin: 0 auto;
      line-height: 1.85;
    }

/* ── STATS STRIP ── */
    .stats-strip {
      background: var(--card-bg);
      border-top: 4px solid var(--primary);
      border-bottom: 1px solid var(--divider);
      padding: 28px 0;
    }

.stat-item { text-align: center; padding: 0 20px; }

.stat-item .num { font-size: 1.9rem; font-weight: 800; color: var(--primary-dark); display: block; line-height: 1.1; }

.stat-item .lbl { font-size: 0.82rem; color: var(--text-muted); margin-top: 4px; display: block; }

.stat-divider { width: 1px; height: 48px; background: #bae6fd; align-self: center; }

/* ── FILTER TABS ── */
    .filter-section { background: var(--bg-dark); padding: 36px 0 0; }

.filter-tabs {
      display: flex; flex-wrap: wrap; gap: 10px;
      justify-content: center;
      margin-bottom: 0;
    }

.filter-tab {
      display: inline-flex; align-items: center; gap: 7px;
      padding: 9px 22px; border-radius: 30px; cursor: pointer;
      font-size: 0.88rem; font-weight: 600;
      border: 2px solid var(--divider);
      background: var(--card-bg); color: var(--text);
      transition: all 0.2s;
    }

.filter-tab:hover, .filter-tab.active {
      background: var(--primary); color: #fff; border-color: var(--primary);
      box-shadow: 0 3px 12px rgba(14,165,233,0.28);
    }

/* ── GAME CARDS ── */
    .games-section { background: var(--bg-dark); padding-top: 36px; }

.game-card {
      background: var(--bg-light);
      border-radius: var(--card-radius);
      border: 1.5px solid var(--divider);
      overflow: hidden;
      transition: transform 0.22s, box-shadow 0.22s;
      height: 100%;
      display: flex; flex-direction: column;
    }

.game-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

.gc-img-wrap {
      background: linear-gradient(135deg, var(--primary-deeper) 0%, #0891b2 100%);
      padding: 32px 20px;
      display: flex; align-items: center; justify-content: center;
      position: relative; min-height: 160px;
    }

.gc-emoji { font-size: 3.5rem; filter: drop-shadow(0 4px 12px rgba(0,0,0,0.2)); }

.gc-badge {
      position: absolute; top: 12px; left: 12px;
      background: #ef4444; color: #fff;
      font-size: 0.7rem; font-weight: 800;
      padding: 3px 10px; border-radius: 20px;
      text-transform: uppercase; letter-spacing: 0.05em;
    }

.gc-badge.hot { background: #f97316; }

.gc-badge.new { background: var(--secondary-dark); }

.gc-badge.live { background: #ef4444; animation: pulse 1.5s infinite; }

@keyframes pulse {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.7; }
    }

.gc-body {
    overflow-x: clip;
    width: 100%; padding: 20px 18px; flex: 1; display: flex; flex-direction: column; }

.gc-cat {
      font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
      letter-spacing: 0.07em; color: var(--primary); margin-bottom: 6px;
    }

.gc-title { font-size: 1.05rem; font-weight: 700; color: var(--text-mid); margin-bottom: 8px; }

.gc-desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.78; flex: 1; margin-bottom: 14px; }

.gc-meta {
      display: flex; align-items: center; justify-content: space-between;
      padding-top: 12px; border-top: 1px solid #e0f2fe;
      margin-bottom: 14px;
    }

.gc-rating { display: flex; align-items: center; gap: 4px; font-size: 0.82rem; color: #b45309; font-weight: 700; }

.gc-players { font-size: 0.78rem; color: var(--text-muted); }

.btn-play {
      display: flex; align-items: center; justify-content: center; gap: 8px;
      background: linear-gradient(90deg, var(--primary-dark), var(--primary));
      color: #fff; font-weight: 700; font-size: 0.9rem;
      padding: 10px 0; border-radius: 10px; text-decoration: none;
      transition: opacity 0.2s, transform 0.15s;
      width: 100%;
    }

.btn-play:hover { opacity: 0.9; transform: translateY(-1px); color: #fff; }

.btn-play-green {
      background: linear-gradient(90deg, var(--secondary-dark), var(--secondary));
    }

/* ── FEATURE CARDS ── */
    .features-section { background: var(--bg-light); }

.feature-card {
      background: var(--card-bg);
      border-radius: var(--card-radius);
      padding: 30px 26px;
      box-shadow: var(--shadow-sm);
      border: 1.5px solid #e0f2fe;
      transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
      height: 100%;
    }

.feature-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--border-color); }

.fc-icon {
      width: 58px; height: 58px; border-radius: 14px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.5rem; margin-bottom: 18px;
    }

.fc-blue   { background: rgba(139,92,246,0.18); }

.fc-green  { background: rgba(236,72,153,0.16); }

.fc-orange { background: rgba(251,191,36,0.16); }

.fc-purple { background: rgba(139,92,246,0.16); }

.fc-teal   { background: rgba(236,72,153,0.14); }

.fc-yellow { background: rgba(251,191,36,0.14); }

.feature-card h5 { font-size: 1.05rem; font-weight: 700; color: var(--text-mid); margin-bottom: 10px; }

.feature-card p  { font-size: 0.88rem; color: var(--text-muted); line-height: 1.82; margin: 0; }

/* ── CONTENT ── */
    .content-section { background: var(--bg-dark); }

.content-block { margin-bottom: 36px; }

.content-block h3 { font-size: 1.25rem; font-weight: 700; color: var(--text-mid); margin-bottom: 13px; display: flex; align-items: center; gap: 10px; }

.content-block h3 i { color: var(--primary); }

.content-block p { color: var(--text); line-height: 1.95; margin-bottom: 12px; }

.content-block p:last-child { margin-bottom: 0; }

.info-box {
      display: flex; align-items: flex-start; gap: 13px;
      padding: 15px 18px; border-radius: 12px; margin-top: 14px;
    }

.info-box i { font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }

.info-box p { margin: 0; font-size: 0.9rem; line-height: 1.75; }

.ib-blue { background: rgba(139,92,246,0.12); border-left: 4px solid var(--primary); }

.ib-blue i { color: var(--primary); }

.ib-blue p { color: var(--text); }

.ib-green { background: rgba(236,72,153,0.10); border-left: 4px solid var(--secondary); }

.ib-green i { color: var(--secondary-dark); }

.ib-green p { color: var(--text); }

.check-list { list-style: none; padding: 0; margin: 0; }

.check-list li {
      display: flex; align-items: flex-start; gap: 10px;
      padding: 8px 0; border-bottom: 1px solid var(--divider);
      font-size: 0.92rem; color: var(--text);
    }

.check-list li:last-child { border-bottom: none; }

.check-list li i { color: var(--secondary); font-size: 0.98rem; margin-top: 3px; flex-shrink: 0; }

/* ── POPULAR TABLE ── */
    .pop-table-wrap {
      background: var(--card-bg); border-radius: var(--card-radius);
      box-shadow: var(--shadow-sm); border: 1.5px solid var(--divider); overflow: hidden;
    }

.pop-table-wrap table { width: 100%; border-collapse: collapse; margin: 0; }

.pop-table-wrap thead th {
      background: linear-gradient(90deg, var(--primary-deeper), #0891b2);
      color: #fff; font-weight: 700; font-size: 0.88rem;
      padding: 14px 18px;
    }

.pop-table-wrap tbody tr { border-bottom: 1px solid var(--divider); transition: background 0.15s; }

.pop-table-wrap tbody tr:last-child { border-bottom: none; }

.pop-table-wrap tbody tr:hover { background: rgba(139,92,246,0.16); }

.pop-table-wrap tbody td { padding: 12px 18px; font-size: 0.88rem; color: var(--text-dark); vertical-align: middle; }

.rank-badge {
      width: 28px; height: 28px; border-radius: 50%;
      display: inline-flex; align-items: center; justify-content: center;
      font-weight: 800; font-size: 0.82rem; color: #fff;
    }

.rank-1 { background: #f59e0b; }

.rank-2 { background: #94a3b8; }

.rank-3 { background: #b45309; }

.rank-other { background: #bae6fd; color: var(--primary-dark); }

.game-name-cell { font-weight: 700; color: var(--text-mid); }

.game-emoji-sm { font-size: 1.3rem; margin-right: 8px; }

/* ── CTA ── */
    .cta-section { background: var(--bg-light); }

.cta-banner {
      background: linear-gradient(135deg, var(--primary-deeper) 0%, #0891b2 55%, var(--secondary-dark) 100%);
      border-radius: 22px; padding: 60px 46px; text-align: center;
      color: #fff; position: relative; overflow: hidden; box-shadow: var(--shadow-lg);
    }

.cta-banner::before {
      content: ''; position: absolute; top: -60px; right: -60px;
      width: 220px; height: 220px; border-radius: 50%;
      background: rgba(255,255,255,0.06); pointer-events: none;
    }

.cta-tag {
      display: inline-flex; align-items: center; gap: 6px;
      background: rgba(255,255,255,0.14); border: 1px solid rgba(255,255,255,0.24);
      color: #d1fae5; font-size: 0.8rem; font-weight: 700;
      padding: 5px 15px; border-radius: 20px; margin-bottom: 16px;
    }

.cta-banner h3 { font-size: clamp(1.45rem, 3vw, 2.1rem); font-weight: 800; color: #fff; margin-bottom: 12px; }

.cta-banner p { color: #bae6fd; font-size: 0.98rem; max-width: 540px; margin: 0 auto 28px; line-height: 1.85; }

.btn-cta-primary {
      display: inline-flex; align-items: center; gap: 8px;
      background: var(--secondary); color: #fff; font-weight: 700; font-size: 1.02rem;
      padding: 13px 32px; border-radius: 12px; text-decoration: none;
      box-shadow: 0 4px 18px rgba(34,197,94,0.38);
      transition: opacity 0.2s, transform 0.15s;
    }

.btn-cta-primary:hover { opacity: 0.9; transform: translateY(-2px); color: #fff; }

.btn-cta-outline {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(255,255,255,0.12); color: #fff; font-weight: 600; font-size: 1.02rem;
      padding: 13px 32px; border-radius: 12px; text-decoration: none;
      border: 1.5px solid rgba(255,255,255,0.33);
      transition: background 0.2s;
    }

.btn-cta-outline:hover { background: rgba(255,255,255,0.22); color: #fff; }

@media (max-width: 991px) {
.cta-banner { padding: 40px 24px; }
}

@media (max-width: 576px) {
.page-hero { padding: 44px 0 36px; }

section { padding: 48px 0; }
}
