:root {
  --bg: #070a12;
  --bg-2: #0d1220;
  --card: rgba(22, 29, 45, .72);
  --card-solid: #161d2d;
  --border: rgba(120, 150, 210, .16);
  --text: #eef2fa;
  --muted: #95a2bb;
  --accent: #3ee08f;
  --accent-2: #2fc7ff;
  --accent-ink: #04210f;
  --gold: #f5b83d;
  --warn: #ffb547;
  --radius: 16px;
  --max: 1120px;
  --display: "Space Grotesk", "Inter", system-ui, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

[id] { scroll-margin-top: 80px; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font: 16px/1.65 "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Animated background: drifting colour blobs + faint grid */
body::before, body::after {
  content: ""; position: fixed; z-index: -2; pointer-events: none;
  width: 60vmax; height: 60vmax; border-radius: 50%;
  filter: blur(90px); opacity: .22;
}
body::before {
  background: radial-gradient(circle, var(--accent) 0%, transparent 65%);
  top: -25vmax; left: -15vmax;
  animation: drift-a 22s ease-in-out infinite alternate;
}
body::after {
  background: radial-gradient(circle, #6b4dff 0%, transparent 65%);
  bottom: -30vmax; right: -20vmax;
  animation: drift-b 26s ease-in-out infinite alternate;
}
.bg-grid {
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at 50% 0%, #000 0%, transparent 70%);
}
@keyframes drift-a { to { transform: translate(18vmax, 14vmax) scale(1.15); } }
@keyframes drift-b { to { transform: translate(-16vmax, -12vmax) scale(1.1); } }

a { color: var(--accent); }
a:hover { text-decoration: none; }

img { max-width: 100%; }

h1, h2, h3, .logo { font-family: var(--display); }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 20px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 20;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background .3s, border-color .3s, backdrop-filter .3s;
}
.site-header.scrolled {
  background: rgba(7, 10, 18, .78);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--border);
}
.site-header .wrap {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; height: 68px;
}
.logo {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 1.2rem; letter-spacing: -.02em;
  color: var(--text); text-decoration: none;
}
.logo-text { font-weight: 700; }
.logo-text span { color: var(--accent); }
.logo .logo-mark {
  width: 30px; height: 30px; border-radius: 9px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  display: grid; place-items: center; color: var(--accent-ink); font-size: .9rem; font-weight: 800;
  box-shadow: 0 0 18px rgba(62, 224, 143, .45);
}
.nav { display: flex; gap: 24px; align-items: center; }
.nav a:not(.btn) {
  white-space: nowrap;
  position: relative; color: var(--muted); text-decoration: none; font-weight: 500; font-size: .95rem;
  transition: color .2s;
}
.nav a:not(.btn)::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 2px;
  background: var(--accent); border-radius: 2px;
  transform: scaleX(0); transition: transform .25s ease;
}
.nav a:not(.btn):hover, .nav a[aria-current="page"] { color: var(--text); }
.nav a:not(.btn):hover::after, .nav a[aria-current="page"]::after { transform: scaleX(1); }

.menu-toggle {
  display: none; background: none; border: 1px solid var(--border);
  color: var(--text); border-radius: 8px; padding: 6px 10px; font-size: 1rem; cursor: pointer;
}

@media (max-width: 980px) {
  .menu-toggle { display: block; }
  .site-header { background: rgba(7, 10, 18, .85); backdrop-filter: blur(14px); }
  .nav {
    display: none; position: absolute; top: 68px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--bg-2); border-bottom: 1px solid var(--border);
  }
  .nav.open { display: flex; animation: drop .25s ease; }
  .nav a:not(.btn) { padding: 14px 20px; border-top: 1px solid var(--border); }
  .nav a:not(.btn)::after { display: none; }
  .nav .btn { margin: 12px 20px; }
}
@keyframes drop { from { opacity: 0; transform: translateY(-8px); } }

/* ---------- Buttons ---------- */
.btn {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: linear-gradient(135deg, var(--accent), #2bd0a0);
  color: var(--accent-ink);
  font-weight: 700; text-decoration: none;
  padding: 13px 24px; border-radius: 12px; border: 0; cursor: pointer;
  font-size: 1rem;
  box-shadow: 0 8px 28px -8px rgba(62, 224, 143, .6);
  transition: transform .18s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 14px 34px -8px rgba(62, 224, 143, .75); }
.btn:active { transform: translateY(0); }
.btn-sm { padding: 8px 15px; font-size: .9rem; }
.btn-ghost {
  background: rgba(255,255,255,.03); color: var(--text); border: 1px solid var(--border);
  box-shadow: none;
}
.btn-ghost:hover { border-color: rgba(62, 224, 143, .5); box-shadow: none; }

/* Light sweep across the main CTA */
.btn-shine::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 40%; left: -60%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.55), transparent);
  transform: skewX(-20deg);
  animation: sweep 3.2s ease-in-out infinite;
}
@keyframes sweep { 0%, 55% { left: -60%; } 100% { left: 130%; } }

/* ---------- Hero ---------- */
.hero { padding: 64px 0 40px; }
.hero-grid {
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 40px; align-items: center;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--accent); font-weight: 700;
  font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 18px;
  padding: 6px 12px; border: 1px solid rgba(62, 224, 143, .3); border-radius: 999px;
  background: rgba(62, 224, 143, .06);
}
.eyebrow .dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--accent);
  box-shadow: 0 0 0 0 rgba(62, 224, 143, .7); animation: ping 1.8s infinite;
}
@keyframes ping { 70% { box-shadow: 0 0 0 8px rgba(62, 224, 143, 0); } 100% { box-shadow: 0 0 0 0 rgba(62, 224, 143, 0); } }

.hero h1 {
  font-size: clamp(2.3rem, 5.4vw, 3.9rem); line-height: 1.04; letter-spacing: -.035em;
  margin: 0 0 18px;
}
.shine-text {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--accent-2), #b58cff, var(--accent));
  background-size: 300% 100%;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: flow 6s linear infinite;
}
@keyframes flow { to { background-position: 300% 0; } }

.hero p.lead { color: var(--muted); font-size: 1.15rem; max-width: 52ch; margin: 0 0 28px; }
.hero p.lead strong { color: var(--gold); }

.code-box {
  position: relative; display: inline-flex; align-items: stretch;
  background: var(--card-solid); border-radius: var(--radius); margin-bottom: 22px;
  isolation: isolate;
}
/* Rotating gradient border */
.code-box::before {
  content: ""; position: absolute; inset: -2px; z-index: -1; border-radius: calc(var(--radius) + 2px);
  background: conic-gradient(from var(--angle, 0deg), var(--accent), var(--accent-2), #b58cff, var(--gold), var(--accent));
  animation: spin-border 4s linear infinite;
}
.code-box::after {
  content: ""; position: absolute; inset: 0; z-index: -1; border-radius: var(--radius);
  background: var(--card-solid);
}
@property --angle { syntax: "<angle>"; initial-value: 0deg; inherits: false; }
@keyframes spin-border { to { --angle: 360deg; } }

.code-box .code {
  font: 800 1.7rem/1 ui-monospace, "SFMono-Regular", Consolas, monospace;
  letter-spacing: .1em; padding: 18px 26px; user-select: all;
}
.code-box button {
  background: linear-gradient(135deg, var(--accent), #2bd0a0); color: var(--accent-ink); border: 0;
  font-weight: 800; padding: 0 24px; cursor: pointer; font-size: .95rem;
  border-radius: 0 var(--radius) var(--radius) 0; margin: 3px 3px 3px 0;
  transition: filter .2s;
}
.code-box button:hover { filter: brightness(1.1); }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.fine { color: var(--muted); font-size: .84rem; margin-top: 18px; }

/* Floating case illustration */
.hero-art { position: relative; aspect-ratio: 1; max-width: 420px; justify-self: center; width: 100%; }
.hero-art .case {
  position: absolute; inset: 14%; width: 72%; height: 72%;
  filter: drop-shadow(0 30px 40px rgba(0,0,0,.55)) drop-shadow(0 0 30px rgba(62,224,143,.25));
  animation: float 5s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50% { transform: translateY(-16px) rotate(3deg); }
}
.halo {
  position: absolute; inset: 8%; border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 184, 61, .28), rgba(62, 224, 143, .12) 45%, transparent 70%);
  animation: pulse 4s ease-in-out infinite;
}
@keyframes pulse { 50% { transform: scale(1.08); opacity: .7; } }
.orbit { position: absolute; inset: 0; animation: rotate 18s linear infinite; }
.orbit span {
  position: absolute; width: 12px; height: 12px; border-radius: 3px;
  background: var(--accent); box-shadow: 0 0 14px var(--accent);
  transform: rotate(45deg);
}
.orbit span:nth-child(1) { top: 4%; left: 48%; }
.orbit span:nth-child(2) { bottom: 12%; left: 8%; background: #b58cff; box-shadow: 0 0 14px #b58cff; }
.orbit span:nth-child(3) { bottom: 18%; right: 4%; background: var(--gold); box-shadow: 0 0 14px var(--gold); }
@keyframes rotate { to { transform: rotate(360deg); } }
.sparkles i {
  position: absolute; width: 4px; height: 4px; border-radius: 50%; background: #fff;
  box-shadow: 0 0 8px #fff; opacity: 0; animation: twinkle 3s ease-in-out infinite;
}
.sparkles i:nth-child(1) { top: 22%; left: 20%; animation-delay: 0s; }
.sparkles i:nth-child(2) { top: 30%; right: 18%; animation-delay: .7s; }
.sparkles i:nth-child(3) { bottom: 26%; left: 30%; animation-delay: 1.4s; }
.sparkles i:nth-child(4) { top: 12%; right: 34%; animation-delay: 2.1s; }
.sparkles i:nth-child(5) { bottom: 16%; right: 28%; animation-delay: 1s; }
@keyframes twinkle { 0%, 100% { opacity: 0; transform: scale(.4); } 50% { opacity: 1; transform: scale(1.4); } }

@media (max-width: 860px) {
  .hero { padding-top: 40px; text-align: center; }
  .hero-grid { grid-template-columns: 1fr; gap: 12px; }
  .hero-art { order: -1; max-width: 240px; }
  .hero p.lead { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
}
@media (max-width: 420px) {
  .code-box .code { font-size: 1.35rem; padding: 16px 18px; }
  .code-box button { padding: 0 16px; }
}

/* ---------- Unbox reel ---------- */
.reel {
  position: relative; overflow: hidden; padding: 18px 0; margin: 8px 0 12px;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  background: rgba(13, 18, 32, .5);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.reel-track { display: flex; gap: 14px; width: max-content; animation: scroll-x 40s linear infinite; }
.reel:hover .reel-track { animation-play-state: paused; }
@keyframes scroll-x { to { transform: translateX(-50%); } }
.item {
  --r: #4b69ff;
  position: relative; width: 150px; flex: none;
  padding: 14px 14px 16px; border-radius: 12px;
  background: linear-gradient(180deg, color-mix(in srgb, var(--r) 18%, transparent), rgba(22, 29, 45, .9) 70%);
  border: 1px solid color-mix(in srgb, var(--r) 40%, transparent);
  overflow: hidden;
}
.item::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 3px; background: var(--r);
  box-shadow: 0 0 12px var(--r);
}
.item .rarity { font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: var(--r); font-weight: 700; }
.item .name { font-family: var(--display); font-weight: 700; margin-top: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.item.gold { --r: var(--gold); }
.item.gold .name { color: var(--gold); }

/* ---------- Sections ---------- */
section { padding: 64px 0; }
h2 { font-size: clamp(1.7rem, 3vw, 2.2rem); letter-spacing: -.025em; margin: 0 0 12px; line-height: 1.15; }
h3 { font-size: 1.15rem; margin: 28px 0 8px; }
.section-intro { color: var(--muted); max-width: 62ch; margin: 0 0 32px; }
.section-head { margin-bottom: 8px; }
.kicker { color: var(--accent); font-weight: 700; font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; }

.grid { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }

/* Glass cards with a cursor-following glow */
.card {
  position: relative; overflow: hidden;
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px;
  backdrop-filter: blur(8px);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.card::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: 0;
  background: radial-gradient(360px circle at var(--mx, 50%) var(--my, 50%), rgba(62, 224, 143, .14), transparent 45%);
  transition: opacity .3s;
}
.card:hover { transform: translateY(-4px); border-color: rgba(62, 224, 143, .35); box-shadow: 0 18px 40px -18px rgba(0,0,0,.7); }
.card:hover::before { opacity: 1; }
.card h3 { margin-top: 0; }
.card p { color: var(--muted); margin: 0; }
.card a.more { display: inline-block; margin-top: 14px; font-weight: 600; text-decoration: none; }
.card a.more:hover { text-decoration: underline; }
.card .icon {
  width: 44px; height: 44px; border-radius: 12px; margin-bottom: 14px;
  display: grid; place-items: center; font-size: 1.3rem;
  background: linear-gradient(135deg, rgba(62,224,143,.2), rgba(47,199,255,.15));
  border: 1px solid rgba(62, 224, 143, .25);
}

.steps { counter-reset: step; list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; position: relative; }
.steps li {
  counter-increment: step; position: relative;
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 20px 22px 20px 70px; backdrop-filter: blur(8px);
  transition: border-color .25s, transform .25s;
}
.steps li:hover { border-color: rgba(62, 224, 143, .35); transform: translateX(4px); }
.steps li::before {
  content: counter(step); position: absolute; left: 20px; top: 18px;
  width: 32px; height: 32px; border-radius: 10px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: var(--accent-ink);
  display: grid; place-items: center; font-weight: 800; font-family: var(--display);
  box-shadow: 0 0 18px rgba(62, 224, 143, .35);
}

.pros-cons { display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.pros-cons ul { margin: 0; padding-left: 20px; }
.pros-cons li { margin: 6px 0; color: var(--muted); }
.pros h3 { color: var(--accent); }
.cons h3 { color: var(--warn); }

.callout {
  background: rgba(255, 181, 71, .07); border: 1px solid rgba(255, 181, 71, .35);
  border-radius: var(--radius); padding: 18px 20px; color: var(--text); margin: 20px 0;
}
.callout p { margin: 0; }
.callout strong { color: var(--warn); }

.grid.mini { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 14px; margin: 18px 0; }
.grid.mini .card { padding: 20px; }
.grid.mini .card h3 { font-size: 1.05rem; margin-bottom: 6px; }

/* Screenshots (your own). Hidden automatically if the file is missing. */
.shot {
  margin: 18px 0 22px; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border); box-shadow: 0 24px 50px -24px rgba(0,0,0,.8);
}
.shot img { display: block; width: 100%; height: auto; transition: transform .5s ease; }
.shot:hover img { transform: scale(1.02); }

/* Free case odds */
.odds-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.odds-grid .shot { margin: 0; }
@media (max-width: 860px) { .odds-grid { grid-template-columns: 1fr; gap: 24px; } }
.odds { display: grid; gap: 12px; }
.odds-row {
  --c: #95a2bb;
  display: flex; align-items: center; gap: 18px;
  background: var(--card); border: 1px solid var(--border); border-left: 4px solid var(--c);
  border-radius: 12px; padding: 16px 20px;
}
.odds-row.gold { --c: var(--gold); box-shadow: 0 0 30px -12px rgba(245, 184, 61, .5); }
.odds-row .pct {
  font: 800 1.5rem/1 var(--display); color: var(--c); min-width: 92px;
}
.odds-row .what { display: flex; flex-direction: column; }
.odds-row .what small { color: var(--muted); margin-top: 2px; }
.odds-note { color: var(--muted); margin: 18px 0 0; }

.crumbs { margin: 44px 0 -36px; font-size: .88rem; color: var(--muted); }
.crumbs a { color: var(--muted); }
.crumbs a:hover { color: var(--accent); }

.jackpot-bar {
  display: flex; height: 40px; border-radius: 12px; overflow: hidden; margin: 18px 0 6px;
  font-weight: 700; font-size: .85rem; color: var(--accent-ink);
}
.jackpot-bar span { display: grid; place-items: center; white-space: nowrap; overflow: hidden; }
.jackpot-bar span:nth-child(1) { background: var(--accent); }
.jackpot-bar span:nth-child(2) { background: var(--accent-2); }
.jackpot-bar span:nth-child(3) { background: #b58cff; }

/* ---------- Article pages ---------- */
.article { max-width: 780px; }
.article h1 {
  font-size: clamp(2rem, 4.5vw, 3rem); letter-spacing: -.035em; line-height: 1.08; margin: 56px 0 14px;
  background: linear-gradient(180deg, #fff, #b8c3d9); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.article .meta { color: var(--muted); font-size: .9rem; margin-bottom: 28px; }
.article h2 { margin-top: 52px; }
.article h2::before {
  content: ""; display: block; width: 36px; height: 3px; border-radius: 3px; margin-bottom: 14px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}
.article p, .article li { color: #cdd5e4; }
.toc {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 18px 24px; margin: 0 0 32px; backdrop-filter: blur(8px);
}
.toc ol { margin: 8px 0 0; padding-left: 20px; }
.toc a { text-decoration: none; }
.toc a:hover { text-decoration: underline; }

.cta-inline {
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  background: linear-gradient(135deg, rgba(62,224,143,.12), rgba(47,199,255,.08));
  border: 1px solid rgba(62, 224, 143, .4); border-radius: var(--radius);
  padding: 20px 24px; margin: 36px 0;
}
.cta-inline p { margin: 0; color: var(--text); }

/* ---------- FAQ ---------- */
details {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 0; margin-bottom: 10px; backdrop-filter: blur(8px);
  transition: border-color .2s;
}
details[open] { border-color: rgba(62, 224, 143, .35); }
summary {
  cursor: pointer; font-weight: 600; padding: 18px 22px; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: "+"; font-size: 1.4rem; line-height: 1; color: var(--accent);
  transition: transform .25s ease;
}
details[open] summary::after { transform: rotate(45deg); }
details p { color: var(--muted); margin: 0; padding: 0 22px 18px; }
details[open] p { animation: fade-down .3s ease; }
@keyframes fade-down { from { opacity: 0; transform: translateY(-6px); } }

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--border); background: rgba(13, 18, 32, .8);
  padding: 40px 0; margin-top: 56px; color: var(--muted); font-size: .88rem;
}
.site-footer p { margin: 6px 0; }
.footer-cols {
  display: grid; gap: 24px; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  padding-bottom: 28px; margin-bottom: 24px; border-bottom: 1px solid var(--border);
}
.footer-cols h4 {
  margin: 0 0 10px; color: var(--text); font-family: var(--display); font-size: .95rem;
}
.footer-cols a { display: block; color: var(--muted); text-decoration: none; padding: 3px 0; }
.footer-cols a:hover { color: var(--accent); }
.site-footer .badges { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 14px; }
.badge {
  border: 1px solid var(--border); border-radius: 999px; padding: 4px 12px;
  color: var(--text); font-weight: 600; font-size: .8rem;
}
.badge.age { border-color: var(--warn); color: var(--warn); }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }

/* Hero entrance */
.hero-copy > * { animation: rise .8s cubic-bezier(.2,.7,.2,1) both; }
.hero-copy > *:nth-child(2) { animation-delay: .08s; }
.hero-copy > *:nth-child(3) { animation-delay: .16s; }
.hero-copy > *:nth-child(4) { animation-delay: .24s; }
.hero-copy > *:nth-child(5) { animation-delay: .32s; }
.hero-copy > *:nth-child(6) { animation-delay: .4s; }
.hero-art { animation: pop 1s .2s cubic-bezier(.2,.9,.3,1.2) both; }
@keyframes rise { from { opacity: 0; transform: translateY(20px); } }
@keyframes pop { from { opacity: 0; transform: scale(.8); } }

/* ---------- Age gate ---------- */
.age-gate {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(4, 6, 11, .9); backdrop-filter: blur(8px);
  display: grid; place-items: center; padding: 20px;
  animation: fade .3s ease;
}
.age-gate .box {
  background: var(--card-solid); border: 1px solid var(--border); border-radius: 20px;
  max-width: 420px; width: 100%; padding: 34px 28px; text-align: center;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,.8), 0 0 0 1px rgba(62,224,143,.15);
  animation: pop .4s cubic-bezier(.2,.9,.3,1.2);
}
.age-gate h2 { margin-bottom: 8px; }
.age-gate p { color: var(--muted); margin: 0 0 24px; }
.age-gate .actions { display: flex; gap: 10px; justify-content: center; }
@keyframes fade { from { opacity: 0; } }

/* ---------- Toast + confetti ---------- */
.toast {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(20px);
  background: var(--accent); color: var(--accent-ink); font-weight: 700;
  padding: 10px 18px; border-radius: 10px; opacity: 0; pointer-events: none;
  transition: opacity .2s, transform .2s; z-index: 200;
  box-shadow: 0 10px 30px -8px rgba(62,224,143,.7);
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

.confetti {
  position: fixed; z-index: 150; width: 8px; height: 12px; border-radius: 2px; pointer-events: none;
  animation: confetti 900ms cubic-bezier(.15,.6,.4,1) forwards;
}
@keyframes confetti {
  to { transform: translate(var(--dx), var(--dy)) rotate(var(--rot)); opacity: 0; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}
