/* Lucero — guía Starburst ES
   Tokens first. One accent. Concentric radii. No purple chrome. */

:root {
  --bg: #08090d;
  --bg-elevated: #11131a;
  --bg-subtle: #181b24;
  --fg: #f3f0e8;
  --fg-muted: #a39e93;
  --fg-subtle: #6e6a62;
  --accent: #9ee4d8;
  --accent-fg: #081210;
  --accent-soft: color-mix(in oklab, var(--accent) 16%, transparent);
  --pearl: #d7c4b5;
  --border: color-mix(in oklab, var(--fg) 12%, transparent);
  --border-strong: color-mix(in oklab, var(--fg) 22%, transparent);
  --danger: #c9847a;
  --ok: #7dba9a;

  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 28px;

  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;

  --font-display: "Fraunces", "Iowan Old Style", "Palatino Linotype", serif;
  --font-body: "Outfit", "Segoe UI", system-ui, sans-serif;

  --text-xs: clamp(0.75rem, 0.7rem + 0.2vw, 0.8125rem);
  --text-sm: clamp(0.875rem, 0.82rem + 0.25vw, 0.9375rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.0625rem);
  --text-lg: clamp(1.125rem, 1rem + 0.5vw, 1.25rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1vw, 2rem);
  --text-2xl: clamp(2rem, 1.35rem + 2.2vw, 3.15rem);
  --text-3xl: clamp(2.4rem, 1.5rem + 3.4vw, 4.4rem);

  --leading-tight: 1.08;
  --leading-snug: 1.25;
  --leading-normal: 1.6;
  --tracking-display: -0.03em;

  --wrap: 1120px;
  --wrap-narrow: 720px;

  --motion-micro: 80ms;
  --motion-quick: 150ms;
  --motion-fast: 250ms;
  --motion-slow: 400ms;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);

  --header-h: 68px;
  --cta-bar-h: 72px;

  --gem-purple: #7b5ea7;
  --gem-blue: #3d7cc9;
  --gem-orange: #d4844a;
  --gem-green: #3f9a6f;
  --gem-yellow: #c9a84c;
  --gem-bar: #cfc6b8;
  --gem-seven: #e8d7c4;
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: var(--leading-normal);
}

body {
  min-height: 100svh;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 3px; }
button, [role="button"] { cursor: pointer; font-family: inherit; }
button:disabled, [role="button"][aria-disabled="true"] { cursor: not-allowed; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.skip {
  position: absolute;
  left: 12px;
  top: -48px;
  z-index: 200;
  background: var(--accent);
  color: var(--accent-fg);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
}
.skip:focus { top: 12px; }

.wrap {
  width: min(var(--wrap), calc(100% - 40px));
  margin-inline: auto;
}
.wrap-n {
  width: min(var(--wrap-narrow), calc(100% - 40px));
  margin-inline: auto;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: var(--tracking-display);
  line-height: var(--leading-tight);
  text-wrap: balance;
  margin: 0;
}
p { text-wrap: pretty; margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: var(--text-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--pearl);
  font-weight: 500;
}
.eyebrow::before {
  content: "";
  width: 18px;
  height: 1px;
  background: var(--pearl);
}

.kicker {
  font-size: var(--text-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-subtle);
  font-weight: 500;
}

.muted { color: var(--fg-muted); }
.subtle { color: var(--fg-subtle); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 500;
  font-size: var(--text-sm);
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: transform var(--motion-quick) var(--ease-out),
              background-color var(--motion-fast) var(--ease-out),
              border-color var(--motion-fast) var(--ease-out),
              opacity var(--motion-fast) var(--ease-out);
}
.btn:active { transform: scale(0.98); }
.btn-primary {
  background: var(--fg);
  color: var(--bg);
}
.btn-primary:hover { background: var(--accent); color: var(--accent-fg); }
.btn-ghost {
  background: transparent;
  color: var(--fg);
  border-color: var(--border-strong);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn-accent {
  background: var(--accent);
  color: var(--accent-fg);
}
.btn-accent:hover { filter: brightness(1.06); }
.btn .arrow {
  width: 14px;
  height: 14px;
  display: block;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  display: flex;
  align-items: center;
  backdrop-filter: blur(16px);
  background: color-mix(in oklab, var(--bg) 78%, transparent);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  width: min(var(--wrap), calc(100% - 32px));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--fg);
}
.brand-mark {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
}
.brand-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: -0.03em;
  line-height: 1;
}
.brand-name span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-subtle);
  margin-top: 3px;
}
.nav {
  display: flex;
  align-items: center;
  gap: 22px;
}
.nav a {
  text-decoration: none;
  font-size: var(--text-sm);
  color: var(--fg-muted);
  transition: color var(--motion-quick) var(--ease-out);
}
.nav a:hover { color: var(--fg); }
.nav-cta { margin-left: 6px; }
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--fg);
  align-items: center;
  justify-content: center;
}
.menu-toggle svg { width: 20px; height: 20px; }

/* Hero */
.hero {
  position: relative;
  min-height: calc(100svh - var(--header-h));
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 40%;
}
.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, color-mix(in oklab, var(--bg) 18%, transparent) 0%,
      color-mix(in oklab, var(--bg) 55%, transparent) 42%,
      var(--bg) 100%),
    radial-gradient(80% 60% at 80% 10%, color-mix(in oklab, var(--accent) 12%, transparent), transparent 60%);
}
.hero-inner {
  width: min(var(--wrap), calc(100% - 40px));
  margin: 0 auto;
  padding: var(--space-8) 0 var(--space-7);
}
.hero h1 {
  font-size: var(--text-3xl);
  max-width: 16ch;
  margin: 16px 0 18px;
}
.hero-lead {
  max-width: 54ch;
  color: var(--fg-muted);
  font-size: var(--text-lg);
  margin-bottom: 28px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
}
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  color: var(--fg-subtle);
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.trust-row span::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}

/* Stats */
.stats {
  border-block: 1px solid var(--border);
  background: var(--bg-elevated);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  width: min(var(--wrap), calc(100% - 40px));
  margin: 0 auto;
}
.stat {
  padding: 22px 16px;
  border-right: 1px solid var(--border);
}
.stat:last-child { border-right: 0; }
.stat b {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
}
.stat small {
  display: block;
  margin-top: 4px;
  color: var(--fg-subtle);
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Sections */
.section {
  padding: var(--space-9) 0;
}
.section + .section { padding-top: 0; }
.section-head {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 24px;
  margin-bottom: 36px;
  align-items: end;
}
.section-head h2 {
  font-size: var(--text-2xl);
  max-width: 18ch;
}
.chap {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--pearl);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.prose {
  color: var(--fg-muted);
  max-width: 68ch;
}
.prose h3 {
  font-size: var(--text-xl);
  color: var(--fg);
  margin: 1.6em 0 0.5em;
}
.prose a { color: var(--accent); }

.two-col {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: start;
}
.media-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
}
.media-card img { width: 100%; height: 100%; object-fit: cover; min-height: 280px; }
.media-card figcaption {
  padding: 14px 18px 16px;
  font-size: var(--text-xs);
  color: var(--fg-subtle);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Callout */
.callout {
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  border-radius: var(--radius-xl);
  padding: 28px;
  margin: 28px 0;
}
.callout strong { color: var(--fg); font-weight: 500; }
.callout p { margin: 0; }

/* Spec table */
.spec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.spec-item {
  background: var(--bg-elevated);
  padding: 18px 20px;
}
.spec-item dt {
  font-size: var(--text-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-subtle);
  margin-bottom: 6px;
}
.spec-item dd {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}

/* Steps */
.steps {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--border);
}
.step {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.step-n {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--pearl);
  letter-spacing: -0.03em;
}
.step h3 { font-size: 1.25rem; margin-bottom: 8px; }
.step p { color: var(--fg-muted); margin: 0; }

/* Reels */
.reels-panel {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 22px;
  position: sticky;
  top: calc(var(--header-h) + 16px);
}
.reels {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin: 8px 0 18px;
}
.reel {
  background: #0b0c11;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 10px 6px;
  display: grid;
  gap: 8px;
  min-height: 196px;
  transition: border-color var(--motion-fast) var(--ease-out),
              box-shadow var(--motion-fast) var(--ease-out);
}
.reel.is-wild {
  border-color: color-mix(in oklab, var(--accent) 55%, transparent);
  box-shadow: 0 0 0 1px color-mix(in oklab, var(--accent) 25%, transparent);
}
.cell {
  height: 52px;
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  background: #14161e;
  overflow: hidden;
}
.gem {
  width: 28px;
  height: 28px;
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
}
.gem-p { background: linear-gradient(135deg, #9a7cc4, var(--gem-purple)); }
.gem-b { background: linear-gradient(135deg, #6aa3dd, var(--gem-blue)); }
.gem-o { background: linear-gradient(135deg, #e0a36e, var(--gem-orange)); }
.gem-g { background: linear-gradient(135deg, #6cbc91, var(--gem-green)); }
.gem-y { background: linear-gradient(135deg, #e0c56e, var(--gem-yellow)); }
.sym-bar, .sym-7 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: var(--gem-bar);
}
.wild-burst {
  width: 34px;
  height: 34px;
  color: var(--accent);
}
.reel-note {
  font-size: var(--text-xs);
  color: var(--fg-subtle);
  text-align: center;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.reels-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  align-items: center;
}

/* Paytable */
.pay-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
table.pay {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
  font-variant-numeric: tabular-nums;
}
.pay th, .pay td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.pay th {
  font-size: var(--text-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-subtle);
  font-weight: 500;
  background: var(--bg-elevated);
}
.pay td { color: var(--fg-muted); }
.pay tr:last-child td { border-bottom: 0; }
.sym {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--fg);
}
.dot {
  width: 14px;
  height: 14px;
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
  flex: 0 0 14px;
}

/* Offers */
.offer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 16px;
}
.offer {
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  border-radius: var(--radius-xl);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 240px;
}
.offer.featured {
  background:
    linear-gradient(180deg, color-mix(in oklab, var(--accent) 8%, var(--bg-elevated)), var(--bg-elevated));
  border-color: color-mix(in oklab, var(--accent) 28%, var(--border));
}
.offer h3 { font-size: 1.45rem; }
.offer p { color: var(--fg-muted); flex: 1; }
.offer .btn { align-self: flex-start; }

/* Pros cons */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.panel {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  background: var(--bg-elevated);
}
.panel h3 { margin-bottom: 14px; font-size: 1.2rem; }
.panel ul { margin: 0; padding: 0; list-style: none; }
.panel li {
  padding: 10px 0 10px 18px;
  border-bottom: 1px solid var(--border);
  color: var(--fg-muted);
  position: relative;
}
.panel li:last-child { border-bottom: 0; }
.panel.good li::before,
.panel.bad li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  width: 7px;
  height: 1px;
  background: var(--ok);
}
.panel.bad li::before { background: var(--danger); }

/* FAQ */
.faq details {
  border-bottom: 1px solid var(--border);
}
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 36px 20px 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  position: absolute;
  right: 4px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 1px solid var(--fg-muted);
  border-bottom: 1px solid var(--fg-muted);
  transform: translateY(-70%) rotate(45deg);
  transition: transform var(--motion-fast) var(--ease-out);
}
.faq details[open] summary::after {
  transform: translateY(-30%) rotate(225deg);
}
.faq .ans {
  color: var(--fg-muted);
  padding: 0 0 22px;
  max-width: 70ch;
}

/* Responsible */
.rg {
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px;
  background: var(--bg-elevated);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 28px;
}
.rg-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.chip {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  text-decoration: none;
  font-size: var(--text-sm);
  color: var(--fg);
}
.chip:hover { border-color: var(--accent); color: var(--accent); }

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 48px 0 120px;
  color: var(--fg-subtle);
  font-size: var(--text-sm);
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 36px;
}
.foot-grid a { color: var(--fg-muted); text-decoration: none; }
.foot-grid a:hover { color: var(--fg); }
.foot-grid ul { list-style: none; margin: 12px 0 0; padding: 0; }
.foot-grid li { margin: 8px 0; }
.legal {
  border-top: 1px solid var(--border);
  padding-top: 22px;
  display: grid;
  gap: 10px;
  font-size: var(--text-xs);
  line-height: 1.55;
}

/* Redirect card (used on /go/) */
.gate-card {
  width: min(460px, 100%);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius-xl) + 8px);
  padding: 32px;
}
.gate-card h2 { font-size: 1.8rem; margin: 8px 0 12px; }
.gate-card p { color: var(--fg-muted); }

/* Bottom bar */
.cta-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  background: var(--bg-elevated);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--border);
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  display: none;
}
.cta-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: min(var(--wrap), 100%);
  margin: 0 auto;
}
.cta-bar b { font-weight: 500; display: block; }
.cta-bar small { color: var(--fg-subtle); }

/* Pull */
.pull {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 1rem + 1.4vw, 2rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.3;
  color: var(--fg);
  max-width: 22ch;
  margin: 8px 0 0;
}

/* Variants list */
.var-list {
  display: grid;
  gap: 12px;
}
.var {
  display: grid;
  grid-template-columns: 88px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--bg-elevated);
  text-decoration: none;
  transition: border-color var(--motion-fast) var(--ease-out);
}
.var:hover { border-color: var(--accent); }
.var-tag {
  font-size: var(--text-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pearl);
}
.var h3 { font-size: 1.05rem; }
.var p { margin: 4px 0 0; font-size: var(--text-sm); color: var(--fg-muted); }

/* Toc */
.toc {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 8px 0 0;
}
.toc a {
  text-decoration: none;
  font-size: var(--text-sm);
  color: var(--fg-muted);
  border: 1px solid var(--border);
  padding: 8px 12px;
  border-radius: 999px;
}
.toc a:hover { color: var(--fg); border-color: var(--border-strong); }

@media (max-width: 980px) {
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .stat:nth-child(3) { border-right: 0; }
  .stat:nth-child(n+4) { border-top: 1px solid var(--border); }
  .two-col, .offer-grid, .split, .rg, .foot-grid, .section-head {
    grid-template-columns: 1fr;
  }
  .section-head { gap: 8px; }
  .hero h1 { max-width: 14ch; }
}

@media (max-width: 760px) {
  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    background: var(--bg-elevated);
    border-bottom: 1px solid var(--border);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px 20px 20px;
    gap: 4px;
  }
  .nav.open { display: flex; }
  .nav a { padding: 12px 4px; min-height: 44px; display: flex; align-items: center; }
  .nav-cta { margin: 8px 0 0; width: 100%; }
  .menu-toggle { display: inline-flex; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat { border-right: 1px solid var(--border); }
  .stat:nth-child(2n) { border-right: 0; }
  .stat:nth-child(n+3) { border-top: 1px solid var(--border); }
  .cta-bar { display: block; }
  .site-footer { padding-bottom: 140px; }
  .hero { min-height: auto; }
  .hero-inner {
    padding-top: 36px;
    padding-bottom: calc(28px + var(--cta-bar-h) + env(safe-area-inset-bottom));
  }
  .hero h1 {
    font-size: clamp(1.85rem, 7.2vw, 2.35rem);
    max-width: 18ch;
  }
  .hero-lead { font-size: 1.02rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .cell { height: 42px; }
  .gem { width: 22px; height: 22px; }
  table.pay { min-width: 0; }
  .pay th:nth-child(5),
  .pay td:nth-child(5) { display: none; }
  .pay th, .pay td { padding: 10px 10px; font-size: 0.85rem; }
  .reels-panel { position: static; }
  .var { grid-template-columns: 1fr; }
  .gate-card { padding: 24px; }
  .wrap, .hero-inner, .header-inner, .wrap-n {
    width: min(var(--wrap), calc(100% - 28px));
  }
  .section { padding: 64px 0; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}
