/* ==========================================================================
   Casino 770 — FR landing — style.css
   Editorial old-gold × dark surface
   ========================================================================== */

:root {
  /* Palette */
  --bg: #0a0a0a;
  --bg-alt: #0f0f0f;
  --surface: #141414;
  --surface-elev: #1a1a1a;
  --border: rgba(181, 126, 16, 0.18);
  --border-strong: rgba(212, 169, 74, 0.32);

  --gold: #d4a94a;
  --gold-hi: #f2d98e;
  --gold-deep: #b57e10;
  --gold-soft: #e9cb6b;
  --cream: #fcfdb0;

  --text: #e8e4d8;
  --text-muted: #9a958a;
  --text-dim: #6b665d;

  --success: #6fbf73;
  --warn: #e0a84a;
  --danger: #c36c5c;

  --font-display: 'Cormorant Garamond', 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Public Sans', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'IBM Plex Mono', ui-monospace, 'SF Mono', Consolas, monospace;

  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 18px;
  --touch-min: 44px;

  --shadow-card: 0 1px 0 rgba(212,169,74,0.05) inset, 0 8px 32px rgba(0,0,0,0.4);
  --shadow-gold: 0 2px 0 #8b5e0c inset, 0 4px 16px rgba(212,169,74,0.22);

  --container: 1200px;
  --container-narrow: 880px;
}

/* Reset & base */
*, *::before, *::after { box-sizing: border-box; }
html, body { overflow-x: clip; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  background-image:
    radial-gradient(ellipse at 80% -10%, rgba(212,169,74,0.08), transparent 55%),
    radial-gradient(ellipse at 0% 50%, rgba(181,126,16,0.04), transparent 60%);
  min-height: 100vh;
}

/* Noise overlay — pure CSS, no extra asset */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='140' height='140'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.92' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.82  0 0 0 0 0.67  0 0 0 0 0.29  0 0 0 0.06 0'/></filter><rect width='140' height='140' filter='url(%23n)'/></svg>");
  opacity: 0.5;
  z-index: 1;
  mix-blend-mode: overlay;
}

main, header, footer { position: relative; z-index: 2; }

img { max-width: 100%; height: auto; display: block; }
figure { margin: 0; }

a { color: var(--gold); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--gold-hi); }

/* Headings */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 0.5em;
  color: var(--text);
}

h1 { font-size: clamp(2.2rem, 4.5vw, 3.75rem); font-weight: 700; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 600; }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }

p { margin: 0 0 1em; }
strong { color: var(--text); font-weight: 600; }
em { font-style: italic; color: var(--gold-soft); }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin: 0 0 1rem;
}

/* Layout */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.container--narrow { max-width: var(--container-narrow); }

section { padding: 80px 0; position: relative; }
section + section::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: min(640px, 80%);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-strong), transparent);
}

.section-head {
  margin-bottom: 48px;
  max-width: 720px;
}
.section-head .eyebrow { margin-bottom: 12px; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: var(--touch-min);
  min-width: var(--touch-min);
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  text-align: center;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
  white-space: nowrap;
  font-family: var(--font-body);
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: linear-gradient(180deg, var(--gold-hi) 0%, var(--gold) 100%);
  color: #1a0f00;
  border-color: var(--gold-deep);
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
  background: linear-gradient(180deg, var(--cream) 0%, var(--gold-hi) 100%);
  color: #1a0f00;
}

.btn-ghost {
  background: transparent;
  color: var(--gold);
  border-color: var(--border-strong);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold-hi);
  background: rgba(212,169,74,0.06);
}

.btn-block { width: 100%; }

/* =============================== HEADER =============================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 10, 10, 0.82);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid var(--border);
  transition: background .2s ease, border-color .2s ease;
}
.site-header.scrolled {
  background: rgba(10, 10, 10, 0.95);
  border-bottom-color: var(--border-strong);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 24px;
  max-width: var(--container);
  margin: 0 auto;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.brand img { height: 36px; width: auto; }

.main-nav {
  display: flex;
  gap: 28px;
  margin: 0 auto;
}
.main-nav a {
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 500;
  position: relative;
  padding: 8px 2px;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 50%; bottom: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .25s ease, left .25s ease;
}
.main-nav a:hover { color: var(--gold); }
.main-nav a:hover::after { width: 100%; left: 0; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.lang-chip {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--text-muted);
  padding: 6px 10px;
  border: 1px solid var(--border);
  border-radius: 4px;
  letter-spacing: 0.06em;
}
.header-actions .btn {
  padding: 10px 20px;
  font-size: 0.88rem;
  min-height: 40px;
}
.btn-login {
  background: transparent;
  border-color: var(--border-strong);
  color: var(--text);
  padding: 10px 18px;
}
.btn-login:hover { color: var(--gold); border-color: var(--gold); }

/* =============================== HERO =============================== */
.hero {
  padding: 72px 0 60px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -20%; right: -10%;
  width: 640px; height: 640px;
  background: radial-gradient(circle, rgba(212,169,74,0.15), transparent 65%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}
.hero__copy { position: relative; z-index: 3; }
.hero__copy h1 {
  margin: 12px 0 20px;
}
.hero__h1-gradient {
  background: linear-gradient(180deg, #fff3a6 0%, #f9df7b 22%, #fbe68a 45%, #e9cb6b 70%, #bc881c 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  display: inline;
}
.hero__deck {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 540px;
  margin-bottom: 28px;
}
.hero__deck strong { color: var(--text); }

.usp-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}
.usp-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  padding: 7px 12px;
  background: rgba(212,169,74,0.06);
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--gold-soft);
  letter-spacing: 0.02em;
}
.usp-pill::before {
  content: "◆";
  color: var(--gold);
  font-size: 0.7rem;
}

.hero__cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}
.hero__micro {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--text-dim);
  letter-spacing: 0.04em;
}
.hero__micro code {
  color: var(--gold-hi);
  background: rgba(212,169,74,0.08);
  padding: 2px 8px;
  border-radius: 3px;
  border: 1px solid var(--border);
  font-family: var(--font-mono);
  font-size: 0.82rem;
}

/* Hero floating game tiles */
.hero__visual {
  position: relative;
  height: 480px;
}
.float-card {
  position: absolute;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-strong);
  background: var(--surface);
  transition: transform .4s cubic-bezier(.2,.8,.2,1);
}
.float-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.float-card--1 { width: 210px; height: 260px; top: 20px; left: 20px; transform: rotate(-6deg); z-index: 2; }
.float-card--2 { width: 220px; height: 270px; top: 10px; right: 30px; transform: rotate(5deg); z-index: 3; }
.float-card--3 { width: 200px; height: 250px; bottom: 20px; left: 60px; transform: rotate(3deg); z-index: 3; }
.float-card--4 { width: 220px; height: 270px; bottom: 10px; right: 10px; transform: rotate(-4deg); z-index: 2; }

/* =============================== ABOUT =============================== */
.about {
  background: linear-gradient(180deg, transparent, rgba(212,169,74,0.02));
}
.about-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 56px;
  align-items: start;
}
.spec-table {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 28px;
}
.spec-table dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px 24px;
  margin: 0;
}
.spec-table dt {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding-top: 3px;
}
.spec-table dd {
  margin: 0;
  color: var(--text);
  font-size: 0.96rem;
}
.spec-table dd strong { color: var(--gold-hi); font-weight: 500; }

/* =============================== BONUS =============================== */
.bonus { background: var(--bg-alt); }

.bonus-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
}
.bonus-card {
  position: relative;
  padding: 32px 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color .3s ease, transform .3s ease;
}
.bonus-card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}
.bonus-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-hi), var(--gold-deep));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  opacity: 0.6;
}
.bonus-card__num {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--gold-deep);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.bonus-card__amount {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.2rem);
  font-weight: 700;
  line-height: 1;
  margin: 14px 0 8px;
  background: linear-gradient(180deg, #fff3a6, #d4a94a);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.bonus-card__desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 20px;
}
.bonus-card__code {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  padding: 8px 14px;
  background: rgba(212,169,74,0.08);
  border: 1px dashed var(--border-strong);
  border-radius: 4px;
  color: var(--gold-hi);
  display: inline-block;
  margin-bottom: 20px;
  letter-spacing: 0.06em;
}

.math-box {
  background: var(--surface);
  border-left: 3px solid var(--gold);
  padding: 24px 28px;
  margin: 32px 0;
  border-radius: 0 var(--radius) var(--radius) 0;
}
.math-box h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--gold-hi);
  margin-bottom: 12px;
}

table.bonus-conditions,
table.payment-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  font-size: 0.92rem;
  margin-top: 24px;
}
table.bonus-conditions th,
table.bonus-conditions td,
table.payment-table th,
table.payment-table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
table.bonus-conditions th,
table.payment-table th {
  background: rgba(212,169,74,0.04);
  color: var(--gold-soft);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}
table.bonus-conditions td:first-child { color: var(--text); font-weight: 500; }
table.bonus-conditions tr:last-child td,
table.payment-table tr:last-child td { border-bottom: none; }
table.bonus-conditions td:last-child,
table.payment-table td:last-child { color: var(--text-muted); font-size: 0.88rem; }

/* =============================== GAMES =============================== */
.games { }

.category-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.category-card {
  padding: 28px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  position: relative;
}
.category-card h3 {
  color: var(--gold-hi);
  margin-bottom: 10px;
  font-family: var(--font-display);
}
.category-card__count {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--gold-deep);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.category-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin: 0 0 14px;
  line-height: 1.55;
}
.category-card__providers {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-dim);
  letter-spacing: 0.04em;
  border-top: 1px solid var(--border);
  padding-top: 12px;
  margin-top: 14px;
}

.game-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.game-tile {
  aspect-ratio: 498 / 286;
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  transition: border-color .2s ease, transform .2s ease;
}
.game-tile:hover {
  border-color: var(--gold-deep);
  transform: translateY(-2px);
}
.game-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.game-tile__caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 10px 12px;
  background: linear-gradient(180deg, transparent, rgba(10,10,10,0.88));
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 500;
  pointer-events: none;
}

.games__note {
  margin-top: 28px;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.92rem;
  font-style: italic;
}

/* =============================== JETONS & JACKPOT =============================== */
.jetons { background: var(--bg-alt); }

.jetons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.jetons-explain h2 { margin-bottom: 20px; }
.jetons-rate {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
  background: rgba(212,169,74,0.06);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  margin: 16px 0;
  font-family: var(--font-mono);
}
.jetons-rate .num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-hi);
}
.jetons-rate .op { color: var(--text-muted); font-size: 1.3rem; }

.jackpot-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.jackpot-level {
  position: relative;
  padding: 18px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  overflow: hidden;
}
.jackpot-level::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--gold-deep);
}
.jackpot-level--mega {
  border-color: var(--border-strong);
}
.jackpot-level--mega::before {
  background: linear-gradient(180deg, var(--gold-hi), var(--gold));
  animation: mega-pulse 3s ease-in-out infinite;
}
.jackpot-level--mega .jackpot-label { color: var(--gold-hi); }

@keyframes mega-pulse {
  0%, 100% { box-shadow: 0 0 0 rgba(212,169,74,0); }
  50% { box-shadow: 0 0 18px rgba(242,217,142,0.45); }
}
@media (prefers-reduced-motion: reduce) {
  .jackpot-level--mega::before { animation: none; }
}

.jackpot-label {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.02em;
}
.jackpot-desc {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--text-muted);
}
.jackpot-icon {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--gold-soft);
}

/* =============================== PAIEMENTS =============================== */
.paiements { }

.payment-icons {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-bottom: 32px;
}
.payment-icon {
  aspect-ratio: 2.2 / 1;
  padding: 10px 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .2s ease, background .2s ease;
  overflow: hidden;
}
.payment-icon:hover { border-color: var(--gold); background: rgba(212,169,74,0.05); }
.payment-icon img {
  max-height: 28px;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.payment-table-wrap {
  overflow-x: auto;
  margin: 0 -4px;
}
.payment-note {
  margin-top: 24px;
  padding: 18px 22px;
  background: rgba(212,169,74,0.04);
  border-left: 3px solid var(--gold-deep);
  border-radius: 0 var(--radius) var(--radius) 0;
  color: var(--text-muted);
  font-size: 0.92rem;
  font-style: italic;
}
.payment-note strong { color: var(--gold-soft); font-style: normal; font-weight: 500; }
/* =============================== SÉCURITÉ =============================== */
.securite { }

.security-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 56px;
  align-items: start;
}
.security-check {
  list-style: none;
  padding: 0;
  margin: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.security-check li {
  padding: 14px 20px 14px 48px;
  position: relative;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
  color: var(--text);
}
.security-check li:last-child { border-bottom: none; }
.security-check li::before {
  content: "✓";
  position: absolute;
  left: 18px; top: 13px;
  color: var(--gold);
  font-weight: 700;
  font-size: 1.1rem;
}
.security-check strong { color: var(--gold-soft); font-weight: 500; }

/* =============================== FAQ =============================== */
.faq { background: var(--bg-alt); }

.faq-list { max-width: 880px; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  background: var(--surface);
  overflow: hidden;
  transition: border-color .25s ease;
}
.faq-item.active { border-color: var(--border-strong); }

.faq-q {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 20px 56px 20px 24px;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  position: relative;
  min-height: var(--touch-min);
  display: flex;
  align-items: center;
}
.faq-q:hover { color: var(--gold-hi); }
.faq-q::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-mono);
  font-size: 1.4rem;
  color: var(--gold);
  transition: transform .25s ease;
  line-height: 1;
}
.faq-item.active .faq-q::after { content: "−"; }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.faq-a__inner {
  padding: 0 24px 22px;
  color: var(--text-muted);
  line-height: 1.65;
}
.faq-a__inner p { margin: 0 0 0.75em; }
.faq-a__inner p:last-child { margin: 0; }
.faq-a__inner code {
  font-family: var(--font-mono);
  background: rgba(212,169,74,0.08);
  padding: 1px 7px;
  border-radius: 3px;
  color: var(--gold-hi);
  font-size: 0.9em;
}

/* =============================== VERDICT =============================== */
.verdict {
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(212,169,74,0.08), transparent 60%),
    var(--bg);
}
.verdict__title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 28px;
}
.verdict__rating {
  font-family: var(--font-display);
  font-size: clamp(5rem, 12vw, 8rem);
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(180deg, #fff3a6, #d4a94a 50%, #b57e10);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  margin: 0 0 8px;
  letter-spacing: -0.04em;
}
.verdict__rating-max {
  font-size: 0.45em;
  color: var(--text-dim);
}
.verdict__rating-label {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 28px;
}
.verdict__text {
  max-width: 680px;
  margin: 0 auto 32px;
  color: var(--text-muted);
  font-size: 1.05rem;
}
.verdict__text strong { color: var(--text); }
.verdict__cta {
  font-size: 1rem;
  padding: 18px 40px;
  min-height: 56px;
}

/* =============================== FOOTER =============================== */
.site-footer {
  background: #050505;
  border-top: 1px solid var(--border);
  padding: 56px 0 28px;
  color: var(--text-muted);
  font-size: 0.9rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 28px;
}
.footer-brand img { height: 32px; margin-bottom: 16px; }
.footer-brand p { color: var(--text-dim); font-size: 0.85rem; max-width: 320px; line-height: 1.6; }
.footer-age {
  display: inline-block;
  margin-top: 12px;
  padding: 4px 10px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  border: 1px solid var(--border-strong);
  border-radius: 3px;
}
.site-footer h3 {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
  font-weight: 500;
  margin-bottom: 16px;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 8px; }
.site-footer li a { color: var(--text-muted); font-size: 0.88rem; }
.site-footer li a:hover { color: var(--gold); }
.footer-responsible a { color: var(--gold); }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text-dim);
  font-family: var(--font-mono);
}

/* =============================== STICKY BOTTOM BAR (mobile) =============================== */
.sticky-bottom {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 40;
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--border-strong);
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom, 0px));
  transform: translateY(110%);
  transition: transform .25s ease;
}
.sticky-bottom.visible { transform: translateY(0); }
.sticky-bottom__inner {
  display: flex;
  align-items: center;
  gap: 12px;
}
.sticky-bottom__info { flex: 0 0 auto; display: flex; align-items: center; gap: 10px; }
.sticky-bottom__logo { height: 24px; width: auto; }
.sticky-bottom__offer {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--gold-soft);
  letter-spacing: 0.04em;
  line-height: 1.2;
}
.sticky-bottom__cta {
  flex: 1;
  padding: 12px 18px;
  font-size: 0.88rem;
  min-height: 44px;
}

/* =============================== REVEAL ANIMATIONS =============================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
  will-change: opacity, transform;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* =============================== RESPONSIVE =============================== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero__visual { max-width: 540px; margin: 0 auto; height: 420px; }
  .about-grid, .jetons-grid, .security-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .main-nav { display: none; }
}

@media (max-width: 768px) {
  body { font-size: 16px; }
  section { padding: 56px 0; }
  .container { padding: 0 18px; }

  /* Header mobile */
  .site-header {
    background: rgba(10, 10, 10, 0.95);
    border-bottom: 1px solid var(--border-strong);
  }
  .header-inner { padding: 12px 18px; gap: 12px; }
  .brand img { height: 28px; }
  .btn-login, .lang-chip { display: none; }
  .header-actions .btn-primary {
    padding: 10px 18px;
    font-size: 0.82rem;
    min-height: 40px;
  }

  /* Hero mobile */
  .hero { padding: 40px 0 32px; }
  .hero__visual {
    height: 320px;
    max-width: 340px;
  }
  .float-card--1 { width: 140px; height: 180px; top: 10px; left: 50%; transform: translateX(-85%) rotate(-6deg); }
  .float-card--2 { width: 130px; height: 170px; top: 0; left: 50%; transform: translateX(5%) rotate(6deg); }
  .float-card--3 { width: 140px; height: 180px; bottom: 10px; left: 50%; transform: translateX(-95%) rotate(4deg); }
  .float-card--4 { width: 130px; height: 170px; bottom: 0; left: 50%; transform: translateX(-5%) rotate(-3deg); }

  .hero__cta-row { flex-direction: column; }
  .hero__cta-row .btn { width: 100%; }

  /* Grids → 1 col */
  .bonus-cards { grid-template-columns: 1fr; gap: 16px; }
  .category-cards { grid-template-columns: 1fr; gap: 14px; }
  .game-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .payment-icons { grid-template-columns: repeat(4, 1fr); gap: 8px; }
  .payment-icon { aspect-ratio: 2 / 1; padding: 8px 10px; }
  .payment-icon img { max-height: 22px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }

  /* Tables scroll */
  .payment-table-wrap table { min-width: 640px; }
  table.bonus-conditions, table.payment-table { font-size: 0.88rem; }
  table.bonus-conditions th, table.bonus-conditions td,
  table.payment-table th, table.payment-table td { padding: 10px 12px; }

  /* Sticky bottom active on mobile */
  .sticky-bottom { display: block; }
  body.has-sticky-bottom { padding-bottom: 72px; }

  /* FAQ smaller */
  .faq-q { font-size: 1.02rem; padding: 16px 48px 16px 20px; }
  .faq-q::after { right: 18px; }
  .faq-a__inner { padding: 0 20px 18px; }

  /* Verdict CTA */
  .verdict__cta { width: 100%; padding: 16px 20px; font-size: 0.95rem; }

  /* Spec table narrower */
  .spec-table { padding: 18px 20px; }
  .spec-table dl { grid-template-columns: 1fr; gap: 4px 0; }
  .spec-table dl > dt { padding-top: 10px; }
  .spec-table dl > dd { padding-bottom: 10px; border-bottom: 1px solid var(--border); }
  .spec-table dl > dd:last-child { border-bottom: none; padding-bottom: 0; }

  /* Section head */
  .section-head { margin-bottom: 32px; }
}

@media (max-width: 420px) {
  .hero__visual { height: 280px; max-width: 300px; }
  .float-card--1 { width: 120px; height: 160px; transform: translateX(-85%) rotate(-5deg); }
  .float-card--2 { width: 115px; height: 150px; transform: translateX(5%) rotate(5deg); }
  .float-card--3 { width: 120px; height: 160px; transform: translateX(-90%) rotate(3deg); }
  .float-card--4 { width: 115px; height: 150px; transform: translateX(-5%) rotate(-3deg); }
  .hero__copy h1 { font-size: 2rem; }
  .payment-icons { grid-template-columns: repeat(3, 1fr); gap: 6px; }
  .payment-icon { padding: 6px 8px; }
  .payment-icon img { max-height: 20px; }
}

/* =============================== UTILITY CLASSES =============================== */
.bonus-conditions__title {
  font-size: 1.2rem;
  margin: 32px 0 14px;
  color: var(--gold-soft);
  font-family: var(--font-display);
  font-weight: 600;
}
.footer__small-text {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0 0 16px;
}
.footer__small-text a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px dotted var(--gold-deep);
}
.footer__small-text a:hover { color: var(--gold-hi); }

/* =============================== REVEAL SAFETY NETS =============================== */
/* Never hide critical imagery even if reveal JS race-conditions.
   Images inside game-tile/float-card/category-card/payment-icons MUST always render. */
.game-tile img,
.float-card img,
.category-card img,
.payment-icons img,
.spec-table img { opacity: 1 !important; visibility: visible !important; }

/* Game-grid itself should not be reveal-gated — the caption-only appearance
   would confuse users on fast-scroll or if JS is delayed. Content-containers
   with visual media get immediate visibility; only section-heads and prose
   blocks should animate in. */
.game-grid.reveal,
.bonus-cards.reveal,
.category-cards.reveal,
.payment-table-wrap.reveal {
  opacity: 1 !important;
  transform: none !important;
}
