/* =============================================================
   Casino 770 — Multi-page site
   Design direction: Editorial / Magazine / Vertical Stripes
   (warm old-gold × black, Fraunces serif display,
    asymmetric composition with numbered marginalia)
   ============================================================= */

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; }
html { overflow-x: clip; scroll-behavior: smooth; }
body { margin: 0; overflow-x: clip; }
img, svg { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }
a { color: inherit; }

/* ===== TOKENS ===== */
:root {
  --bg: #080806;
  --bg-alt: #0e0d0a;
  --bg-deep: #050504;
  --surface: #141310;
  --surface-elev: #1a1813;
  --surface-hi: #211e17;

  --border: rgba(181, 126, 16, 0.22);
  --border-strong: rgba(212, 169, 74, 0.42);

  --gold: #d4a94a;
  --gold-hi: #f2d98e;
  --gold-deep: #b57e10;
  --gold-soft: #e9cb6b;
  --gold-dim: rgba(212, 169, 74, 0.55);
  --cream: #fcfdb0;

  --ink: #e8e4d8;
  --text: #e8e4d8;
  --text-muted: #9c968a;
  --text-dim: #6b655c;

  --success: #86b86c;
  --warn: #d9a55e;
  --danger: #c36c5c;

  --radius-sm: 4px;
  --radius: 8px;
  --radius-lg: 12px;

  --font-display: 'Fraunces', 'Playfair Display', Georgia, serif;
  --font-body: 'Public Sans', system-ui, -apple-system, sans-serif;
  --font-mono: 'IBM Plex Mono', ui-monospace, 'SF Mono', Consolas, monospace;

  --container: 1200px;
  --container-narrow: 920px;
  --header-h: 72px;

  /* Module vars mapping (score-breakdown + hero-carousel) */
  --bg-surface: var(--bg);
  --bg-card: var(--surface);
  --bg-deep-m: var(--bg-deep);
  --border-amber: var(--border-strong);
  --border-cool: var(--border);
  --accent-amber: var(--gold);
  --accent-amber-hot: var(--gold-hi);
  --accent-cyan: #9cb4c7;
  --accent-gold: var(--gold-soft);
  --ff-display: var(--font-display);
  --ff-body: var(--font-body);
  --radius-m: var(--radius);
}

/* ===== BASE ===== */
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  position: relative;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(212, 169, 74, 0.04), transparent 60%),
    radial-gradient(ellipse 60% 40% at 100% 30%, rgba(181, 126, 16, 0.06), transparent 55%),
    var(--bg);
  pointer-events: none;
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.83  0 0 0 0 0.66  0 0 0 0 0.29  0 0 0 0.06 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  opacity: 0.4;
  pointer-events: none;
  mix-blend-mode: overlay;
}

/* TYPE */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.1;
  margin: 0 0 0.5em;
  color: var(--text);
  letter-spacing: -0.01em;
  font-variation-settings: "opsz" 72, "SOFT" 0;
}
h1 {
  font-size: clamp(2.6rem, 5.5vw, 4.8rem);
  font-weight: 500;
  letter-spacing: -0.025em;
  font-variation-settings: "opsz" 144, "SOFT" 30;
  line-height: 1.02;
}
h1 em { font-style: italic; color: var(--gold-hi); font-variation-settings: "opsz" 144, "SOFT" 50; }
h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 500;
  font-variation-settings: "opsz" 96, "SOFT" 30;
}
h2 em { font-style: italic; color: var(--gold-hi); }
h3 { font-size: 1.3rem; font-weight: 600; font-variation-settings: "opsz" 36; }

p { margin: 0 0 1em; color: var(--text); }
p.lede {
  font-size: 1.15rem;
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.55;
  font-variation-settings: "opsz" 36, "SOFT" 0;
  margin-bottom: 1.3em;
}
p.lede em { font-style: italic; color: var(--gold-hi); }
strong { color: var(--gold-hi); font-weight: 600; }
em { color: var(--gold-soft); font-style: italic; }
code {
  font-family: var(--font-mono);
  font-size: 0.88em;
  padding: 2px 8px;
  background: rgba(212, 169, 74, 0.08);
  border: 1px solid var(--border);
  border-radius: 3px;
  color: var(--gold-hi);
  letter-spacing: 0.02em;
}
a { color: var(--gold-hi); text-decoration: none; border-bottom: 1px solid transparent; transition: border-color .15s ease, color .15s ease; }
a:hover { color: var(--cream); border-bottom-color: var(--gold-dim); }

.container { max-width: var(--container); margin: 0 auto; padding: 0 28px; }
.container--narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 28px; }
section { padding: 88px 0; position: relative; }

/* SIGNATURE: chapter with numbered marginalia (vertical stripe + sticky num) */
.chapter { position: relative; padding: 88px 0; }
.chapter::before {
  content: "";
  position: absolute;
  left: 50%; top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--gold-dim) 15%, var(--gold-dim) 85%, transparent);
  transform: translateX(-588px);
}
.chapter-inner {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 40px;
  align-items: start;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}
.chapter-num {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 4.6rem);
  font-weight: 500;
  line-height: 0.9;
  color: var(--gold-deep);
  font-variation-settings: "opsz" 144, "SOFT" 80;
  position: sticky;
  top: calc(var(--header-h) + 40px);
  font-feature-settings: "lnum", "tnum";
  font-style: italic;
}
.chapter-num small {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--gold-deep);
  letter-spacing: 0.2em;
  margin-top: 14px;
  font-weight: 500;
  text-transform: uppercase;
  font-style: normal;
}
.chapter-body { min-width: 0; padding-top: 14px; }
.chapter-body > h2:first-child { margin-top: 0; max-width: 780px; }
.chapter-body > p,
.chapter-body > ul,
.chapter-body > ol { max-width: 760px; }

/* Eyebrow */
.eyebrow,
.label-mono {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 18px;
  font-weight: 500;
}
.hero__eyebrow {
  display: block;
  margin-bottom: 22px;
}
.label-mono--steel { color: #9cb4c7; }

/* Section numbered labels (backward-compat for existing HTML) */
.sec-num {
  display: inline-flex;
  align-items: baseline;
  gap: 14px;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 22px;
  font-weight: 500;
}
.sec-num::before {
  content: attr(data-num);
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0;
  font-variation-settings: "opsz" 72, "SOFT" 40;
  font-style: italic;
  line-height: 1;
}

/* Double rule + fleuron */
.drule { display: block; width: 100%; height: 7px; border-top: 1px solid var(--gold-dim); border-bottom: 1px solid var(--gold-dim); margin: 40px 0; }
.drule--short { width: 80px; margin: 28px 0; }
.fleuron { text-align: center; color: var(--gold-deep); font-family: var(--font-display); font-size: 1.6rem; margin: 40px 0; letter-spacing: 0.5em; padding-left: 0.5em; font-variation-settings: "opsz" 144; }
.fleuron::before { content: "❦ ▪ ❦"; }

/* HR with inline label — existing HTML pattern */
.hr-label {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--gold-deep);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin: 44px 0;
  font-weight: 500;
}
.hr-label::before,
.hr-label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
}

/* Hero HUB backward compat */
.hero-hub {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}
.hero-hub__metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.hero-bonus__huge { /* legacy alias */
  font-family: var(--font-display);
  font-size: clamp(7rem, 16vw, 12rem);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.05em;
  color: var(--gold-hi);
  font-variation-settings: "opsz" 144, "SOFT" 60;
  font-style: italic;
  margin-bottom: 10px;
}
.btn-block { width: 100%; }

@media (max-width: 1024px) {
  .hero-hub { grid-template-columns: 1fr; gap: 48px; }
  .hero-hub__metrics { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .hero-hub__metrics { grid-template-columns: 1fr; }
  .hr-label { font-size: 0.65rem; gap: 12px; margin: 32px 0; }
}

/* HEADER */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(8, 8, 6, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: var(--header-h);
  transition: background .2s ease;
}
.site-header.scrolled { background: rgba(8, 8, 6, 0.98); border-bottom-color: var(--border-strong); }
.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 24px;
}
.brand { display: flex; align-items: center; border-bottom: none; }
.brand:hover { border-bottom: none; }
.brand img { height: 32px; width: auto; }
.site-nav { display: flex; gap: 32px; align-items: center; }
.nav-link {
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  padding: 10px 0;
  position: relative;
  transition: color .15s ease;
  font-variation-settings: "opsz" 36;
  border-bottom: none;
}
.nav-link:hover { color: var(--gold-hi); border-bottom: none; }
.nav-link.is-active {
  color: var(--gold-hi);
  font-style: italic;
  font-variation-settings: "opsz" 36, "SOFT" 50;
}
.nav-link.is-active::after {
  content: "";
  position: absolute;
  bottom: 14px;
  left: 50%;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  transform: translateX(-50%);
}
.header-actions { display: flex; gap: 14px; align-items: center; }

/* BURGER + DRAWER */
.burger {
  display: none;
  width: 42px; height: 42px;
  padding: 0;
  border: 1px solid var(--border-strong);
  background: transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.burger:hover { border-color: var(--gold); background: rgba(212, 169, 74, 0.08); }
.burger span { display: block; width: 20px; height: 1.5px; background: var(--gold-hi); transition: transform .25s ease, opacity .2s ease; transform-origin: center; }
.burger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-drawer {
  position: fixed; inset: 0;
  background: var(--bg);
  z-index: 49;
  transform: translateX(100%);
  transition: transform .3s ease;
  overflow-y: auto;
  padding: calc(var(--header-h) + 40px) 28px 40px;
  display: flex;
  flex-direction: column;
}
.mobile-drawer.is-open { transform: translateX(0); }
.mobile-drawer a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 4px;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  font-variation-settings: "opsz" 72;
}
.mobile-drawer a:hover, .mobile-drawer a.is-active { color: var(--gold-hi); }
.mobile-drawer a.is-active { font-style: italic; font-variation-settings: "opsz" 72, "SOFT" 60; }
.mobile-drawer a::after {
  content: "→";
  font-family: var(--font-mono);
  font-size: 1.1rem;
  color: var(--gold-deep);
  font-weight: 400;
}
.mobile-drawer__cta {
  margin-top: 32px; padding-top: 32px;
  border-top: 1px solid var(--border-strong);
  display: flex; flex-direction: column; gap: 12px;
}
.mobile-drawer__cta .btn { width: 100%; }
body.drawer-open { overflow: hidden; }

/* Visually hidden — SEO H1 without visual presence */
.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* BUTTONS — gold coin editorial */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  min-height: 48px;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  font-variation-settings: "opsz" 36;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .18s ease;
  white-space: nowrap;
  border-bottom: 1px solid transparent;
}
.btn:hover { border-bottom-width: 1px; }
.btn-primary {
  background: linear-gradient(180deg, var(--gold-hi) 0%, var(--gold) 55%, var(--gold-deep) 100%);
  color: #1a0f00;
  border: 1px solid var(--gold-deep);
  box-shadow:
    0 1px 0 rgba(255, 247, 210, 0.4) inset,
    0 -1px 0 rgba(140, 90, 10, 0.5) inset,
    0 4px 16px rgba(181, 126, 16, 0.22);
  font-weight: 600;
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 1px 0 rgba(255, 247, 210, 0.5) inset, 0 -1px 0 rgba(140, 90, 10, 0.55) inset, 0 6px 22px rgba(181, 126, 16, 0.32);
  color: #1a0f00;
  border-bottom: 1px solid var(--gold-deep);
}
.btn-primary:active { transform: translateY(0); }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-strong);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-hi); background: rgba(212, 169, 74, 0.05); border-bottom: 1px solid var(--gold); }
.btn-lg { padding: 17px 34px; min-height: 56px; font-size: 1.08rem; }
.btn:focus-visible { outline: 2px solid var(--gold-hi); outline-offset: 3px; }

/* BREADCRUMB */
.breadcrumb {
  padding: 24px 0 0;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--text-muted);
  display: flex; align-items: center; gap: 12px;
  letter-spacing: 0.06em;
}
.breadcrumb a { color: var(--gold-deep); border-bottom: none; }
.breadcrumb a:hover { color: var(--gold-hi); }
.breadcrumb-sep { color: var(--text-dim); }
.breadcrumb-current { color: var(--gold-hi); }

/* HERO */
.hero {
  padding: 72px 0 56px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, transparent, var(--gold-dim) 20%, var(--gold-dim) 80%, transparent);
  transform: translateX(-588px);
}
.hero h1 { max-width: 980px; margin-bottom: 28px; }
.hero__deck {
  max-width: 680px;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 36px;
  line-height: 1.55;
  font-variation-settings: "opsz" 36, "SOFT" 20;
}
.hero__deck strong { color: var(--gold-hi); font-weight: 500; }
.hero__cta-row { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; margin-top: 36px; }

/* Bonus hero */
.hero-bonus {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 64px;
  align-items: center;
  margin-top: 48px;
}
.hero-bonus__big {
  font-family: var(--font-display);
  font-size: clamp(7rem, 16vw, 12rem);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.05em;
  color: var(--gold-hi);
  font-variation-settings: "opsz" 144, "SOFT" 60;
  margin-bottom: 10px;
  font-style: italic;
}
.hero-bonus__sub { font-family: var(--font-mono); font-size: 0.82rem; color: var(--text-muted); letter-spacing: 0.14em; text-transform: uppercase; margin-top: 10px; }
.hero-bonus__plus {
  margin-top: 32px; padding-top: 32px;
  border-top: 1px solid var(--border);
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 500;
  color: var(--gold-hi);
  font-style: italic;
  font-variation-settings: "opsz" 72, "SOFT" 40;
}
.hero-bonus__plus small { display: block; font-size: 0.38em; font-family: var(--font-mono); font-style: normal; font-variation-settings: "opsz" 36; color: var(--text-muted); font-weight: 500; margin-top: 8px; letter-spacing: 0.12em; text-transform: uppercase; }
.hero-bonus__codes { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }
.code-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 16px;
  background: rgba(212, 169, 74, 0.08);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  font-family: var(--font-mono);
  font-size: 0.88rem;
  color: var(--gold-hi);
  letter-spacing: 0.06em;
}
.code-badge span { color: var(--gold-deep); font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; }
.hero-bonus__conditions {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 28px;
  position: relative;
}
.hero-bonus__conditions::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--gold) 20%, var(--gold-hi) 50%, var(--gold) 80%, transparent); }
.hero-bonus__stat { display: flex; flex-direction: column; gap: 8px; }
.hero-bonus__stat-label { font-family: var(--font-mono); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.16em; color: var(--text-muted); }
.hero-bonus__stat-value {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1;
  font-variation-settings: "opsz" 48;
}
.hero-bonus__stat-value--warn { color: var(--warn); }

/* Games hero */
.hero-games { display: flex; flex-direction: column; gap: 48px; }
.kpi-strip {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--border-strong);
  border-bottom: 1px solid var(--border-strong);
  padding: 32px 0;
  position: relative;
  margin-top: 32px;
}
.kpi-strip::before, .kpi-strip::after { content: ""; position: absolute; left: 0; right: 0; height: 1px; background: var(--border); }
.kpi-strip::before { top: -4px; }
.kpi-strip::after { bottom: -4px; }
.kpi { padding: 0 24px; border-left: 1px solid var(--border); }
.kpi:first-child { border-left: none; padding-left: 0; }
.kpi__num {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 500;
  color: var(--gold-hi);
  line-height: 1;
  letter-spacing: -0.02em;
  font-variation-settings: "opsz" 144, "SOFT" 40;
  font-style: italic;
}
.kpi__label { font-family: var(--font-mono); font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.16em; color: var(--text-muted); margin-top: 12px; }
.hero-featured { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.featured-slot {
  aspect-ratio: 498 / 286;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  border: 1px solid var(--border);
  margin: 0;
}
.featured-slot img { width: 100%; height: 100%; object-fit: cover; display: block; }
.featured-slot__caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 14px 16px;
  background: linear-gradient(180deg, transparent, rgba(8, 8, 6, 0.94));
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--gold-hi);
  font-style: italic;
  font-variation-settings: "opsz" 36, "SOFT" 40;
  margin: 0;
}

/* Payments hero */
.hero-payments { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; margin-top: 40px; }
.hero-payments__summary {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  position: relative;
}
.hero-payments__summary::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--gold) 20%, var(--gold-hi) 50%, var(--gold) 80%, transparent); }
.hero-payments__list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 14px 24px; }
.hero-payments__list li {
  font-family: var(--font-display);
  font-size: 1rem;
  font-variation-settings: "opsz" 36;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-payments__list li::before { content: "◇"; color: var(--gold); font-size: 0.9rem; }

/* METRIC CARDS */
.metric-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin: 32px 0; }
.metric-grid--2x2 { grid-template-columns: repeat(2, 1fr); }
.metric-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  text-decoration: none;
  transition: border-color .2s ease, background .2s ease;
  border-bottom: 1px solid var(--border);
}
.metric-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--gold-dim) 50%, transparent); }
.metric-card__label { font-family: var(--font-mono); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.18em; color: var(--gold-deep); }
.metric-card__value {
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 500;
  color: var(--gold-hi);
  line-height: 1;
  letter-spacing: -0.01em;
  font-variation-settings: "opsz" 72, "SOFT" 30;
}
.metric-card__sub { font-size: 0.9rem; color: var(--text-muted); line-height: 1.5; font-family: var(--font-body); }
a.metric-card:hover { border-color: var(--gold-dim); background: var(--surface-elev); color: var(--text); }
a.metric-card::after { content: "→"; position: absolute; top: 26px; right: 24px; color: var(--gold-deep); font-family: var(--font-mono); font-size: 1.1rem; transition: transform .2s ease, color .2s ease; }
a.metric-card:hover::after { color: var(--gold-hi); transform: translateX(4px); }

/* PROS & CONS */
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 32px; }
.pros-cons__col { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; position: relative; }
.pros-cons__col--pro { border-left: 3px solid var(--success); }
.pros-cons__col--con { border-left: 3px solid var(--warn); }
.pros-cons__col h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  font-style: italic;
  font-variation-settings: "opsz" 72, "SOFT" 50;
  margin-bottom: 20px;
}
.pros-cons__col--pro h3 { color: var(--success); }
.pros-cons__col--con h3 { color: var(--warn); }
.pros-cons__col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.pros-cons__col li { display: flex; gap: 14px; padding: 14px 0; border-top: 1px solid var(--border); font-size: 0.96rem; line-height: 1.55; }
.pros-cons__col li:first-child { border-top: none; padding-top: 0; }
.pros-cons__col li::before { flex-shrink: 0; font-family: var(--font-display); font-size: 1.2rem; line-height: 1.3; font-style: italic; font-variation-settings: "opsz" 36, "SOFT" 60; font-weight: 600; }
.pros-cons__col--pro li::before { content: "+"; color: var(--success); }
.pros-cons__col--con li::before { content: "−"; color: var(--warn); }
.pros-cons__col li strong { display: block; margin-bottom: 4px; color: var(--gold-hi); font-family: var(--font-display); font-weight: 500; font-variation-settings: "opsz" 36; }
.pros-cons__col li span { color: var(--text-muted); font-size: 0.9rem; }

/* VERDICT */
.verdict {
  padding: 104px 0;
  text-align: center;
  background: radial-gradient(ellipse at 50% 30%, rgba(212, 169, 74, 0.07), transparent 60%), var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.verdict .fleuron { margin-bottom: 24px; }
.verdict__rating {
  font-family: var(--font-display);
  font-size: clamp(7rem, 16vw, 11rem);
  font-weight: 500;
  line-height: 1;
  background: linear-gradient(180deg, var(--gold-hi), var(--gold) 50%, var(--gold-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  margin: 12px 0 6px;
  letter-spacing: -0.04em;
  font-variation-settings: "opsz" 144, "SOFT" 40;
  font-style: italic;
}
.verdict__rating-max { font-size: 0.38em; color: var(--text-dim); font-weight: 400; font-style: italic; font-variation-settings: "opsz" 96, "SOFT" 50; -webkit-text-fill-color: var(--text-dim); }
.verdict__rating-label { font-family: var(--font-mono); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.22em; color: var(--gold-deep); margin-bottom: 36px; }
.verdict h2 { max-width: 720px; margin: 0 auto 28px; font-style: italic; font-variation-settings: "opsz" 96, "SOFT" 40; }
.verdict__text {
  max-width: 680px; margin: 0 auto 16px;
  color: var(--text-muted);
  font-family: var(--font-display);
  font-size: 1.08rem;
  line-height: 1.7;
  font-weight: 400;
  font-variation-settings: "opsz" 36;
}
.verdict__text strong { color: var(--text); }
.verdict__cta { margin-top: 32px; }

/* BONUS PAGE math/strategy */
.math-callout {
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 32px 36px;
  margin: 28px 0;
  max-width: 760px;
}
.math-callout h3 { color: var(--gold-hi); font-family: var(--font-display); font-size: 1.25rem; font-weight: 500; font-style: italic; font-variation-settings: "opsz" 48, "SOFT" 50; margin-bottom: 14px; }
.math-callout p { margin: 0 0 10px; }
.math-callout p:last-child { margin: 0; }
.math-callout .equation { display: inline-block; padding: 3px 10px; background: rgba(212, 169, 74, 0.12); border: 1px solid var(--border); border-radius: 3px; font-family: var(--font-mono); font-size: 0.92em; color: var(--gold-hi); letter-spacing: 0.02em; margin: 2px; }

.bonus-strategy { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 28px 0; }
.strategy-step { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 30px 26px; }
.strategy-step__num {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 1;
  color: var(--gold);
  margin-bottom: 14px;
  letter-spacing: -0.04em;
  font-variation-settings: "opsz" 144, "SOFT" 60;
  font-style: italic;
}
.strategy-step h3 { font-size: 1.1rem; margin-bottom: 10px; color: var(--gold-hi); font-variation-settings: "opsz" 36; font-style: italic; font-weight: 500; }
.strategy-step p { font-size: 0.92rem; color: var(--text-muted); margin: 0; line-height: 1.55; }

/* TABLES */
.data-table-wrap { margin: 28px 0; overflow-x: auto; }
.data-table { width: 100%; border-collapse: collapse; font-family: var(--font-body); font-size: 0.94rem; min-width: 560px; }
.data-table thead th {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold-deep);
  text-align: left;
  padding: 16px 20px;
  background: rgba(212, 169, 74, 0.05);
  border-top: 1px solid var(--border-strong);
  border-bottom: 1px solid var(--border-strong);
}
.data-table tbody td { padding: 16px 20px; border-bottom: 1px solid var(--border); color: var(--text); vertical-align: top; }
.data-table tbody tr:last-child td { border-bottom: 1px solid var(--border-strong); }
.data-table tbody tr:hover { background: rgba(212, 169, 74, 0.03); }
.data-table tbody td:first-child { color: var(--gold-hi); font-family: var(--font-display); font-weight: 500; font-variation-settings: "opsz" 36; }
.data-table strong { color: var(--gold-hi); }

/* GAMES */
.category-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin: 32px 0; }
.cat-tile { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px 28px; display: flex; flex-direction: column; gap: 10px; position: relative; }
.cat-tile::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--gold-dim) 50%, transparent); }
.cat-tile__count {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 1;
  color: var(--gold-hi);
  letter-spacing: -0.03em;
  font-variation-settings: "opsz" 144, "SOFT" 40;
  font-style: italic;
}
.cat-tile__label { font-family: var(--font-mono); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.16em; color: var(--text-muted); }
.cat-tile h3 { margin: 14px 0 8px; font-size: 1.2rem; font-style: italic; font-weight: 500; font-variation-settings: "opsz" 48, "SOFT" 50; color: var(--gold-hi); }
.cat-tile p { font-size: 0.94rem; color: var(--text-muted); margin: 0; line-height: 1.6; }
.cat-tile__providers { margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--border); font-family: var(--font-mono); font-size: 0.72rem; color: var(--text-dim); line-height: 1.7; letter-spacing: 0.04em; }

.slot-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin: 32px 0; }
.slot-tile { aspect-ratio: 498 / 286; border-radius: var(--radius); overflow: hidden; position: relative; background: var(--surface); border: 1px solid var(--border); transition: border-color .2s ease, transform .2s ease; margin: 0; }
.slot-tile:hover { border-color: var(--gold-dim); transform: translateY(-2px); }
.slot-tile img { width: 100%; height: 100%; object-fit: cover; display: block; }
.slot-tile__cap { position: absolute; bottom: 0; left: 0; right: 0; padding: 10px 14px; background: linear-gradient(180deg, transparent, rgba(8, 8, 6, 0.96)); font-family: var(--font-display); font-size: 0.85rem; font-style: italic; color: var(--gold-hi); font-variation-settings: "opsz" 36, "SOFT" 40; pointer-events: none; margin: 0; }

.provider-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin: 28px 0; }
.provider-cell { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px 20px; text-align: center; }
.provider-cell__name { font-family: var(--font-display); font-size: 1.15rem; font-weight: 500; color: var(--gold-hi); margin-bottom: 8px; font-style: italic; font-variation-settings: "opsz" 36, "SOFT" 50; }
.provider-cell__note { font-family: var(--font-mono); font-size: 0.74rem; color: var(--text-muted); letter-spacing: 0.04em; }

.jetons-block {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 44px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-top: 32px;
  position: relative;
}
.jetons-block::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--gold) 20%, var(--gold-hi) 50%, var(--gold) 80%, transparent); }
.jetons-rate { font-family: var(--font-display); font-size: clamp(2.6rem, 4.2vw, 3.6rem); font-weight: 500; text-align: center; padding: 40px 28px; background: var(--bg-alt); border: 1px dashed var(--gold-dim); border-radius: var(--radius-sm); color: var(--gold-hi); letter-spacing: -0.02em; line-height: 1.1; font-variation-settings: "opsz" 144, "SOFT" 40; font-style: italic; }
.jetons-rate small { display: block; font-size: 0.36em; font-family: var(--font-mono); font-style: normal; font-weight: 500; color: var(--text-muted); letter-spacing: 0.14em; text-transform: uppercase; margin-top: 14px; }

.jackpot-tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin: 28px 0; }
.tier-cell { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 22px; text-align: center; position: relative; }
.tier-cell--mega { border-color: var(--border-strong); }
.tier-cell--mega::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--gold) 20%, var(--gold-hi) 50%, var(--gold) 80%, transparent); }
.tier-cell__name { font-family: var(--font-display); font-size: 1.45rem; font-weight: 500; color: var(--gold-hi); margin-bottom: 10px; font-style: italic; font-variation-settings: "opsz" 72, "SOFT" 50; }
.tier-cell__freq { font-family: var(--font-mono); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.16em; color: var(--gold-deep); margin-bottom: 14px; }
.tier-cell__desc { font-size: 0.9rem; color: var(--text-muted); line-height: 1.55; font-family: var(--font-body); }

/* PAYMENTS */
.payment-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; margin: 28px 0; }
.payment-cell { aspect-ratio: 2.2 / 1; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; padding: 10px 14px; overflow: hidden; }
.payment-cell img { max-height: 28px; max-width: 100%; width: auto; height: auto; object-fit: contain; }

.crypto-callout {
  background: radial-gradient(ellipse 60% 50% at 0% 0%, rgba(212, 169, 74, 0.06), transparent 60%), var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 40px;
  margin: 32px 0;
  position: relative;
  max-width: 820px;
}
.crypto-callout h3 { color: var(--gold-hi); font-style: italic; font-size: 1.4rem; font-weight: 500; font-variation-settings: "opsz" 72, "SOFT" 50; margin-bottom: 16px; }
.crypto-callout .crypto-list { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 22px; }

.kyc-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin: 28px 0; counter-reset: kyc-step; }
.kyc-step { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 24px; counter-increment: kyc-step; position: relative; }
.kyc-step::before { content: counter(kyc-step, decimal-leading-zero); font-family: var(--font-display); font-size: 2.4rem; font-weight: 500; color: var(--gold-deep); display: block; margin-bottom: 12px; letter-spacing: -0.03em; font-variation-settings: "opsz" 96, "SOFT" 60; font-style: italic; }
.kyc-step h3 { font-size: 1rem; margin-bottom: 10px; color: var(--gold-hi); font-style: italic; font-weight: 500; font-variation-settings: "opsz" 36, "SOFT" 40; }
.kyc-step p { font-size: 0.88rem; color: var(--text-muted); margin: 0; line-height: 1.55; }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.faq-item.active { border-color: var(--border-strong); }
.faq-q { width: 100%; padding: 22px 28px; background: transparent; border: none; color: var(--text); font-family: var(--font-display); font-size: 1.1rem; font-weight: 500; text-align: left; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 18px; min-height: 64px; font-variation-settings: "opsz" 36; transition: color .15s ease; }
.faq-q:hover { color: var(--gold-hi); }
.faq-q::after { content: "+"; font-family: var(--font-mono); font-size: 1.5rem; color: var(--gold-deep); transition: transform .2s ease; flex-shrink: 0; font-weight: 400; }
.faq-item.active .faq-q::after { transform: rotate(45deg); color: var(--gold-hi); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a__inner { padding: 0 28px 26px; color: var(--text-muted); line-height: 1.7; font-size: 0.98rem; }
.faq-a__inner p { margin: 0 0 12px; color: var(--text-muted); }
.faq-a__inner p:last-child { margin: 0; }

/* RELATED */
.related-pages { padding: 88px 0; border-top: 1px solid var(--border); background: var(--bg-alt); }
.related-pages h2 { margin-bottom: 36px; font-style: italic; font-variation-settings: "opsz" 96, "SOFT" 40; }
.related-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.related-card { display: block; padding: 36px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); text-decoration: none; color: var(--text); transition: border-color .2s ease, background .2s ease; position: relative; border-bottom: 1px solid var(--border); }
.related-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--gold-dim) 50%, transparent); }
.related-card::after { content: "→"; position: absolute; top: 36px; right: 36px; color: var(--gold-deep); font-family: var(--font-mono); font-size: 1.3rem; transition: transform .2s ease, color .2s ease; }
.related-card:hover { border-color: var(--gold-dim); background: var(--surface-elev); color: var(--text); }
.related-card:hover::after { color: var(--gold-hi); transform: translateX(5px); }
.related-card__label { font-family: var(--font-mono); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.18em; color: var(--gold-deep); margin-bottom: 14px; }
.related-card h3 { font-size: 1.3rem; margin-bottom: 10px; color: var(--gold-hi); font-style: italic; font-weight: 500; font-variation-settings: "opsz" 48, "SOFT" 40; }
.related-card p { font-size: 0.94rem; color: var(--text-muted); margin: 0; line-height: 1.6; }

/* FOOTER */
.site-footer { background: var(--bg-deep); border-top: 1px solid var(--border); padding: 72px 0 32px; position: relative; }
.site-footer::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 7px; border-top: 1px solid var(--gold-dim); border-bottom: 1px solid var(--gold-dim); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 56px; margin-bottom: 56px; }
.footer-brand img { height: 30px; margin-bottom: 18px; }
.footer-brand p { color: var(--text-muted); font-family: var(--font-display); font-size: 0.98rem; font-style: italic; margin-bottom: 20px; line-height: 1.6; font-variation-settings: "opsz" 36, "SOFT" 30; max-width: 360px; }
.footer-age { display: inline-block; font-family: var(--font-mono); font-size: 0.72rem; color: var(--warn); border: 1px solid var(--warn); padding: 7px 14px; border-radius: 3px; letter-spacing: 0.16em; text-transform: uppercase; }
.site-footer h4 { font-family: var(--font-mono); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--gold-deep); margin-bottom: 22px; font-weight: 500; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { margin-bottom: 11px; }
.site-footer ul a { font-family: var(--font-body); font-size: 0.94rem; color: var(--text-muted); border-bottom: none; }
.site-footer ul a:hover { color: var(--gold-hi); border-bottom: none; }
.footer-bottom { padding-top: 28px; border-top: 1px solid var(--border); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px; font-family: var(--font-mono); font-size: 0.76rem; color: var(--text-dim); letter-spacing: 0.06em; }

/* REVEAL */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity .5s ease, transform .5s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

.slot-tile img, .featured-slot img, .payment-cell img,
.slot-grid, .payment-grid, .category-grid, .jackpot-tiers,
.provider-grid, .kyc-steps, .bonus-strategy,
.metric-grid, .hero-featured, .hero-payments__summary,
.hero-bonus__conditions { opacity: 1 !important; visibility: visible !important; }
.slot-grid.reveal, .payment-grid.reveal, .metric-grid.reveal { opacity: 1 !important; transform: none !important; }

/* RESPONSIVE */
@media (max-width: 1260px) {
  .chapter::before, .hero::before { transform: translateX(-50vw) translateX(40px); }
}
@media (max-width: 1024px) {
  .chapter::before, .hero::before { display: none; }
  .chapter-inner { grid-template-columns: 1fr; gap: 16px; }
  .chapter-num { position: static; font-size: 2.4rem; display: flex; align-items: baseline; gap: 14px; }
  .chapter-num small { margin-top: 0; margin-left: 0; }
  .hero-bonus, .hero-payments, .jetons-block { grid-template-columns: 1fr; gap: 40px; }
  .slot-grid { grid-template-columns: repeat(3, 1fr); }
  .provider-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .metric-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  body { font-size: 16px; }
  section, .chapter { padding: 64px 0; }
  .hero { padding: 52px 0 40px; }
  .container, .container--narrow, .chapter-inner { padding: 0 20px; }
  .site-header { height: 60px; }
  .header-inner { padding: 0 20px; gap: 12px; }
  .site-nav { display: none; }
  .brand img { height: 26px; }
  .header-actions .btn-ghost { display: none; }
  .header-actions .btn { padding: 11px 18px; font-size: 0.88rem; min-height: 42px; }
  .burger { display: inline-flex; }
  .nav-link.is-active::after { display: none; }
  .pros-cons { grid-template-columns: 1fr; gap: 16px; }
  .pros-cons__col { padding: 26px; }
  .bonus-strategy { grid-template-columns: 1fr; gap: 14px; }
  .category-grid { grid-template-columns: 1fr; gap: 16px; }
  .slot-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .provider-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .jackpot-tiers { grid-template-columns: 1fr; }
  .payment-grid { grid-template-columns: repeat(4, 1fr); gap: 8px; }
  .payment-cell { padding: 8px 10px; }
  .payment-cell img { max-height: 22px; }
  .kyc-steps { grid-template-columns: 1fr 1fr; gap: 12px; }
  .kyc-step { padding: 22px 20px; }
  .data-table { font-size: 0.88rem; }
  .data-table thead th, .data-table tbody td { padding: 12px 14px; }
  .related-grid { grid-template-columns: 1fr; gap: 14px; }
  .related-card { padding: 28px; }
  .related-card::after { top: 28px; right: 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; margin-bottom: 40px; }
  .footer-bottom { flex-direction: column; }
  .verdict { padding: 72px 0; }
  .hero__cta-row .btn { flex: 1 1 auto; }
  .kpi-strip { grid-template-columns: 1fr; padding: 24px 0; }
  .kpi { border-left: none; padding: 16px 0; border-top: 1px solid var(--border); }
  .kpi:first-child { border-top: none; padding-top: 0; }
  .hero-featured { grid-template-columns: 1fr; gap: 12px; }
  .hero-bonus__conditions { grid-template-columns: 1fr; gap: 18px; padding: 28px; }
  .hero-payments__list { grid-template-columns: 1fr; }
  .metric-grid { gap: 12px; }
  .jetons-block { padding: 28px; }
  .jetons-rate { padding: 28px 20px; font-size: 2rem; }
}
@media (max-width: 420px) {
  .payment-grid { grid-template-columns: repeat(3, 1fr); gap: 6px; }
  .payment-cell img { max-height: 20px; }
  .slot-grid { gap: 8px; }
  .kyc-steps { grid-template-columns: 1fr; }
  .metric-grid { grid-template-columns: 1fr; }
  h1 { font-size: 2.2rem; }
  .hero-bonus__big { font-size: 5.5rem; }
}

/* =============================================================
   SPECIAL EFFECTS — richness layer
   ============================================================= */

/* ===== Shimmer on gold top-borders (cards + containers) ===== */
@keyframes goldShimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.metric-card::before,
.hero-bonus__conditions::before,
.hero-payments__summary::before,
.jetons-block::before,
.tier-cell--mega::before,
.cat-tile::before,
.related-card::before {
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--gold-dim) 20%,
    var(--gold-hi) 45%,
    var(--cream) 50%,
    var(--gold-hi) 55%,
    var(--gold-dim) 80%,
    transparent 100%
  );
  background-size: 200% 100%;
  animation: goldShimmer 8s ease-in-out infinite;
  opacity: 0.7;
}

.metric-card::before { animation-delay: 0s; }
.hero-bonus__conditions::before { animation-delay: 1.5s; }
.hero-payments__summary::before { animation-delay: 2.5s; }
.jetons-block::before { animation-delay: 3s; }
.tier-cell--mega::before { animation-delay: 0.5s; }
.cat-tile::before { animation-delay: 2s; animation-duration: 10s; }
.related-card::before { animation-delay: 1s; }

/* ===== Hover-lift on cards — sophisticated ===== */
.metric-card,
.cat-tile,
.strategy-step,
.kyc-step,
.provider-cell,
.tier-cell,
.pros-cons__col,
.math-callout,
.crypto-callout,
.hero-bonus__conditions,
.hero-payments__summary,
.jetons-block {
  transition: transform .35s cubic-bezier(.2, .8, .2, 1),
              border-color .25s ease,
              background .25s ease,
              box-shadow .35s ease;
  will-change: transform;
}

.metric-card:hover,
.cat-tile:hover,
.strategy-step:hover,
.kyc-step:hover,
.provider-cell:hover,
.tier-cell:hover,
.pros-cons__col:hover {
  transform: translateY(-3px);
  border-color: var(--gold-dim);
  box-shadow:
    0 12px 32px -12px rgba(181, 126, 16, 0.28),
    0 1px 0 rgba(242, 217, 142, 0.08) inset;
}

a.metric-card:hover,
.related-card:hover {
  transform: translateY(-3px);
  box-shadow:
    0 14px 36px -14px rgba(181, 126, 16, 0.32),
    0 1px 0 rgba(242, 217, 142, 0.1) inset;
}

/* ===== Slot tiles — richer hover ===== */
.slot-tile,
.featured-slot {
  transition: transform .4s cubic-bezier(.2, .8, .2, 1),
              border-color .25s ease,
              box-shadow .4s ease;
}
.slot-tile:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 16px 40px -16px rgba(181, 126, 16, 0.45);
}
.slot-tile img,
.featured-slot img {
  transition: transform .8s cubic-bezier(.2, .8, .2, 1), filter .4s ease;
}
.slot-tile:hover img,
.featured-slot:hover img {
  transform: scale(1.08);
  filter: brightness(1.08) saturate(1.1);
}

/* ===== Gradient sheen on primary buttons (light-sweep) ===== */
.btn-primary {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.btn-primary::before {
  content: "";
  position: absolute;
  top: 0; left: -150%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 247, 220, 0) 30%,
    rgba(255, 247, 220, 0.55) 50%,
    rgba(255, 247, 220, 0) 70%,
    transparent 100%
  );
  transform: skewX(-22deg);
  transition: left .75s cubic-bezier(.2, .7, .3, 1);
  pointer-events: none;
  z-index: 1;
}
.btn-primary:hover::before { left: 140%; }
.btn-primary > * { position: relative; z-index: 2; }

/* ===== Animated underline on content links ===== */
main a:not(.btn):not(.nav-link):not(.brand):not(.metric-card):not(.related-card):not(.breadcrumb a):not(.faq-q):not(.cat-tile a):not([class]) {
  position: relative;
  border-bottom: none;
  background-image: linear-gradient(90deg, var(--gold-dim), var(--gold-dim));
  background-size: 0% 1px;
  background-repeat: no-repeat;
  background-position: 0 100%;
  padding-bottom: 2px;
  transition: background-size .3s ease, color .15s ease;
}
main a:not(.btn):not(.nav-link):not(.brand):not(.metric-card):not(.related-card):not(.breadcrumb a):not(.faq-q):not(.cat-tile a):not([class]):hover {
  background-size: 100% 1px;
  color: var(--cream);
}

/* Prose inline links — stronger underline */
.chapter-body p a,
main p a,
.hero__deck a,
.verdict__text a {
  color: var(--gold-hi);
  background-image: linear-gradient(90deg, var(--gold-hi), var(--gold-hi));
  background-size: 100% 1px;
  background-repeat: no-repeat;
  background-position: 0 100%;
  padding-bottom: 2px;
  transition: background-size .3s ease, color .2s ease, background-position .3s ease;
  border-bottom: none;
}
.chapter-body p a:hover,
main p a:hover,
.hero__deck a:hover,
.verdict__text a:hover {
  color: var(--cream);
  background-image: linear-gradient(90deg, var(--cream), var(--cream));
}

/* ===== Letter-spacing expand on H2 (subtle breathing) ===== */
.reveal.visible h2,
section h2 {
  transition: letter-spacing .8s ease-out;
}
.reveal h2 { letter-spacing: -0.03em; }
.reveal.visible h2 { letter-spacing: -0.01em; }

/* ===== Hero — gold dust particles via SVG ===== */
.hero {
  isolation: isolate;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1400 800'><g fill='%23f2d98e' opacity='0.35'><circle cx='80' cy='120' r='1.2'/><circle cx='340' cy='60' r='0.8'/><circle cx='520' cy='180' r='1.5'/><circle cx='780' cy='90' r='0.9'/><circle cx='1020' cy='210' r='1.1'/><circle cx='1240' cy='150' r='0.7'/><circle cx='180' cy='280' r='0.9'/><circle cx='460' cy='380' r='1.3'/><circle cx='720' cy='450' r='0.8'/><circle cx='960' cy='340' r='1'/><circle cx='1180' cy='420' r='1.2'/><circle cx='120' cy='520' r='0.7'/><circle cx='380' cy='560' r='1.4'/><circle cx='620' cy='640' r='0.9'/><circle cx='860' cy='580' r='1.1'/><circle cx='1100' cy='700' r='0.8'/><circle cx='1340' cy='620' r='1'/><circle cx='40' cy='380' r='0.6'/><circle cx='260' cy='720' r='1'/></g></svg>");
  background-size: 1400px 800px;
  background-repeat: repeat;
  pointer-events: none;
  z-index: -1;
  animation: dustDrift 60s linear infinite;
  opacity: 0.6;
}
@keyframes dustDrift {
  0%   { transform: translate(0, 0); }
  50%  { transform: translate(-20px, -30px); }
  100% { transform: translate(0, 0); }
}

/* ===== Chapter num — subtle pulse on gold-deep ===== */
.chapter-num {
  position: sticky;
  top: calc(var(--header-h) + 40px);
  transition: color .6s ease;
}
.chapter:hover .chapter-num {
  color: var(--gold);
  text-shadow: 0 0 30px rgba(212, 169, 74, 0.2);
}

/* ===== Verdict rating — soft glow pulse ===== */
@keyframes verdictGlow {
  0%, 100% { filter: drop-shadow(0 0 20px rgba(242, 217, 142, 0.15)); }
  50% { filter: drop-shadow(0 0 40px rgba(242, 217, 142, 0.35)); }
}
.verdict__rating {
  animation: verdictGlow 4s ease-in-out infinite;
}

/* ===== Hero bonus big "100%" — same soft glow ===== */
.hero-bonus__big {
  animation: verdictGlow 5s ease-in-out infinite;
  animation-delay: 1s;
}

/* ===== KPI numbers — staggered reveal scale ===== */
.kpi__num {
  transition: transform .6s cubic-bezier(.2, .8, .2, 1), color .4s ease;
  display: inline-block;
}
.kpi:hover .kpi__num {
  transform: scale(1.05);
  color: var(--cream);
}

/* ===== Tier cells — mega gets premium pulse ===== */
@keyframes megaPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212, 169, 74, 0); }
  50% { box-shadow: 0 0 24px 2px rgba(212, 169, 74, 0.12); }
}
.tier-cell--mega {
  animation: megaPulse 3.5s ease-in-out infinite;
}
.tier-cell--mega:hover {
  animation: none;
  box-shadow: 0 0 32px 4px rgba(212, 169, 74, 0.25);
}

/* ===== Payment cells — gentle glow on hover ===== */
.payment-cell {
  transition: border-color .25s ease, background .25s ease, transform .25s ease, box-shadow .3s ease;
}
.payment-cell:hover {
  border-color: var(--gold-dim);
  background: var(--surface-elev);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px -12px rgba(212, 169, 74, 0.3);
}

/* ===== Code badges — subtle pulse on hover ===== */
.code-badge {
  transition: border-color .25s ease, background .25s ease, transform .2s ease;
}
.code-badge:hover {
  border-color: var(--gold);
  background: rgba(212, 169, 74, 0.15);
  transform: translateY(-1px);
}

/* ===== Strategy step numbers — dramatic italic swing on hover ===== */
.strategy-step__num,
.kyc-step::before {
  transition: transform .4s cubic-bezier(.2, .8, .2, 1), color .3s ease;
  display: inline-block;
  transform-origin: left center;
}
.strategy-step:hover .strategy-step__num {
  color: var(--gold-hi);
  transform: translateX(2px) scale(1.05);
}
.kyc-step:hover::before {
  color: var(--gold);
  transform: translateX(2px);
}

/* ===== FAQ — expand animation polish ===== */
.faq-item {
  transition: border-color .3s ease, background .3s ease;
}
.faq-item.active {
  background: var(--surface-elev);
  box-shadow: 0 4px 24px -12px rgba(212, 169, 74, 0.2);
}
.faq-q::after {
  transition: transform .4s cubic-bezier(.2, .8, .2, 1), color .2s ease;
}

/* ===== Section dividers — noble drule animated ===== */
.drule {
  position: relative;
  overflow: hidden;
}
.drule::before {
  content: "";
  position: absolute;
  top: 0; left: -100%;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(242, 217, 142, 0.5), transparent);
  animation: druleSweep 6s ease-in-out infinite;
}
@keyframes druleSweep {
  0%, 100% { left: -40%; }
  50% { left: 100%; }
}

/* ===== Fleuron — gentle rotate/color ===== */
.fleuron::before {
  display: inline-block;
  transition: transform .8s ease;
}
.fleuron:hover::before {
  transform: rotate(180deg);
}

/* ===== Site header logo — subtle shine ===== */
.brand img {
  transition: filter .3s ease;
}
.brand:hover img {
  filter: brightness(1.08) drop-shadow(0 0 8px rgba(212, 169, 74, 0.3));
}

/* ===== Nav active dot — breathing ===== */
@keyframes navDotBreath {
  0%, 100% { transform: translateX(-50%) scale(1); opacity: 1; }
  50% { transform: translateX(-50%) scale(1.3); opacity: 0.7; }
}
.nav-link.is-active::after {
  animation: navDotBreath 2.4s ease-in-out infinite;
}

/* ===== Reveal animations — more polished ===== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity .7s cubic-bezier(.2, .8, .2, 1),
    transform .7s cubic-bezier(.2, .8, .2, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger child reveals inside grids */
.metric-grid.reveal.visible .metric-card,
.category-grid.reveal.visible .cat-tile,
.bonus-strategy.reveal.visible .strategy-step,
.kyc-steps.reveal.visible .kyc-step,
.jackpot-tiers.reveal.visible .tier-cell,
.provider-grid.reveal.visible .provider-cell,
.slot-grid.reveal.visible .slot-tile,
.hero-featured.reveal.visible .featured-slot {
  animation: cardFadeUp .7s cubic-bezier(.2, .8, .2, 1) both;
}
@keyframes cardFadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}
.metric-grid.reveal.visible .metric-card:nth-child(1),
.category-grid.reveal.visible .cat-tile:nth-child(1),
.bonus-strategy.reveal.visible .strategy-step:nth-child(1),
.kyc-steps.reveal.visible .kyc-step:nth-child(1),
.provider-grid.reveal.visible .provider-cell:nth-child(1),
.slot-grid.reveal.visible .slot-tile:nth-child(1),
.hero-featured.reveal.visible .featured-slot:nth-child(1),
.jackpot-tiers.reveal.visible .tier-cell:nth-child(1) { animation-delay: 0ms; }
.metric-grid.reveal.visible .metric-card:nth-child(2),
.category-grid.reveal.visible .cat-tile:nth-child(2),
.bonus-strategy.reveal.visible .strategy-step:nth-child(2),
.kyc-steps.reveal.visible .kyc-step:nth-child(2),
.provider-grid.reveal.visible .provider-cell:nth-child(2),
.slot-grid.reveal.visible .slot-tile:nth-child(2),
.hero-featured.reveal.visible .featured-slot:nth-child(2),
.jackpot-tiers.reveal.visible .tier-cell:nth-child(2) { animation-delay: 80ms; }
.metric-grid.reveal.visible .metric-card:nth-child(3),
.category-grid.reveal.visible .cat-tile:nth-child(3),
.bonus-strategy.reveal.visible .strategy-step:nth-child(3),
.kyc-steps.reveal.visible .kyc-step:nth-child(3),
.provider-grid.reveal.visible .provider-cell:nth-child(3),
.slot-grid.reveal.visible .slot-tile:nth-child(3),
.hero-featured.reveal.visible .featured-slot:nth-child(3),
.jackpot-tiers.reveal.visible .tier-cell:nth-child(3) { animation-delay: 160ms; }
.metric-grid.reveal.visible .metric-card:nth-child(4),
.category-grid.reveal.visible .cat-tile:nth-child(4),
.kyc-steps.reveal.visible .kyc-step:nth-child(4),
.provider-grid.reveal.visible .provider-cell:nth-child(4),
.slot-grid.reveal.visible .slot-tile:nth-child(4) { animation-delay: 240ms; }
.slot-grid.reveal.visible .slot-tile:nth-child(5),
.provider-grid.reveal.visible .provider-cell:nth-child(5) { animation-delay: 320ms; }
.slot-grid.reveal.visible .slot-tile:nth-child(6),
.provider-grid.reveal.visible .provider-cell:nth-child(6) { animation-delay: 400ms; }
.slot-grid.reveal.visible .slot-tile:nth-child(7) { animation-delay: 480ms; }
.slot-grid.reveal.visible .slot-tile:nth-child(8) { animation-delay: 560ms; }

/* ===== Reduced-motion accessibility ===== */
@media (prefers-reduced-motion: reduce) {
  .metric-card::before,
  .hero-bonus__conditions::before,
  .hero-payments__summary::before,
  .jetons-block::before,
  .tier-cell--mega::before,
  .cat-tile::before,
  .related-card::before,
  .drule::before,
  .verdict__rating,
  .hero-bonus__big,
  .tier-cell--mega,
  .nav-link.is-active::after,
  .hero::after {
    animation: none !important;
  }
  .slot-grid.reveal.visible .slot-tile,
  .metric-grid.reveal.visible .metric-card,
  .hero-featured.reveal.visible .featured-slot,
  .category-grid.reveal.visible .cat-tile,
  .bonus-strategy.reveal.visible .strategy-step,
  .kyc-steps.reveal.visible .kyc-step,
  .jackpot-tiers.reveal.visible .tier-cell,
  .provider-grid.reveal.visible .provider-cell {
    animation: none !important;
  }
  .btn-primary::before,
  .slot-tile:hover img,
  .featured-slot:hover img { display: none; }
  .slot-tile:hover,
  .featured-slot:hover,
  .metric-card:hover,
  .cat-tile:hover,
  .strategy-step:hover,
  .kyc-step:hover,
  .provider-cell:hover,
  .pros-cons__col:hover { transform: none; }
}
