/* ============================================================
   CasinosDot — Modern Redesign
   Design system + components
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  /* base surfaces */
  --bg: #08090d;
  --bg-soft: #0c0e14;
  --surface: #12141d;
  --surface-2: #171a25;
  --surface-3: #1e2231;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);

  /* text */
  --text: #f4f6fb;
  --text-soft: #c3cad8;
  --muted: #8b93a7;
  --faint: #5b6274;

  /* brand accents */
  --mint: #2ff3a6;
  --mint-deep: #12c98a;
  --violet: #7b6cff;
  --gold: #ffce6b;
  --rose: #ff6b8b;
  --sky: #57c7ff;

  /* semantic */
  --accent: var(--mint);
  --accent-ink: #04140d;

  /* gradients */
  --grad-brand: linear-gradient(135deg, #7b6cff 0%, #2ff3a6 100%);
  --grad-gold: linear-gradient(135deg, #ffce6b 0%, #ff9d5c 100%);
  --grad-dark: linear-gradient(180deg, #12141d 0%, #0b0d13 100%);

  /* effects */
  --radius: 16px;
  --radius-lg: 24px;
  --radius-sm: 10px;
  --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.35);
  --shadow: 0 18px 50px -20px rgba(0, 0, 0, 0.65);
  --shadow-glow: 0 0 0 1px rgba(47, 243, 166, 0.25), 0 20px 60px -25px rgba(47, 243, 166, 0.35);
  --ring: 0 0 0 3px rgba(47, 243, 166, 0.28);

  --font-display: "Space Grotesk", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  --maxw: 1200px;
  --nav-h: 74px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.1; margin: 0; letter-spacing: -0.02em; }
p { margin: 0; }

/* ---------- Background ambience ---------- */
.bg-ambient {
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(700px 500px at 12% -5%, rgba(123, 108, 255, 0.18), transparent 60%),
    radial-gradient(650px 480px at 92% 8%, rgba(47, 243, 166, 0.14), transparent 62%),
    radial-gradient(900px 700px at 50% 110%, rgba(87, 199, 255, 0.08), transparent 60%);
}

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 84px 0; }
.section-sm { padding: 52px 0; }

.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 34px; flex-wrap: wrap; }
.section-head .eyebrow { margin-bottom: 10px; }
.section-title { font-size: clamp(1.7rem, 3vw, 2.4rem); }
.section-sub { color: var(--muted); margin-top: 10px; max-width: 560px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-size: 0.74rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.18em; color: var(--mint);
}
.eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--mint); border-radius: 2px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 13px 22px; border-radius: 12px; font-weight: 600; font-size: 0.94rem;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
  white-space: nowrap; cursor: pointer;
}
.btn svg { width: 17px; height: 17px; }
.btn-primary { background: var(--mint); color: var(--accent-ink); font-weight: 700; box-shadow: 0 10px 30px -12px rgba(47, 243, 166, 0.7); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 40px -12px rgba(47, 243, 166, 0.8); }
.btn-gold { background: var(--grad-gold); color: #2a1a04; font-weight: 700; box-shadow: 0 10px 30px -12px rgba(255, 158, 92, 0.6); }
.btn-gold:hover { transform: translateY(-2px); }
.btn-ghost { background: rgba(255, 255, 255, 0.05); color: var(--text); border: 1px solid var(--border); }
.btn-ghost:hover { background: rgba(255, 255, 255, 0.1); border-color: var(--border-strong); transform: translateY(-2px); }
.btn-block { width: 100%; }
.btn-sm { padding: 9px 16px; font-size: 0.84rem; border-radius: 10px; }
.btn-lg { padding: 16px 28px; font-size: 1rem; }

/* ---------- Chips / badges ---------- */
.chip {
  display: inline-flex; align-items: center; gap: 6px; padding: 6px 12px;
  border-radius: 999px; font-size: 0.76rem; font-weight: 600; letter-spacing: 0.01em;
  background: rgba(255, 255, 255, 0.05); border: 1px solid var(--border); color: var(--text-soft);
}
.chip-mint { background: rgba(47, 243, 166, 0.12); border-color: rgba(47, 243, 166, 0.3); color: var(--mint); }
.chip-gold { background: rgba(255, 206, 107, 0.12); border-color: rgba(255, 206, 107, 0.3); color: var(--gold); }
.chip-violet { background: rgba(123, 108, 255, 0.14); border-color: rgba(123, 108, 255, 0.32); color: #b3a9ff; }
.chip-dot::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100; height: var(--nav-h);
  display: flex; align-items: center;
  background: rgba(8, 9, 13, 0.72); backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent; transition: border-color .3s, background .3s;
}
.site-header.scrolled { border-bottom-color: var(--border); background: rgba(8, 9, 13, 0.88); }
.nav { display: flex; align-items: center; justify-content: space-between; width: 100%; gap: 20px; }

.brand { display: flex; align-items: center; gap: 11px; font-family: var(--font-display); font-weight: 700; font-size: 1.28rem; letter-spacing: -0.03em; }
.brand-mark {
  width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center;
  background: var(--grad-brand); color: #06120c; font-weight: 800; font-size: 1.15rem;
  box-shadow: 0 6px 20px -6px rgba(47, 243, 166, 0.5);
}
.brand b { color: var(--mint); font-weight: 700; }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  padding: 9px 14px; border-radius: 10px; font-size: 0.92rem; font-weight: 500; color: var(--text-soft);
  transition: color .16s, background .16s; position: relative;
}
.nav-links a:hover { color: var(--text); background: rgba(255, 255, 255, 0.05); }
.nav-links a.active { color: var(--mint); }

.nav-actions { display: flex; align-items: center; gap: 12px; }
.icon-btn {
  width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center;
  border: 1px solid var(--border); background: rgba(255, 255, 255, 0.03); color: var(--text-soft);
  transition: background .16s, color .16s, border-color .16s;
}
.icon-btn:hover { background: rgba(255, 255, 255, 0.08); color: var(--text); border-color: var(--border-strong); }
.icon-btn svg { width: 19px; height: 19px; }

.nav-toggle { display: none; }

/* mobile drawer */
.mobile-drawer {
  position: fixed; inset: 0; z-index: 200; background: rgba(6, 7, 10, 0.97); backdrop-filter: blur(10px);
  display: flex; flex-direction: column; padding: 26px 24px; transform: translateX(100%);
  transition: transform .35s cubic-bezier(.5,.1,.2,1); visibility: hidden;
}
.mobile-drawer.open { transform: translateX(0); visibility: visible; }
.mobile-drawer .drawer-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; }
.mobile-drawer nav { display: flex; flex-direction: column; gap: 4px; }
.mobile-drawer nav a { padding: 15px 8px; font-family: var(--font-display); font-size: 1.35rem; border-bottom: 1px solid var(--border); color: var(--text-soft); }
.mobile-drawer nav a:hover { color: var(--mint); }
.mobile-drawer .drawer-cta { margin-top: 28px; }

/* ---------- Trust strip ---------- */
.trust-strip {
  border-bottom: 1px solid var(--border); background: rgba(255, 255, 255, 0.015);
  font-size: 0.78rem; color: var(--muted);
}
.trust-strip .container { display: flex; align-items: center; justify-content: center; gap: 26px; padding-top: 9px; padding-bottom: 9px; flex-wrap: wrap; }
.trust-strip span { display: inline-flex; align-items: center; gap: 7px; }
.trust-strip svg { width: 14px; height: 14px; color: var(--mint); }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 66px 0 40px; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center; }
.hero h1 { font-size: clamp(2.4rem, 5vw, 3.9rem); line-height: 1.02; }
.hero h1 .grad { background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-lead { color: var(--text-soft); font-size: 1.12rem; margin-top: 20px; max-width: 500px; }
.hero-cta { display: flex; gap: 13px; margin-top: 30px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 30px; margin-top: 38px; flex-wrap: wrap; }
.hero-stats .stat b { font-family: var(--font-display); font-size: 1.7rem; display: block; letter-spacing: -0.02em; }
.hero-stats .stat span { color: var(--muted); font-size: 0.82rem; }
.hero-stats .stat b .grad { background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* Editor's choice hero card */
.spotlight {
  position: relative; border-radius: var(--radius-lg); padding: 26px;
  background: linear-gradient(160deg, rgba(30, 34, 49, 0.9), rgba(12, 14, 20, 0.9));
  border: 1px solid var(--border-strong); box-shadow: var(--shadow);
  overflow: hidden;
}
.spotlight::before {
  content: ""; position: absolute; top: -60%; right: -30%; width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(47, 243, 166, 0.22), transparent 70%); pointer-events: none;
}
.spotlight-tag {
  position: absolute; top: 18px; right: 18px; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gold); display: inline-flex; align-items: center; gap: 6px;
}
.spotlight-tag svg { width: 14px; height: 14px; }
.spotlight-head { display: flex; align-items: center; gap: 16px; }
.spotlight-body { position: relative; }
.spotlight-bonus { margin: 20px 0 6px; }
.spotlight-bonus .lbl { font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--muted); }
.spotlight-bonus .amt { font-family: var(--font-display); font-size: 1.85rem; line-height: 1.1; margin-top: 4px; }
.spotlight-bonus .amt em { font-style: normal; color: var(--mint); }
.spotlight-features { display: flex; flex-wrap: wrap; gap: 8px; margin: 18px 0; }
.spotlight-foot { display: flex; gap: 12px; align-items: center; margin-top: 20px; }

/* ---------- Casino logo tile (placeholder) ---------- */
.logo-tile {
  width: 60px; height: 60px; border-radius: 14px; flex-shrink: 0;
  display: grid; place-items: center; font-family: var(--font-display); font-weight: 800;
  font-size: 1.35rem; color: #fff; position: relative; overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.12);
}
.logo-tile.lg { width: 76px; height: 76px; font-size: 1.7rem; border-radius: 18px; }
.logo-tile.sm { width: 48px; height: 48px; font-size: 1.1rem; border-radius: 12px; }
.lt-1 { background: linear-gradient(135deg, #7b6cff, #57c7ff); }
.lt-2 { background: linear-gradient(135deg, #ff6b8b, #ffce6b); }
.lt-3 { background: linear-gradient(135deg, #2ff3a6, #57c7ff); }
.lt-4 { background: linear-gradient(135deg, #ffce6b, #ff9d5c); }
.lt-5 { background: linear-gradient(135deg, #b06cff, #ff6b8b); }
.lt-6 { background: linear-gradient(135deg, #57c7ff, #2ff3a6); }
.lt-7 { background: linear-gradient(135deg, #ff9d5c, #ff6b8b); }
.lt-8 { background: linear-gradient(135deg, #6c7bff, #b06cff); }

/* ---------- Rating ring ---------- */
.rating-ring { position: relative; width: 56px; height: 56px; flex-shrink: 0; }
.rating-ring svg { transform: rotate(-90deg); }
.rating-ring .track { stroke: rgba(255, 255, 255, 0.1); }
.rating-ring .fill { stroke: var(--mint); stroke-linecap: round; transition: stroke-dashoffset 1s ease; }
.rating-ring .val {
  position: absolute; inset: 0; display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 700; font-size: 0.98rem;
}
.rating-ring.lg { width: 76px; height: 76px; }
.rating-ring.lg .val { font-size: 1.3rem; }

/* small inline stars */
.stars { display: inline-flex; gap: 2px; color: var(--gold); }
.stars svg { width: 15px; height: 15px; }

/* ---------- Ranking list ---------- */
.rank-list { display: flex; flex-direction: column; gap: 14px; }
.rank-row {
  display: grid; grid-template-columns: 44px 76px 1.4fr 1.3fr auto; gap: 20px; align-items: center;
  padding: 20px 24px; border-radius: var(--radius); background: var(--surface);
  border: 1px solid var(--border); transition: border-color .2s, transform .2s, box-shadow .2s;
  position: relative;
}
.rank-row:hover { border-color: var(--border-strong); transform: translateY(-2px); box-shadow: var(--shadow); }
.rank-row.top { border-color: rgba(255, 206, 107, 0.35); background: linear-gradient(120deg, rgba(255,206,107,0.06), var(--surface) 40%); }
.rank-num { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--faint); text-align: center; }
.rank-row.top .rank-num { color: var(--gold); }
.rank-brand { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.rank-brand .name { font-family: var(--font-display); font-weight: 700; font-size: 1.12rem; }
.rank-brand .meta { display: flex; align-items: center; gap: 8px; color: var(--muted); font-size: 0.82rem; }
.rank-bonus .lbl { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); }
.rank-bonus .amt { font-family: var(--font-display); font-weight: 600; font-size: 1.02rem; margin-top: 3px; line-height: 1.3; }
.rank-bonus .amt em { font-style: normal; color: var(--mint); }
.rank-cta { display: flex; flex-direction: column; gap: 8px; align-items: stretch; min-width: 148px; }
.rank-cta .terms { font-size: 0.68rem; color: var(--faint); text-align: center; }

/* score pill */
.score-pill {
  display: inline-flex; align-items: baseline; gap: 4px; padding: 3px 9px; border-radius: 8px;
  background: rgba(47, 243, 166, 0.12); color: var(--mint); font-family: var(--font-display); font-weight: 700;
}
.score-pill b { font-size: 0.98rem; }
.score-pill span { font-size: 0.68rem; opacity: 0.7; }

/* ---------- Card grid ---------- */
.grid { display: grid; gap: 22px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  border-radius: var(--radius); background: var(--surface); border: 1px solid var(--border);
  padding: 24px; transition: border-color .2s, transform .2s, box-shadow .2s; position: relative; overflow: hidden;
}
.card:hover { border-color: var(--border-strong); transform: translateY(-4px); box-shadow: var(--shadow); }

/* bonus card */
.bonus-card { display: flex; flex-direction: column; }
.bonus-card .bc-head { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.bonus-card .bc-name { font-family: var(--font-display); font-weight: 700; font-size: 1.06rem; }
.bonus-card .bc-amt { font-family: var(--font-display); font-size: 1.55rem; letter-spacing: -0.02em; line-height: 1.05; margin: 6px 0 4px; }
.bonus-card .bc-amt em { font-style: normal; background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; color: transparent; }
.bonus-card .bc-sub { color: var(--muted); font-size: 0.86rem; }
.bonus-card .bc-list { margin: 18px 0; display: flex; flex-direction: column; gap: 9px; }
.bonus-card .bc-list li { display: flex; align-items: center; gap: 10px; font-size: 0.88rem; color: var(--text-soft); }
.bonus-card .bc-list svg { width: 16px; height: 16px; color: var(--mint); flex-shrink: 0; }
.bonus-card .bc-foot { margin-top: auto; }
.card-glow { box-shadow: var(--shadow-glow); border-color: rgba(47, 243, 166, 0.35); }

/* review / editorial card */
.rev-card { padding: 0; display: flex; flex-direction: column; }
.rev-thumb { height: 168px; position: relative; overflow: hidden; }
.rev-thumb .cover { position: absolute; inset: 0; }
.rev-thumb .cat { position: absolute; top: 14px; left: 14px; z-index: 2; }
.rev-thumb .logo-float { position: absolute; bottom: -22px; left: 20px; z-index: 3; box-shadow: 0 8px 20px rgba(0,0,0,0.4); }
.rev-body { padding: 32px 22px 22px; display: flex; flex-direction: column; flex: 1; }
.rev-body h3 { font-size: 1.14rem; }
.rev-body .excerpt { color: var(--muted); font-size: 0.88rem; margin: 10px 0 16px; }
.rev-meta { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 14px; border-top: 1px solid var(--border); }
.rev-meta .date { color: var(--faint); font-size: 0.78rem; }
.rev-link { color: var(--mint); font-weight: 600; font-size: 0.86rem; display: inline-flex; align-items: center; gap: 5px; transition: gap .2s; }
.rev-card:hover .rev-link { gap: 9px; }

/* cover gradients */
.cov-1 { background: linear-gradient(135deg, #241b4d, #3a2a7a); }
.cov-2 { background: linear-gradient(135deg, #0e3b3a, #14705a); }
.cov-3 { background: linear-gradient(135deg, #3d1f2c, #7a2f45); }
.cov-4 { background: linear-gradient(135deg, #2a2140, #4a3670); }
.cov-5 { background: linear-gradient(135deg, #123047, #1f5f7a); }
.cov-6 { background: linear-gradient(135deg, #402a15, #7a5326); }
.cover-mesh::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(200px 120px at 80% 20%, rgba(255,255,255,0.12), transparent 60%),
              radial-gradient(160px 140px at 15% 90%, rgba(255,255,255,0.08), transparent 60%);
}

/* ---------- Filter bar ---------- */
.filter-bar {
  display: flex; align-items: center; gap: 10px; padding: 12px; border-radius: 14px;
  background: var(--surface); border: 1px solid var(--border); flex-wrap: wrap; margin-bottom: 26px;
}
.filter-bar .fb-label { font-size: 0.8rem; color: var(--muted); padding: 0 6px; font-weight: 500; }
.filter-tab {
  padding: 9px 16px; border-radius: 10px; font-size: 0.86rem; font-weight: 500; color: var(--text-soft);
  border: 1px solid transparent; transition: background .16s, color .16s;
}
.filter-tab:hover { background: rgba(255,255,255,0.05); }
.filter-tab.active { background: rgba(47, 243, 166, 0.12); color: var(--mint); border-color: rgba(47,243,166,0.28); }
.filter-bar .spacer { flex: 1; }
.filter-select {
  padding: 9px 14px; border-radius: 10px; background: var(--surface-2); border: 1px solid var(--border);
  color: var(--text-soft); font-size: 0.86rem; font-family: inherit;
}

/* ---------- How we rate ---------- */
.rate-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.rate-methods { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.method {
  padding: 22px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--border);
}
.method .m-icon { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; margin-bottom: 14px; }
.method .m-icon svg { width: 22px; height: 22px; }
.mi-1 { background: rgba(47,243,166,0.14); color: var(--mint); }
.mi-2 { background: rgba(123,108,255,0.16); color: #b3a9ff; }
.mi-3 { background: rgba(255,206,107,0.14); color: var(--gold); }
.mi-4 { background: rgba(87,199,255,0.14); color: var(--sky); }
.method h4 { font-size: 1rem; margin-bottom: 6px; }
.method p { font-size: 0.85rem; color: var(--muted); }
.method .weight { font-family: var(--font-display); font-size: 0.78rem; color: var(--mint); margin-top: 10px; font-weight: 600; }

/* ---------- CTA banner ---------- */
.cta-banner {
  position: relative; border-radius: var(--radius-lg); padding: 54px 48px; overflow: hidden;
  background: linear-gradient(130deg, rgba(123,108,255,0.16), rgba(47,243,166,0.1));
  border: 1px solid var(--border-strong); text-align: center;
}
.cta-banner::before, .cta-banner::after {
  content: ""; position: absolute; border-radius: 50%; pointer-events: none;
}
.cta-banner::before { width: 300px; height: 300px; background: radial-gradient(circle, rgba(47,243,166,0.25), transparent 70%); top: -140px; left: -60px; }
.cta-banner::after { width: 320px; height: 320px; background: radial-gradient(circle, rgba(123,108,255,0.28), transparent 70%); bottom: -160px; right: -60px; }
.cta-banner h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); position: relative; }
.cta-banner p { color: var(--text-soft); margin: 14px auto 26px; max-width: 520px; position: relative; }

/* ---------- Newsletter ---------- */
.newsletter-form { display: flex; gap: 10px; max-width: 440px; margin: 0 auto; position: relative; flex-wrap: wrap; }
.newsletter-form input {
  flex: 1; min-width: 200px; padding: 14px 18px; border-radius: 12px; background: rgba(255,255,255,0.06);
  border: 1px solid var(--border-strong); color: var(--text); font-family: inherit; font-size: 0.94rem;
}
.newsletter-form input::placeholder { color: var(--muted); }
.newsletter-form input:focus { outline: none; box-shadow: var(--ring); border-color: var(--mint); }

/* ---------- Lifestyle strip ---------- */
.life-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 18px; }
.life-card { border-radius: var(--radius); overflow: hidden; position: relative; min-height: 220px; display: flex; align-items: flex-end; padding: 22px; border: 1px solid var(--border); }
.life-card .life-cover { position: absolute; inset: 0; z-index: 0; }
.life-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(6,7,10,0.9), transparent 70%); z-index: 1; }
.life-card .life-content { position: relative; z-index: 2; }
.life-card h4 { font-size: 1.05rem; margin-top: 8px; }
.life-card.feat { grid-row: span 1; min-height: 320px; }
.life-card.feat h4 { font-size: 1.4rem; }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--border); background: var(--bg-soft); padding: 60px 0 30px; margin-top: 40px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand p { color: var(--muted); font-size: 0.88rem; margin-top: 16px; max-width: 280px; }
.footer-col h5 { font-family: var(--font-display); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); margin-bottom: 16px; }
.footer-col a { display: block; padding: 6px 0; color: var(--text-soft); font-size: 0.9rem; transition: color .16s; }
.footer-col a:hover { color: var(--mint); }
.footer-regions { display: flex; gap: 10px; margin-top: 20px; flex-wrap: wrap; }
.region-flag { display: inline-flex; align-items: center; gap: 7px; padding: 7px 12px; border-radius: 9px; background: var(--surface); border: 1px solid var(--border); font-size: 0.8rem; color: var(--text-soft); }
.footer-bottom { display: flex; flex-direction: column; align-items: flex-start; margin-top: 46px; padding-top: 26px; border-top: 1px solid var(--border); gap: 12px; }
.footer-bottom p { color: var(--faint); font-size: 0.8rem; }
.footer-bottom .footer-disclaimer { max-width: 1000px; line-height: 1.6; }

/* 18+ / licence-awareness gate */
.age-gate { position: fixed; inset: 0; z-index: 3000; display: grid; place-items: center; padding: 20px; background: rgba(6,8,15,0.82); backdrop-filter: blur(6px); }
.age-gate[hidden] { display: none !important; }
.age-card { width: 100%; max-width: 480px; background: var(--surface); border: 1px solid var(--border); border-radius: 18px; padding: 32px 28px; text-align: center; box-shadow: 0 30px 80px rgba(0,0,0,0.5); }
.age-card h2 { font-family: var(--font-display); font-size: 1.5rem; margin: 16px 0 10px; }
.age-card > p { color: var(--text-soft); font-size: 0.95rem; line-height: 1.6; margin: 0 0 18px; }
.age-badge-lg { width: 54px; height: 54px; font-size: 1.05rem; margin: 0 auto; border-width: 3px; }
.age-ack { text-align: left; background: var(--surface-2); border: 1px solid var(--border); border-radius: 12px; padding: 14px; font-size: 0.86rem; color: var(--text-soft); line-height: 1.5; margin: 0; }
.age-actions { display: flex; flex-direction: column; gap: 10px; margin-top: 20px; }
.age-actions .btn { width: 100%; }
.age-actions .btn:disabled { opacity: 0.45; cursor: not-allowed; }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a { width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center; border: 1px solid var(--border); color: var(--muted); transition: all .16s; }
.footer-socials a:hover { color: var(--mint); border-color: rgba(47,243,166,0.3); background: rgba(47,243,166,0.08); }
.footer-socials svg { width: 17px; height: 17px; }
.age-badge { width: 34px; height: 34px; border-radius: 50%; border: 2px solid var(--rose); color: var(--rose); display: grid; place-items: center; font-weight: 800; font-size: 0.72rem; font-family: var(--font-display); }

/* ---------- Responsible gambling bar ---------- */
.rg-bar { display: flex; align-items: center; gap: 14px; justify-content: center; padding: 16px; border-radius: 12px; background: rgba(255,107,139,0.06); border: 1px solid rgba(255,107,139,0.2); margin-top: 30px; font-size: 0.84rem; color: var(--text-soft); flex-wrap: wrap; text-align: center; }
.rg-bar .age-badge { flex-shrink: 0; }

/* ---------- Review page specifics ---------- */
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: var(--muted); padding: 20px 0; }
.breadcrumb a:hover { color: var(--mint); }
.breadcrumb svg { width: 14px; height: 14px; opacity: 0.5; }

.review-hero { display: grid; grid-template-columns: 1.5fr 1fr; gap: 40px; align-items: start; padding: 20px 0 40px; }
.rh-main { }
.rh-top { display: flex; align-items: center; gap: 20px; margin-bottom: 20px; }
.rh-title h1 { font-size: clamp(2rem, 4vw, 2.9rem); }
.rh-title .tagline { color: var(--muted); margin-top: 8px; }
.rh-badges { display: flex; gap: 10px; margin: 20px 0; flex-wrap: wrap; }
.rh-verdict { color: var(--text-soft); font-size: 1.02rem; line-height: 1.7; }

.rh-side {
  border-radius: var(--radius-lg); padding: 26px; background: linear-gradient(160deg, var(--surface-2), var(--surface));
  border: 1px solid var(--border-strong); position: sticky; top: calc(var(--nav-h) + 16px); box-shadow: var(--shadow);
}
.rh-side .side-bonus { text-align: center; padding: 8px 0 18px; border-bottom: 1px solid var(--border); }
.rh-side .side-bonus .lbl { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--muted); }
.rh-side .side-bonus .amt { font-family: var(--font-display); font-size: 1.9rem; margin: 6px 0; }
.rh-side .side-bonus .amt em { font-style: normal; color: var(--mint); }
.side-scores { display: flex; flex-direction: column; gap: 14px; padding: 20px 0; }
.side-score { }
.side-score .ss-top { display: flex; justify-content: space-between; font-size: 0.86rem; margin-bottom: 6px; }
.side-score .ss-top b { font-family: var(--font-display); }
.score-bar { height: 7px; border-radius: 4px; background: rgba(255,255,255,0.08); overflow: hidden; }
.score-bar i { display: block; height: 100%; border-radius: 4px; background: var(--grad-brand); }

/* pros / cons */
.proscons { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.pc-box { padding: 24px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--border); }
.pc-box h4 { display: flex; align-items: center; gap: 9px; font-size: 1rem; margin-bottom: 16px; }
.pc-box.pros h4 { color: var(--mint); }
.pc-box.cons h4 { color: var(--rose); }
.pc-box li { display: flex; gap: 11px; padding: 8px 0; font-size: 0.9rem; color: var(--text-soft); align-items: flex-start; }
.pc-box svg { width: 17px; height: 17px; flex-shrink: 0; margin-top: 2px; }
.pc-box.pros svg { color: var(--mint); }
.pc-box.cons svg { color: var(--rose); }

/* content prose */
.prose { max-width: 760px; }
.review-shot { display: block; margin: 0 0 26px; border-radius: 14px; overflow: hidden; border: 1px solid var(--border); }
.review-shot img { display: block; width: 100%; height: auto; }
a.review-shot { transition: transform .2s ease, box-shadow .2s ease; }
a.review-shot:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.prose h2 { font-size: 1.6rem; margin: 40px 0 16px; }
.prose h3 { font-size: 1.2rem; margin: 28px 0 12px; }
/* Casino-description H4 section headings: 2x the default size. */
.prose h4 { font-size: 2rem; font-weight: 700; line-height: 1.2; margin: 30px 0 12px; }
/* Reference tables (e.g. licensing authorities) */
.prose .table-wrap { overflow-x: auto; margin: 4px 0 24px; border: 1px solid var(--border); border-radius: 12px; }
.prose table { width: 100%; border-collapse: collapse; font-size: 0.9rem; min-width: 560px; }
.prose thead th { text-align: left; padding: 11px 14px; color: var(--muted); font-size: 0.72rem; text-transform: uppercase; letter-spacing: .07em; border-bottom: 1px solid var(--border); background: var(--surface-2); }
.prose tbody td { padding: 10px 14px; border-bottom: 1px solid var(--border); vertical-align: top; color: var(--text-soft); }
.prose tbody tr:last-child td { border-bottom: 0; }
.prose tr.grp td { color: var(--mint); font-weight: 700; font-size: 0.78rem; text-transform: uppercase; letter-spacing: .06em; background: rgba(47,243,166,0.06); }
.prose td .reg { color: var(--faint); font-family: ui-monospace, Menlo, monospace; font-size: 0.82rem; }
.prose table li::before { content: none; }
.prose p { color: var(--text-soft); margin-bottom: 16px; line-height: 1.75; }
.prose ul { margin: 0 0 16px; padding-left: 4px; }
.prose ul li { display: flex; gap: 10px; padding: 6px 0; color: var(--text-soft); }
.prose ul li::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--mint); margin-top: 10px; flex-shrink: 0; }

/* info table */
.info-table { border-radius: var(--radius); border: 1px solid var(--border); overflow: hidden; }
.info-table .row { display: grid; grid-template-columns: 200px 1fr; gap: 16px; padding: 15px 20px; border-bottom: 1px solid var(--border); font-size: 0.9rem; }
.info-table .row:last-child { border-bottom: none; }
.info-table .row:nth-child(odd) { background: rgba(255,255,255,0.015); }
.info-table .row .k { color: var(--muted); }
.info-table .row .v { color: var(--text); font-weight: 500; }

/* payment/provider logos row */
.logo-row { display: flex; gap: 12px; flex-wrap: wrap; }
.logo-pill { padding: 10px 18px; border-radius: 10px; background: var(--surface); border: 1px solid var(--border); font-family: var(--font-display); font-weight: 600; font-size: 0.85rem; color: var(--text-soft); }
a.logo-pill.tag { transition: color .15s, border-color .15s, background .15s; }
a.logo-pill.tag:hover { color: var(--mint); border-color: rgba(47,243,166,0.35); background: rgba(47,243,166,0.06); }

/* page hero (generic) */
.page-hero { padding: 50px 0 30px; text-align: center; }
.page-hero h1 { font-size: clamp(2.2rem, 4.5vw, 3.4rem); }
.page-hero h1 .grad { background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; color: transparent; }
.page-hero p { color: var(--text-soft); max-width: 560px; margin: 18px auto 0; font-size: 1.05rem; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .rate-grid { grid-template-columns: 1fr; }
  .review-hero { grid-template-columns: 1fr; }
  .rh-side { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .life-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .nav-toggle { display: grid; }
}
@media (max-width: 720px) {
  .section { padding: 60px 0; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .rank-row { grid-template-columns: 34px 56px 1fr; grid-template-areas: "num logo brand" "cta cta cta" "bonus bonus bonus"; gap: 12px 14px; padding: 18px; }
  .rank-num { grid-area: num; }
  .rank-logo-cell { grid-area: logo; }
  .rank-brand { grid-area: brand; }
  .rank-bonus { grid-area: bonus; padding-top: 12px; border-top: 1px solid var(--border); }
  .rank-cta { grid-area: cta; flex-direction: row; }
  .rank-cta .terms { display: none; }
  .rate-methods { grid-template-columns: 1fr; }
  .proscons { grid-template-columns: 1fr; }
  .life-grid { grid-template-columns: 1fr; }
  .info-table .row { grid-template-columns: 1fr; gap: 4px; }
  .cta-banner { padding: 40px 24px; }
  .hero-stats { gap: 20px; }
}
@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .desktop-only { display: none; }
}

/* ---------- Age gate ---------- */
.agegate {
  position: fixed; inset: 0; z-index: 1000; display: grid; place-items: center; padding: 24px;
  background: rgba(4, 5, 8, 0.86); backdrop-filter: blur(14px);
  animation: fadeIn .3s ease;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.agegate-card {
  max-width: 460px; width: 100%; text-align: center; padding: 40px 34px;
  border-radius: var(--radius-lg); background: linear-gradient(160deg, var(--surface-2), var(--surface));
  border: 1px solid var(--border-strong); box-shadow: var(--shadow);
}
.agegate-badge {
  width: 74px; height: 74px; margin: 0 auto 22px; border-radius: 50%; display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; color: var(--rose);
  border: 3px solid var(--rose); background: rgba(255, 107, 139, 0.08);
}
.agegate-badge span { font-size: 1rem; }
.agegate-card h2 { font-size: 1.6rem; margin-bottom: 14px; }
.agegate-card p { color: var(--text-soft); font-size: 0.95rem; }
.agegate-actions { display: flex; flex-direction: column; gap: 12px; margin: 26px 0 18px; }
.agegate-foot { font-size: 0.78rem; color: var(--faint); }

/* ---------- Language switcher ---------- */
.lang-switch { position: relative; }
.lang-btn { display: inline-flex; flex-direction: row; align-items: center; justify-content: center; width: auto; min-width: 62px; height: 40px; padding: 0 12px; gap: 7px; white-space: nowrap; }
.lang-btn svg { flex: 0 0 auto; }
.lang-btn .lang-code { font-size: 0.8rem; font-weight: 600; font-family: var(--font-display); line-height: 1; }
.lang-menu {
  position: absolute; top: calc(100% + 10px); right: 0; z-index: 90; min-width: 190px;
  background: var(--surface-2); border: 1px solid var(--border-strong); border-radius: 14px; padding: 8px;
  box-shadow: var(--shadow); opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
  max-height: 60vh; overflow-y: auto;
}
.lang-switch:hover .lang-menu, .lang-switch:focus-within .lang-menu { opacity: 1; visibility: visible; transform: none; }
.lang-menu a { display: flex; align-items: center; gap: 10px; padding: 9px 12px; border-radius: 9px; font-size: 0.88rem; color: var(--text-soft); }
.lang-menu a:hover { background: rgba(255, 255, 255, 0.06); color: var(--text); }
.lang-menu a.active { color: var(--mint); background: rgba(47, 243, 166, 0.08); }
.lang-menu a .lc { font-family: var(--font-display); font-weight: 600; font-size: 0.74rem; width: 24px; color: var(--faint); }
.lang-menu a.active .lc { color: var(--mint); }

/* ---------- Empty region / not available ---------- */
.empty-region {
  text-align: center; padding: 56px 24px; border-radius: var(--radius-lg);
  background: var(--surface); border: 1px dashed var(--border-strong);
}
.empty-region .age-badge { margin: 0 auto 18px; }
.empty-region h3 { font-size: 1.4rem; margin-bottom: 10px; }
.empty-region p { color: var(--muted); max-width: 440px; margin: 0 auto 22px; }

.region-block {
  padding: 20px 22px; border-radius: var(--radius); background: rgba(255, 107, 139, 0.06);
  border: 1px solid rgba(255, 107, 139, 0.25);
}
.region-block .rb-head { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 700; color: var(--rose); margin-bottom: 8px; }
.region-block .rb-head svg { width: 20px; height: 20px; }
.region-block p { color: var(--text-soft); font-size: 0.92rem; }

@media (max-width: 720px) {
  #review-body-grid { grid-template-columns: 1fr !important; }
}

/* ---------- Casino sub-nav (small links) ---------- */
.casino-subnav { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.casino-subnav a {
  padding: 7px 14px; border-radius: 999px; font-size: 0.82rem; font-weight: 500; color: var(--text-soft);
  background: rgba(255,255,255,0.04); border: 1px solid var(--border); transition: all .16s;
}
.casino-subnav a:hover { background: rgba(255,255,255,0.08); color: var(--text); border-color: var(--border-strong); }
.casino-subnav a.active { background: rgba(47,243,166,0.12); color: var(--mint); border-color: rgba(47,243,166,0.3); }

/* geo nav item */
.nav-geo { color: var(--mint) !important; }
.nav-geo:hover { background: rgba(47,243,166,0.08) !important; }

/* ---------- Country directory (footer) ---------- */
.country-directory { border-top: 1px solid var(--border); background: var(--bg-soft); padding: 46px 0 10px; }
.country-cols {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 4px 24px;
}
.country-cols a { padding: 7px 0; font-size: 0.86rem; color: var(--muted); transition: color .15s; border-bottom: 1px solid transparent; }
.country-cols a:hover { color: var(--mint); }
@media (max-width: 900px) { .country-cols { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .country-cols { grid-template-columns: 1fr; } }

/* ---------- Contact form ---------- */
.contact-form { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 30px; }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 560px) { .cf-row { grid-template-columns: 1fr; } }
.adm-field2 label { display: block; font-size: 0.82rem; color: var(--muted); margin-bottom: 6px; }
.adm-field2 input, .adm-field2 textarea {
  width: 100%; padding: 12px 14px; border-radius: 11px; background: var(--surface-2);
  border: 1px solid var(--border-strong); color: var(--text); font-family: inherit; font-size: 0.94rem;
}
.adm-field2 input:focus, .adm-field2 textarea:focus { outline: none; border-color: var(--mint); box-shadow: var(--ring); }
.adm-field2 textarea { resize: vertical; }
.cf-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.flash-ok { display: flex; align-items: center; gap: 10px; background: rgba(47,243,166,0.1); border: 1px solid rgba(47,243,166,0.3); color: var(--mint); padding: 14px 18px; border-radius: 12px; margin-bottom: 20px; font-size: 0.92rem; }
.flash-ok svg { width: 18px; height: 18px; }
.flash-err { background: rgba(255,107,139,0.1); border: 1px solid rgba(255,107,139,0.3); color: var(--rose); padding: 14px 18px; border-radius: 12px; margin-bottom: 20px; font-size: 0.92rem; }

/* ---------- Real logo images (imported) ---------- */
.logo-tile.has-img { background: #fff; box-shadow: inset 0 0 0 1px rgba(0,0,0,0.08); overflow: hidden; }
.logo-tile.has-img img { width: 100%; height: 100%; object-fit: contain; padding: 5px; border-radius: inherit; }

/* ---------- Play-alternative block (casino not available in country) ---------- */
.alt-promo .alt-flag { display: flex; align-items: center; gap: 9px; font-family: var(--font-display); font-weight: 700; color: var(--rose); margin-bottom: 8px; }
.alt-promo .alt-flag svg { width: 20px; height: 20px; flex: none; }
.alt-promo .alt-note { color: var(--text-soft); font-size: 0.9rem; margin-bottom: 18px; }
.alt-promo .alt-eyebrow { font-family: var(--font-display); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.16em; color: var(--mint); margin-bottom: 12px; }
.alt-casino { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.alt-casino .ac-id { display: flex; flex-direction: column; gap: 5px; min-width: 0; }
.alt-casino .ac-name { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; }
.alt-bonus { margin-bottom: 16px; }
.alt-bonus .lbl { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); }
.alt-bonus .amt { font-family: var(--font-display); font-size: 1.2rem; margin-top: 4px; line-height: 1.25; }
.alt-bonus .amt em { font-style: normal; color: var(--mint); }

/* ---------- Reviews grid card ---------- */
.review-card { display: flex; flex-direction: column; padding: 20px; }
.review-card .rc-head { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.review-card .rc-id { min-width: 0; }
.review-card .rc-name { font-family: var(--font-display); font-weight: 700; font-size: 1.02rem; color: var(--text); display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.review-card .rc-name:hover { color: var(--mint); }
.review-card .rc-meta { margin-top: 5px; display: flex; align-items: center; gap: 6px; }
.review-card .rc-lic { color: var(--muted); font-size: 0.78rem; }
.review-card .rc-bonus { margin-bottom: 16px; }
.review-card .rc-bonus .lbl { font-size: 0.66rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); }
.review-card .rc-bonus .amt { font-family: var(--font-display); font-weight: 600; font-size: 0.98rem; line-height: 1.3; margin-top: 3px; }
.review-card .rc-bonus .amt em { font-style: normal; color: var(--mint); }
.review-card .rc-foot { margin-top: auto; display: flex; flex-direction: column; gap: 8px; }

/* ---------- Pagination ---------- */
.pagination { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-top: 40px; }
.pagination .pg { min-width: 42px; text-align: center; padding: 10px 14px; border-radius: 11px; border: 1px solid var(--border); background: var(--surface); color: var(--text-soft); font-weight: 600; font-size: 0.92rem; transition: border-color .16s, color .16s, background .16s; }
.pagination a.pg:hover { border-color: var(--border-strong); color: var(--text); }
.pagination .pg.cur { background: rgba(47,243,166,0.12); color: var(--mint); border-color: rgba(47,243,166,0.32); }
.pagination .pg.dots { border: none; background: none; color: var(--faint); }

/* utility */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.hide { display: none; }
