/* =========================================================================
   cyber-light / style.css — Light Cyberpunk base + components.
   Uses ONLY design tokens (var(--…)) injected from brand.json/theme.json.
   Contrast inversion: light surfaces, dark ink text; neon is reserved for
   borders / grid / glow / CTA — never for body text.
   ========================================================================= */

/* ---- Derived design constants (structure only, not brand tokens) -------- */
:root {
  --link: #0a6f82;                 /* accessible darkened cyan (AA on bg + surface) */
  --maxw: 1200px;
  --gap: clamp(16px, 2.4vw, 28px);
  --pad-section: clamp(40px, 6vw, 88px);
  --glass-bg: rgba(255, 255, 255, .72);
  --glass-strong: rgba(255, 255, 255, .86);
  --shadow-1: 0 1px 2px rgba(11, 16, 32, .05), 0 8px 24px rgba(11, 16, 32, .06);
  --shadow-2: 0 12px 40px rgba(11, 16, 32, .10);
  --radius-sm: calc(var(--radius, 14px) - 6px);
  --radius-lg: calc(var(--radius, 14px) + 6px);
  --ring: 0 0 0 3px rgba(0, 167, 196, .35);
  color-scheme: light;
}

/* ---- Reset / base ------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--font, system-ui, sans-serif);
  color: var(--color-text, #0b1020);
  background: var(--color-bg, #eef1f8);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  /* faint cyan blueprint grid across the whole page */
  background-image:
    linear-gradient(var(--color-grid, rgba(0,167,196,.10)) 1px, transparent 1px),
    linear-gradient(90deg, var(--color-grid, rgba(0,167,196,.10)) 1px, transparent 1px);
  background-size: 44px 44px, 44px 44px;
  background-position: -1px -1px;
}

img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--link); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4 { line-height: 1.15; margin: 0 0 .5em; color: var(--color-text); font-weight: 700; letter-spacing: -.01em; }
h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); }
p { margin: 0 0 1rem; }
ul { margin: 0 0 1rem; padding-left: 1.2em; }

:focus-visible { outline: none; box-shadow: var(--ring); border-radius: 6px; }

.visually-hidden, .skip-link:not(:focus) {
  position: absolute !important; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed; top: 8px; left: 8px; z-index: 200; background: var(--color-surface);
  padding: 10px 16px; border-radius: 8px; box-shadow: var(--shadow-1); color: var(--color-text);
}

/* ---- Layout helpers ----------------------------------------------------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(16px, 4vw, 32px); }
.main { display: block; min-height: 50vh; }
.section { padding: var(--pad-section) 0; }
.section--tight { padding: clamp(28px, 4vw, 48px) 0; }
.section__head { max-width: 720px; margin: 0 auto clamp(24px, 3vw, 40px); text-align: center; }
.section__head--left { margin-left: 0; text-align: left; }
.section__title { margin-bottom: .35em; }
.section__subtitle { color: var(--color-text-muted); font-size: 1.05rem; margin: 0; }

.grid { display: grid; gap: var(--gap); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--auto { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }
@media (max-width: 860px) { .grid--3 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .grid--2, .grid--3 { grid-template-columns: 1fr; } }

.mono { font-family: var(--font-mono, monospace); letter-spacing: .02em; }
.muted { color: var(--color-text-muted); }
.kicker {
  font-family: var(--font-mono, monospace); font-size: .72rem; letter-spacing: .22em;
  text-transform: uppercase; color: var(--link); font-weight: 600;
}
.center { text-align: center; }

/* ---- Frosted glass + HUD ------------------------------------------------ */
.glass, .panel {
  background: var(--glass-bg);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
  backdrop-filter: blur(14px) saturate(1.1);
  border: 1px solid var(--color-border);
  border-radius: var(--radius, 14px);
  box-shadow: var(--shadow-1);
}
.panel { padding: clamp(20px, 3vw, 32px); }

/* HUD bracket overlay — inline SVG via .hud (uses currentColor). */
.hud { position: relative; }
.hud > .hud__frame {
  position: absolute; inset: 6px; pointer-events: none; color: var(--color-primary);
  opacity: .55; transition: opacity var(--motion-base, 260ms) var(--easing, ease), color var(--motion-base) var(--easing);
  width: auto; height: auto;
}
.hud > .hud__frame svg { width: 100%; height: 100%; }
.hud:hover > .hud__frame, .hud:focus-within > .hud__frame { opacity: 1; color: var(--color-accent-2); }

/* ---- Buttons ------------------------------------------------------------ */
.btn {
  --btn-bg: var(--color-surface);
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  font: inherit; font-weight: 600; line-height: 1; cursor: pointer;
  padding: .85em 1.4em; border-radius: 999px; border: 1px solid var(--color-border);
  background: var(--btn-bg); color: var(--color-text); text-decoration: none;
  transition: transform var(--motion-fast,140ms) var(--easing), box-shadow var(--motion-base,260ms) var(--easing),
              filter var(--motion-base) var(--easing), background var(--motion-base) var(--easing);
  white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); box-shadow: var(--shadow-1); }
.btn:active { transform: translateY(0) scale(.98); }
.btn .ico { width: 1.15em; height: 1.15em; }

.btn--primary { background: var(--color-primary); color: var(--color-text); border-color: transparent; }
.btn--primary:hover { box-shadow: var(--neon-glow); }

.btn--cta {
  position: relative; color: #fff; border-color: transparent; overflow: hidden;
  background: var(--color-accent-2);
}
.btn--cta::before {
  content: ""; position: absolute; inset: 0; opacity: .55; mix-blend-mode: screen;
  background: var(--gradient-brand); background-size: 200% 200%;
}
.btn--cta > * { position: relative; z-index: 1; }
.btn--cta:hover { box-shadow: var(--neon-glow), 0 10px 30px rgba(109,40,217,.30); filter: saturate(1.08); }

.btn--ghost { background: transparent; border-color: var(--color-border); color: var(--color-text); }
.btn--ghost:hover { box-shadow: var(--neon-glow); border-color: transparent; }

.btn--sm { padding: .55em 1em; font-size: .9rem; }
.btn--lg { padding: 1em 1.7em; font-size: 1.05rem; }
.btn--block { display: flex; width: 100%; }
.btn[disabled], .btn.is-disabled { opacity: .5; pointer-events: none; cursor: not-allowed; }

/* ---- Tags / pills / badges --------------------------------------------- */
.pill {
  display: inline-flex; align-items: center; gap: .4em; padding: .3em .7em; border-radius: 999px;
  font-family: var(--font-mono, monospace); font-size: .72rem; letter-spacing: .08em; text-transform: uppercase;
  background: var(--color-surface-2); color: var(--color-text-muted); border: 1px solid var(--color-border);
}
.pill--demo { color: #8a2a00; background: #fff3e6; border-color: #ffd8b0; }
.pill--accent { color: var(--link); background: rgba(0,167,196,.08); border-color: rgba(0,167,196,.25); }
.pill--success { color: #0a6b4a; background: rgba(14,159,110,.10); border-color: rgba(14,159,110,.28); }

/* ---- Cards -------------------------------------------------------------- */
.card {
  position: relative; display: flex; flex-direction: column; overflow: hidden;
  background: var(--color-surface); border: 1px solid var(--color-border);
  border-radius: var(--radius, 14px); box-shadow: var(--shadow-1);
  transition: transform var(--motion-base,260ms) var(--easing), box-shadow var(--motion-base) var(--easing);
}
.card__media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--color-surface-2); }
.card__media img { width: 100%; height: 100%; object-fit: cover; }
.card__body { padding: 18px 18px 20px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.card__title { margin: 0; font-size: 1.15rem; }
.card__text { margin: 0; color: var(--color-text-muted); font-size: .95rem; }
.card__meta { display: flex; flex-wrap: wrap; gap: 8px 14px; font-size: .85rem; color: var(--color-text-muted); }
.card__meta .mono { color: var(--color-text); }
.card__foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.card__jackpot { font-family: var(--font-mono, monospace); font-size: 1.25rem; font-weight: 700; color: var(--color-text); }
.card__corner { position: absolute; top: 10px; left: 10px; z-index: 2; }
.card:hover, .card:focus-within { box-shadow: var(--shadow-2), var(--neon-glow); }

/* ---- Hero --------------------------------------------------------------- */
.hero { position: relative; overflow: hidden; padding: clamp(48px, 7vw, 110px) 0; }
.hero__grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(24px, 4vw, 56px); align-items: center;
}
@media (max-width: 880px) { .hero__grid { grid-template-columns: 1fr; } }
.hero__kicker { margin-bottom: 16px; display: inline-block; }
.hero__title { margin: 0 0 .4em; }
.hero__subtitle { font-size: 1.15rem; color: var(--color-text-muted); max-width: 46ch; margin: 0 0 28px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__media { position: relative; }
.hero__media img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-2); border: 1px solid var(--color-border); }
.hero__holo {
  position: absolute; inset: -10% -6% auto auto; width: 60%; aspect-ratio: 1; z-index: -1;
  background: var(--gradient-holo); filter: blur(48px); opacity: .55; border-radius: 50%;
}

/* ---- Utility bar -------------------------------------------------------- */
.demo-strip {
  background: repeating-linear-gradient(45deg, #fff3e6, #fff3e6 12px, #ffe9d2 12px, #ffe9d2 24px);
  color: #8a2a00; font-family: var(--font-mono, monospace); font-size: .72rem; letter-spacing: .12em;
  text-transform: uppercase; text-align: center; padding: 5px 12px; border-bottom: 1px solid #ffd8b0;
}
.utility-bar {
  font-size: .82rem; color: var(--color-text-muted); background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
}
.utility-bar__inner { display: flex; align-items: center; gap: 18px; min-height: 38px; flex-wrap: wrap; }
.utility-bar__notice { font-family: var(--font-mono, monospace); font-size: .72rem; letter-spacing: .04em; }
.utility-bar__spacer { flex: 1; }
.utility-bar__links { display: flex; align-items: center; gap: 16px; }
.utility-bar a { color: var(--color-text-muted); }
.utility-bar a:hover { color: var(--color-text); }
.agebadge {
  display: inline-flex; align-items: center; gap: .3em; font-family: var(--font-mono, monospace);
  font-weight: 700; color: var(--link); border: 1px solid rgba(0,167,196,.35); border-radius: 999px;
  padding: 1px 8px; font-size: .72rem;
}
.langswitch { display: inline-flex; gap: 2px; align-items: center; }
.langswitch a { padding: 2px 6px; border-radius: 6px; font-weight: 600; }
.langswitch a.is-active { background: var(--color-surface-2); color: var(--color-text); }

/* ---- Header ------------------------------------------------------------- */
.header { position: sticky; top: 0; z-index: 90; background: var(--color-surface); border-bottom: 1px solid var(--color-border); transition: box-shadow var(--motion-base) var(--easing), background var(--motion-base) var(--easing); }
.header.is-stuck { background: var(--glass-strong); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px); box-shadow: var(--shadow-1); }
.header__inner { display: flex; align-items: center; gap: 20px; min-height: 68px; }
.header__logo { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.25rem; color: var(--color-text); letter-spacing: -.02em; }
.header__logo img { height: 34px; width: auto; }
.header__logo:hover { text-decoration: none; }
.header__spacer { flex: 1; }
.header__actions { display: flex; align-items: center; gap: 10px; }

/* user menu */
.usermenu { position: relative; }
.usermenu__btn { display: inline-flex; align-items: center; gap: 8px; background: var(--color-surface-2); border: 1px solid var(--color-border); border-radius: 999px; padding: 6px 12px 6px 8px; cursor: pointer; font: inherit; color: var(--color-text); }
.usermenu__avatar { width: 28px; height: 28px; border-radius: 50%; background: var(--gradient-brand); display: grid; place-items: center; color: #fff; }
.usermenu__bal { font-family: var(--font-mono, monospace); font-weight: 700; font-size: .85rem; }
.usermenu__panel { position: absolute; right: 0; top: calc(100% + 10px); min-width: 220px; background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius); box-shadow: var(--shadow-2); padding: 8px; display: none; z-index: 95; }
.usermenu.is-open .usermenu__panel { display: block; }
.usermenu__panel a, .usermenu__panel button { display: flex; align-items: center; gap: 10px; width: 100%; text-align: left; padding: 10px 12px; border-radius: 10px; color: var(--color-text); background: none; border: 0; font: inherit; cursor: pointer; }
.usermenu__panel a:hover, .usermenu__panel button:hover { background: var(--color-surface-2); text-decoration: none; }

/* ---- Games nav ---------------------------------------------------------- */
.gamesnav { background: var(--color-surface); border-bottom: 1px solid var(--color-border); }
.gamesnav__inner { display: flex; align-items: center; gap: 6px; overflow-x: auto; scrollbar-width: thin; }
.gamesnav__list { display: flex; align-items: center; gap: 2px; list-style: none; margin: 0; padding: 0; }
.gamesnav__link {
  position: relative; display: inline-flex; align-items: center; gap: 8px; padding: 14px 14px; color: var(--color-text);
  font-weight: 600; font-size: .95rem; white-space: nowrap;
}
.gamesnav__link .ico { width: 18px; height: 18px; color: var(--link); }
.gamesnav__link::after { content: ""; position: absolute; left: 12px; right: 12px; bottom: 8px; height: 2px; border-radius: 2px; background: var(--gradient-brand); transform: scaleX(0); transform-origin: left; transition: transform var(--motion-base) var(--easing); }
.gamesnav__link:hover { text-decoration: none; }
.gamesnav__link:hover::after, .gamesnav__link.is-active::after { transform: scaleX(1); }
.gamesnav__spacer { flex: 1; }
.gamesnav__limits { margin-left: auto; }
.gamesnav__limits .btn { color: var(--link); }

/* ---- Forms -------------------------------------------------------------- */
.form { display: grid; gap: 18px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 560px) { .form__row { grid-template-columns: 1fr; } }
.field { display: grid; gap: 6px; }
.field__label { font-weight: 600; font-size: .9rem; }
.field__label .req { color: var(--color-accent); }
.field__label .opt { color: var(--color-text-muted); font-weight: 400; font-size: .82rem; }
.field__input, .field select, .field textarea {
  font: inherit; padding: 12px 14px; border-radius: 10px; border: 1px solid var(--color-border);
  background: var(--color-surface); color: var(--color-text); width: 100%;
  transition: border-color var(--motion-base) var(--easing), box-shadow var(--motion-base) var(--easing);
}
.field__input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--color-primary); box-shadow: var(--ring); }
.field textarea { min-height: 130px; resize: vertical; }
.field.has-error .field__input, .field.has-error select, .field.has-error textarea { border-color: var(--color-accent); }
.field__error { color: var(--color-accent); font-size: .82rem; }
.field__hint { color: var(--color-text-muted); font-size: .82rem; }
.checkbox { display: flex; gap: 10px; align-items: flex-start; font-size: .92rem; }
.checkbox input { margin-top: .25em; width: 18px; height: 18px; accent-color: var(--color-primary); flex: 0 0 auto; }
.captcha { display: flex; align-items: center; gap: 12px; }
.captcha__input { max-width: 120px; }
.captcha-svg { border-radius: 8px; }

/* ---- Alerts ------------------------------------------------------------- */
.alert { display: flex; gap: 10px; align-items: flex-start; padding: 12px 16px; border-radius: 12px; border: 1px solid var(--color-border); background: var(--color-surface); margin: 0 0 18px; }
.alert .ico { flex: 0 0 auto; margin-top: 2px; }
.alert--success { background: rgba(14,159,110,.08); border-color: rgba(14,159,110,.3); color: #0a6b4a; }
.alert--error { background: rgba(224,33,138,.06); border-color: rgba(224,33,138,.3); color: #9b1458; }
.alert--info { background: rgba(0,167,196,.07); border-color: rgba(0,167,196,.3); color: #0a6175; }

/* ---- Auth pages --------------------------------------------------------- */
.auth { max-width: 560px; margin: 0 auto; }
.auth--wide { max-width: 760px; }
.auth__head { text-align: center; margin-bottom: 24px; }
.auth__alt { text-align: center; margin-top: 20px; color: var(--color-text-muted); }

/* ---- Account ------------------------------------------------------------ */
.account__top { display: flex; flex-wrap: wrap; gap: 20px; align-items: center; justify-content: space-between; margin-bottom: 28px; }
.account__balance { display: flex; flex-direction: column; gap: 2px; padding: 16px 22px; border-radius: var(--radius); background: var(--color-surface); border: 1px solid var(--color-border); box-shadow: var(--shadow-1); }
.account__balance .amount { font-family: var(--font-mono, monospace); font-size: 1.8rem; font-weight: 700; }
.tabs { display: flex; gap: 4px; border-bottom: 1px solid var(--color-border); margin-bottom: 24px; overflow-x: auto; }
.tab { padding: 12px 16px; font-weight: 600; color: var(--color-text-muted); background: none; border: 0; border-bottom: 2px solid transparent; cursor: pointer; font: inherit; white-space: nowrap; }
.tab.is-active { color: var(--color-text); border-bottom-color: var(--color-primary); }
.tabpanel { display: none; }
.tabpanel.is-active { display: block; }

.table { width: 100%; border-collapse: collapse; font-size: .92rem; }
.table th, .table td { text-align: left; padding: 11px 12px; border-bottom: 1px solid var(--color-border); }
.table th { font-size: .76rem; letter-spacing: .06em; text-transform: uppercase; color: var(--color-text-muted); }
.table .mono { font-size: .85rem; }
.table-wrap { overflow-x: auto; border: 1px solid var(--color-border); border-radius: var(--radius); }

/* ---- Play --------------------------------------------------------------- */
.play__layout { display: grid; grid-template-columns: 1.2fr .8fr; gap: var(--gap); align-items: start; }
@media (max-width: 900px) { .play__layout { grid-template-columns: 1fr; } }
.picker__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(46px, 1fr)); gap: 8px; margin: 16px 0; }
.num {
  aspect-ratio: 1; display: grid; place-items: center; border-radius: 50%; border: 1px solid var(--color-border);
  background: var(--color-surface); font-family: var(--font-mono, monospace); font-weight: 700; cursor: pointer;
  transition: transform var(--motion-fast) var(--easing), box-shadow var(--motion-base) var(--easing), background var(--motion-base) var(--easing), color var(--motion-base) var(--easing);
  font-size: 1rem; color: var(--color-text); user-select: none;
}
.num:hover { transform: translateY(-2px); box-shadow: var(--shadow-1); }
.num.is-selected { background: var(--color-primary); color: var(--color-text); border-color: transparent; box-shadow: var(--neon-glow); }
.num:focus-visible { box-shadow: var(--ring); }
.picker__count { font-family: var(--font-mono, monospace); color: var(--color-text-muted); }
.picker__controls { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; margin-top: 12px; }

.reveal { margin-top: 8px; }
.reveal__row { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.reveal__cell {
  width: 50px; height: 50px; display: grid; place-items: center; border-radius: 12px; border: 1px solid var(--color-border);
  background: var(--color-surface); font-family: var(--font-mono, monospace); font-weight: 700; font-size: 1.1rem; color: var(--color-text);
}
.reveal__cell.is-hit { background: var(--color-success); color: #fff; border-color: transparent; box-shadow: 0 0 0 1px rgba(14,159,110,.5), 0 6px 18px rgba(14,159,110,.25); }
.result-card { text-align: center; }
.result-card .amount { font-family: var(--font-mono, monospace); font-size: 2rem; font-weight: 700; }
.result-card.is-win .amount { color: var(--color-success); }

/* ---- Legal -------------------------------------------------------------- */
.legal { display: grid; grid-template-columns: 240px 1fr; gap: clamp(24px, 4vw, 56px); align-items: start; }
@media (max-width: 820px) { .legal { grid-template-columns: 1fr; } }
.legal__nav { position: sticky; top: 90px; }
.legal__nav ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 2px; }
.legal__nav a { display: block; padding: 8px 12px; border-radius: 8px; color: var(--color-text-muted); border-left: 2px solid transparent; }
.legal__nav a.is-active, .legal__nav a:hover { color: var(--color-text); background: var(--color-surface); border-left-color: var(--color-primary); text-decoration: none; }
.legal__section { scroll-margin-top: 100px; margin-bottom: 32px; }
.legal__section h2 { display: flex; gap: .5em; align-items: baseline; }
.legal__section .num { font-family: var(--font-mono, monospace); color: var(--link); font-size: .9em; }

/* ---- RG / tools --------------------------------------------------------- */
.tool { display: flex; flex-direction: column; gap: 10px; }
.tool .ico { width: 28px; height: 28px; color: var(--link); }
.rg-helpline { display: flex; flex-wrap: wrap; gap: 10px 18px; align-items: center; font-family: var(--font-mono, monospace); }
.rg-helpline .phone { font-weight: 700; color: var(--color-text); }

/* ---- Winners / news ----------------------------------------------------- */
.winner__prize { font-family: var(--font-mono, monospace); font-size: 1.5rem; font-weight: 700; color: var(--color-success); }
.news__meta { display: flex; gap: 12px; font-size: .82rem; color: var(--color-text-muted); font-family: var(--font-mono, monospace); }

/* ---- Newsletter --------------------------------------------------------- */
.newsletter { padding: clamp(28px, 4vw, 48px) 0; }
.newsletter__panel { display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center; }
@media (max-width: 760px) { .newsletter__panel { grid-template-columns: 1fr; } }
.newsletter__form { display: flex; gap: 10px; flex-wrap: wrap; }
.newsletter__form input { flex: 1; min-width: 220px; }

/* ---- Footer ------------------------------------------------------------- */
.footer { position: relative; margin-top: 40px; background: var(--color-surface); border-top: 1px solid var(--color-border); }
.footer__holo { height: 3px; background: var(--gradient-holo); }
.footer__inner { padding: clamp(40px, 5vw, 64px) 0 28px; }
.footer__cols { display: grid; grid-template-columns: 1.4fr repeat(4, 1fr); gap: clamp(20px, 3vw, 40px); }
@media (max-width: 960px) { .footer__cols { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer__cols { grid-template-columns: 1fr; } }
.footer__brand { display: grid; gap: 12px; }
.footer__brand img { height: 34px; }
.footer__col h4 { font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; color: var(--color-text-muted); margin-bottom: 12px; }
.footer__col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.footer__col a { color: var(--color-text); font-size: .92rem; }
.footer__col a:hover { color: var(--link); }
.footer__strip { display: flex; flex-wrap: wrap; gap: 24px 40px; justify-content: space-between; padding: 24px 0; border-top: 1px solid var(--color-border); margin-top: 32px; }
.footer__block h4 { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--color-text-muted); margin-bottom: 10px; font-family: var(--font-mono, monospace); }
.badges { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.badge { display: inline-flex; }
.badge img { height: 40px; width: auto; }
.payments { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.pay-chip { background: var(--color-surface); border: 1px solid var(--color-border); border-radius: 8px; padding: 6px 10px; display: inline-flex; align-items: center; }
.pay-chip img { height: 24px; width: auto; }
.footer__bottom { display: flex; flex-wrap: wrap; gap: 12px 24px; justify-content: space-between; align-items: center; padding-top: 24px; border-top: 1px solid var(--color-border); color: var(--color-text-muted); font-size: .85rem; }
.footer__disclaimer { max-width: 70ch; }
.footer__social { display: flex; gap: 12px; }
.footer__social a { color: var(--color-text-muted); }
.footer__social a:hover { color: var(--link); }

/* ---- Cookie banner ------------------------------------------------------ */
.cookie { position: fixed; left: 0; right: 0; bottom: 0; z-index: 120; padding: 16px; display: none; }
.cookie.is-visible { display: block; }
.cookie__panel { max-width: 920px; margin: 0 auto; display: grid; grid-template-columns: 1fr auto; gap: 18px; align-items: center; padding: 18px 22px; }
@media (max-width: 680px) { .cookie__panel { grid-template-columns: 1fr; } }
.cookie__actions { display: flex; flex-wrap: wrap; gap: 10px; }
.cookie__text { font-size: .92rem; margin: 0; }

/* ---- Age gate ----------------------------------------------------------- */
.agegate { position: fixed; inset: 0; z-index: 150; display: none; align-items: center; justify-content: center; padding: 24px; background: rgba(238,241,248,.72); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); }
.agegate.is-visible { display: flex; }
.agegate__modal { max-width: 440px; width: 100%; text-align: center; padding: clamp(28px, 4vw, 40px); position: relative; }
.agegate__actions { display: flex; gap: 12px; justify-content: center; margin-top: 22px; flex-wrap: wrap; }
.agegate__deny-msg { display: none; margin-top: 16px; }
.agegate.is-denied .agegate__deny-msg { display: block; }
.agegate.is-denied .agegate__actions { display: none; }

/* ---- Misc --------------------------------------------------------------- */
.notice-box { padding: 16px 20px; border-radius: var(--radius); border: 1px dashed var(--color-border); background: var(--color-surface); }
.scanline { position: relative; }
.lead { font-size: 1.15rem; color: var(--color-text-muted); max-width: 60ch; }
.prose p { max-width: 70ch; }
.prose h2 { margin-top: 1.6em; }
hr { border: 0; border-top: 1px solid var(--color-border); margin: 32px 0; }
.tile-link { display: block; color: inherit; }
.tile-link:hover { text-decoration: none; }
