/* =====================================================================
   Card Fiesta Club — "Tropical Poster" design system
   Solid color BLOCKS per section · ink outlines + hard offset shadows
   (risograph/poster) · Bricolage Grotesque + Space Grotesk · zero gradients
   ===================================================================== */

:root {
  /* core */
  --ink: #1b1016;            /* warm near-black: text, borders, dark blocks */
  --ink-soft: rgba(27, 16, 22, 0.74);
  --ink-muted: rgba(27, 16, 22, 0.55);
  --paper: #fff4e6;          /* warm cream page/light blocks */
  --paper-2: #fffaf2;        /* card cream */

  /* tropical poster palette (locked, used as deliberate blocks) */
  --tomato: #ff4d2e;         /* hero / primary block */
  --jade: #0f7a64;           /* cool block */
  --lime: #c8f000;           /* loud accent + CTA block */
  --marigold: #ffb100;       /* gold accent */
  --magenta: #ff2d8f;        /* hot pink accent (sparing) */
  --sky: #18b6c9;            /* teal-cyan accent */

  /* light text (on ink / dark blocks) */
  --sand: #fff4e6;
  --sand-2: #f3ddc8;
  --sand-muted: #cbb3a6;

  /* aliases kept for inline refs in markup/JS (modal, legal, forms) */
  --gold: var(--marigold);
  --coral: var(--magenta);
  --aqua: var(--sky);

  /* shape + material */
  --radius: 14px;
  --radius-sm: 12px;
  --bw: 2.5px;                          /* ink border width */
  --shadow-hard: 4px 4px 0 var(--ink);
  --shadow-card: 6px 6px 0 var(--ink);
  --shadow-card-lg: 9px 9px 0 var(--ink);

  --wrap: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: "Space Grotesk", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 2px; }
a:hover { text-decoration-color: var(--tomato); }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 24px; }
.tabular { font-variant-numeric: tabular-nums; font-feature-settings: "tnum" 1; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--lime); color: var(--ink); padding: 10px 16px; font-weight: 700;
  border: var(--bw) solid var(--ink);
}
.skip-link:focus { left: 0; }

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

/* display type */
h1, h2, h3, .display { font-family: "Bricolage Grotesque", "Space Grotesk", sans-serif; }

/* ---------- Buttons (solid + ink outline + hard shadow + push) ---------- */
.btn-neon, .btn-outline {
  font-family: "Space Grotesk", sans-serif; font-weight: 700; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border-radius: var(--radius-sm); border: var(--bw) solid var(--ink);
  letter-spacing: .2px; text-decoration: none;
  transition: transform .12s ease, box-shadow .12s ease, background-color .15s ease;
}
.btn-neon {
  background: var(--lime); color: var(--ink); padding: 13px 24px; font-size: 15px;
  box-shadow: var(--shadow-hard);
}
.btn-neon:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--ink); text-decoration: none; }
.btn-neon:active { transform: translate(2px, 2px); box-shadow: 0 0 0 var(--ink); }
.btn-neon-lg { padding: 16px 32px; font-size: 17px; }
.btn-neon-sm { padding: 9px 16px; font-size: 13px; box-shadow: 3px 3px 0 var(--ink); }
.btn-neon-block, .btn-outline-block { width: 100%; display: flex; }

.btn-outline {
  background: var(--paper); color: var(--ink); padding: 13px 22px; font-size: 15px;
  box-shadow: var(--shadow-hard);
}
.btn-outline:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--ink); text-decoration: none; background: var(--paper-2); }
.btn-outline:active { transform: translate(2px, 2px); box-shadow: 0 0 0 var(--ink); }
.btn-outline-sm { padding: 9px 16px; font-size: 13px; }

/* ---------- Masthead (ink block) ---------- */
.masthead {
  position: sticky; top: 0; z-index: 90;
  background: var(--ink); border-bottom: var(--bw) solid var(--ink);
}
.masthead-bar { display: flex; align-items: center; gap: 22px; min-height: 68px; }
.masthead-brand { display: inline-flex; align-items: center; flex-shrink: 0; }
.masthead-brand img { height: 36px; width: auto; }
.masthead-nav { display: flex; gap: 24px; margin-left: 10px; }
.masthead-nav a {
  color: var(--sand-2); font-weight: 600; font-size: 15px; text-decoration: none;
  position: relative; padding: 6px 0;
}
.masthead-nav a::after { content: ""; position: absolute; left: 0; bottom: 0; height: 3px; width: 0; background: var(--lime); transition: width .18s ease; }
.masthead-nav a:hover { color: #fff; }
.masthead-nav a:hover::after { width: 100%; }
.masthead-end { margin-left: auto; display: flex; align-items: center; gap: 16px; }
.masthead .btn-neon { box-shadow: 3px 3px 0 var(--tomato); }
.masthead .btn-neon:hover { box-shadow: 5px 5px 0 var(--tomato); }
.masthead .btn-neon:active { box-shadow: 0 0 0 var(--tomato); }

.occupancy { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; color: var(--sand-muted); font-weight: 600; }
.occupancy .live-count { color: var(--lime); }
.occupancy-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--lime); animation: ping 2.2s infinite; }
@keyframes ping { 0% { box-shadow: 0 0 0 0 rgba(200,240,0,.6); } 70% { box-shadow: 0 0 0 9px rgba(200,240,0,0); } 100% { box-shadow: 0 0 0 0 rgba(200,240,0,0); } }

.nav-toggle { display: none; background: transparent; border: var(--bw) solid var(--sand-2); width: 44px; height: 44px; border-radius: 10px; cursor: pointer; flex-direction: column; gap: 5px; align-items: center; justify-content: center; }
.nav-toggle span { width: 20px; height: 2.5px; background: var(--sand); border-radius: 2px; }

/* ---------- Hero (tomato block) ---------- */
.spotlight { position: relative; overflow: hidden; padding: 60px 0 64px; background: var(--tomato); border-bottom: var(--bw) solid var(--ink); }
.spotlight-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }

/* flat poster sun */
.sun-disc {
  position: absolute; top: -70px; right: 6%; width: 220px; height: 220px; border-radius: 50%; z-index: 0;
  background: var(--marigold); border: var(--bw) solid var(--ink);
}
.fireworks { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; display: block; }
/* faint halftone dots for poster texture */
.hero-scrim {
  position: absolute; inset: 0; z-index: 1; pointer-events: none; opacity: .5;
  background-image: radial-gradient(rgba(27,16,22,0.22) 1.4px, transparent 1.5px);
  background-size: 18px 18px;
}
/* palm sits bottom-right behind the poster, mirrored, so the copy column stays clean */
.palm { position: absolute; bottom: 0; right: -34px; left: auto; height: 70%; width: auto; opacity: 1; z-index: 1; transform-origin: 100% 100%; animation: sway 7s ease-in-out infinite; }
@keyframes sway { 0%, 100% { transform: scaleX(-1) rotate(-1.4deg); } 50% { transform: scaleX(-1) rotate(1.2deg); } }
.ocean-line { position: absolute; left: 0; right: 0; bottom: 0; height: 0; }

.spotlight-core { position: relative; z-index: 3; display: grid; grid-template-columns: 1.12fr 0.88fr; gap: 48px; align-items: center; }

.spotlight-pulse {
  display: inline-flex; align-items: center; gap: 9px; margin: 0 0 20px;
  padding: 7px 14px; border-radius: 999px; background: var(--ink); color: var(--sand);
  font-size: 13px; font-weight: 600;
}
.spotlight-pulse .live-count { color: var(--lime); font-weight: 700; }
.pulse-ring { width: 9px; height: 9px; border-radius: 50%; background: var(--lime); }

.hero-headline { margin: 0 0 22px; line-height: .92; }
.hl-kicker { display: block; font-family: "Space Grotesk"; font-weight: 600; font-size: clamp(14px, 1.8vw, 17px); color: var(--ink); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; }
.hl-brand { display: block; font-family: "Bricolage Grotesque"; font-weight: 800; font-size: clamp(54px, 10vw, 120px); letter-spacing: -2px; color: var(--ink); }
.hl-sub { display: block; font-family: "Bricolage Grotesque"; font-weight: 700; font-size: clamp(20px, 3.2vw, 34px); color: var(--paper); margin-top: 2px; }

.offer-band {
  display: inline-flex; align-items: center; gap: 16px; margin: 6px 0 22px;
  padding: 12px 20px; border-radius: var(--radius); background: var(--paper-2);
  border: var(--bw) solid var(--ink); box-shadow: var(--shadow-card);
}
.offer-num { font-family: "Bricolage Grotesque"; font-weight: 800; font-size: clamp(38px, 6vw, 58px); line-height: 1; color: var(--tomato); }
.offer-unit { font-weight: 700; font-size: 16px; color: var(--ink); line-height: 1.15; }
.offer-unit em { font-style: normal; font-weight: 600; color: var(--ink-muted); font-size: 13px; }

.spotlight-hook { font-size: clamp(16px, 1.9vw, 19px); color: var(--ink); margin: 0 0 8px; max-width: 32em; font-weight: 500; }
.spotlight-hook strong { font-weight: 700; }
.spotlight-legal { font-size: 12.5px; color: var(--ink-soft); margin: 0 0 22px; font-weight: 500; }

.spotlight-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 24px; }

.trust-chips { list-style: none; display: flex; flex-wrap: wrap; gap: 14px; padding: 0; margin: 0; font-size: 13px; color: var(--ink); font-weight: 600; }
.trust-chips li { display: inline-flex; align-items: center; gap: 8px; }
.chip-glow { display: inline-grid; place-items: center; min-width: 44px; height: 26px; padding: 0 9px; border-radius: 8px; font-weight: 700; font-size: 12px; color: var(--ink); background: var(--lime); border: 2px solid var(--ink); }

/* hero poster card (ink block on tomato) */
.hero-poster { position: relative; justify-self: center; }
.poster-card {
  position: relative; width: min(340px, 86vw); padding: 26px 24px 22px; border-radius: var(--radius);
  background: var(--ink); border: var(--bw) solid var(--ink); box-shadow: 9px 9px 0 rgba(27,16,22,0.9);
  transform: rotate(-2deg); transition: transform .25s ease; overflow: hidden;
}
.hero-poster:hover .poster-card { transform: rotate(-1deg) translate(-3px, -3px); }
.poster-stamp { position: absolute; top: 18px; right: -36px; transform: rotate(38deg); background: var(--magenta); color: #fff; font-weight: 700; font-size: 11px; letter-spacing: 1px; padding: 5px 42px; border-top: 2px solid var(--ink); border-bottom: 2px solid var(--ink); }
.poster-eyebrow { margin: 0; font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--sky); }
.poster-prize { margin: 2px 0 6px; font-family: "Bricolage Grotesque"; font-weight: 800; font-size: 58px; line-height: 1; color: var(--lime); }
.poster-line { margin: 0 0 14px; font-size: 13px; color: var(--sand-muted); }
.poster-divider { display: flex; align-items: center; gap: 6px; margin: 14px 0; }
.poster-divider span { height: 2px; flex: 1; background: rgba(255,244,230,0.18); }
.poster-divider span:nth-child(2) { flex: 0 0 8px; height: 8px; border-radius: 50%; background: var(--marigold); }
.poster-perks { list-style: none; padding: 0; margin: 0 0 18px; display: grid; gap: 10px; }
.poster-perks li { position: relative; padding-left: 24px; font-size: 14px; color: var(--sand-2); }
.poster-perks li::before { content: ""; position: absolute; left: 0; top: 6px; width: 11px; height: 11px; background: var(--lime); border: 2px solid var(--ink); }
.poster-serial { margin: 12px 0 0; font-size: 10.5px; letter-spacing: 1.5px; color: var(--sand-muted); text-align: center; font-variant-numeric: tabular-nums; }

.poster-coin { position: absolute; display: grid; place-items: center; border-radius: 50%; color: var(--ink); border: 2.5px solid var(--ink); }
.poster-coin svg { width: 52%; height: 52%; }
.coin-1 { width: 54px; height: 54px; background: var(--marigold); top: -18px; left: -16px; animation: bob 5s ease-in-out infinite; }
.coin-2 { width: 40px; height: 40px; background: var(--sky); bottom: 30px; right: -18px; animation: bob 6s ease-in-out infinite .5s; }
.coin-3 { width: 46px; height: 46px; background: var(--magenta); color: #fff; bottom: -16px; left: 24px; animation: bob 7s ease-in-out infinite 1s; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }

.spotlight-fn { position: relative; z-index: 3; margin: 30px auto 0; font-size: 12px; color: var(--ink-soft); }
.spotlight-fn a { color: var(--ink); }

/* ---------- Winners marquee (ink ticker) ---------- */
.pulse-wins { position: relative; z-index: 3; background: var(--ink); border-bottom: var(--bw) solid var(--ink); }
.pulse-wins-inner { display: flex; align-items: center; gap: 18px; max-width: var(--wrap); margin-inline: auto; padding: 12px 24px; }
.pulse-badge { flex-shrink: 0; font-weight: 700; font-size: 12px; letter-spacing: 1px; color: var(--ink); background: var(--lime); padding: 6px 12px; border-radius: 8px; }
.pulse-track { flex: 1; overflow: hidden; position: relative; -webkit-mask: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); mask: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.pulse-marquee { display: inline-flex; gap: 36px; white-space: nowrap; animation: marquee 34s linear infinite; }
.pulse-wins:hover .pulse-marquee { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
.pulse-win { font-size: 13.5px; color: var(--sand-2); }
.pulse-win-amt { color: var(--lime); font-weight: 700; }
.pulse-win-name { color: #fff; font-weight: 600; }
.pulse-stat { flex-shrink: 0; text-align: right; line-height: 1.1; }
.pulse-stat-num { display: block; font-weight: 700; font-size: 18px; color: var(--marigold); }
.pulse-stat-lbl { font-size: 11px; color: var(--sand-muted); }

/* ---------- Section shared ---------- */
.floor-eyebrow {
  display: inline-block; font-family: "Space Grotesk"; font-size: 12px; font-weight: 700; letter-spacing: 1.4px; text-transform: uppercase;
  color: var(--ink); background: var(--lime); border: 2px solid var(--ink); padding: 5px 12px; border-radius: 8px; margin-bottom: 16px;
}
.floor-eyebrow.center { display: block; width: max-content; margin-inline: auto; }
.block-title { font-family: "Bricolage Grotesque"; font-weight: 800; font-size: clamp(30px, 4.6vw, 52px); line-height: 1.02; letter-spacing: -1px; margin: 0 0 12px; color: var(--ink); }
.block-title.center { text-align: center; }
.block-desc { font-size: clamp(15px, 1.7vw, 17px); color: var(--ink-soft); margin: 0; font-weight: 500; }
.block-desc-narrow { max-width: 46ch; margin-inline: auto; text-align: center; }

/* ---------- Games (paper block) ---------- */
.floor { padding: 76px 0 60px; background: var(--paper); }
.floor-head { display: flex; flex-wrap: wrap; gap: 24px 32px; justify-content: space-between; align-items: flex-end; margin-bottom: 32px; }
.game-filters { display: flex; flex-wrap: wrap; gap: 10px; }
.filter-chip {
  font-family: "Space Grotesk"; font-weight: 600; font-size: 13.5px; cursor: pointer;
  padding: 8px 16px; min-height: 44px; display: inline-flex; align-items: center;
  border-radius: var(--radius-sm); color: var(--ink); background: var(--paper-2);
  border: 2px solid var(--ink); box-shadow: 3px 3px 0 var(--ink); transition: transform .12s ease, box-shadow .12s ease, background-color .15s ease;
}
.filter-chip:hover { transform: translate(-1px,-1px); box-shadow: 4px 4px 0 var(--ink); }
.filter-chip.active { background: var(--ink); color: var(--lime); }

.games-rail-wrap { position: relative; }
.games-rail { overflow-x: auto; scrollbar-width: none; -ms-overflow-style: none; }
.games-rail::-webkit-scrollbar { display: none; }
.games-grid { display: grid; gap: 20px; grid-template-columns: repeat(4, 1fr); }

.rail-tile {
  position: relative; display: flex; flex-direction: column; text-decoration: none;
  border-radius: var(--radius); overflow: hidden; background: var(--paper-2);
  border: var(--bw) solid var(--ink); box-shadow: var(--shadow-card);
  transition: transform .14s ease, box-shadow .14s ease;
  animation: tileIn .5s ease backwards; animation-delay: calc(var(--i, 0) * 45ms);
}
@keyframes tileIn { from { opacity: 0; transform: translateY(14px); } }
.rail-tile:hover { transform: translate(-3px, -3px); box-shadow: var(--shadow-card-lg); text-decoration: none; }
.rail-thumb { position: relative; aspect-ratio: 4 / 5; display: grid; place-items: center; border-bottom: var(--bw) solid var(--ink); }
.rail-cover { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.rail-initials { position: relative; font-family: "Bricolage Grotesque"; font-weight: 800; font-size: 40px; color: rgba(255,255,255,.85); }
.rail-thumb.has-cover .rail-initials { opacity: 0; }
.rail-body { padding: 13px 14px 14px; display: flex; flex-direction: column; gap: 4px; }
.rail-tag { align-self: flex-start; font-size: 10.5px; font-weight: 700; letter-spacing: 1px; color: var(--ink); background: var(--marigold); border: 2px solid var(--ink); border-radius: 6px; padding: 2px 7px; margin-bottom: 2px; }
.rail-title { font-family: "Bricolage Grotesque"; font-weight: 700; font-size: 16px; color: var(--ink); }
.rail-meta { font-size: 12px; color: var(--ink-muted); }
.rail-play { position: absolute; top: 12px; right: 12px; z-index: 2; background: var(--lime); color: var(--ink); font-weight: 700; font-size: 12px; padding: 6px 13px; border-radius: 8px; border: 2px solid var(--ink); opacity: 0; transform: translateY(-6px); transition: all .15s ease; }
.rail-tile:hover .rail-play { opacity: 1; transform: translateY(0); }

.games-rail-scrollbar { margin-top: 18px; padding: 0 2px; }
.games-rail-scrollbar-track { position: relative; height: 8px; border-radius: 999px; background: transparent; border: 2px solid var(--ink); }
.games-rail-scrollbar-thumb { position: absolute; top: 0; left: 0; height: 4px; margin: 0; border-radius: 999px; background: var(--ink); cursor: grab; }
body.games-rail-dragging { user-select: none; }

/* ---------- How it works (jade block) ---------- */
.ritual { padding: 76px 0; background: var(--jade); color: var(--paper); border-block: var(--bw) solid var(--ink); }
.ritual .block-title { color: var(--paper); }
.ritual .block-desc { color: rgba(255,244,230,0.82); }
.ritual .floor-eyebrow { background: var(--marigold); }
.deal-track { list-style: none; padding: 0; margin: 44px 0 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.deal-step { position: relative; padding: 28px 24px 26px; border-radius: var(--radius); background: var(--paper-2); border: var(--bw) solid var(--ink); box-shadow: var(--shadow-card); color: var(--ink); }
.deal-num { position: absolute; top: 16px; right: 20px; font-family: "Bricolage Grotesque"; font-weight: 800; font-size: 40px; line-height: 1; color: var(--tomato); -webkit-text-stroke: 1.5px var(--ink); }
.deal-icon { display: inline-grid; place-items: center; width: 54px; height: 54px; border-radius: 12px; background: var(--lime); border: var(--bw) solid var(--ink); color: var(--ink); margin-bottom: 14px; }
.deal-icon svg { width: 28px; height: 28px; }
.deal-step:nth-child(2) .deal-icon { background: var(--marigold); }
.deal-step:nth-child(3) .deal-icon { background: var(--magenta); color: #fff; }
.deal-step h3 { margin: 0 0 8px; font-size: 21px; font-weight: 700; color: var(--ink); font-family: "Bricolage Grotesque"; }
.deal-step p { margin: 0; font-size: 14.5px; color: var(--ink-soft); }
.deal-step strong { color: var(--ink); }

/* ---------- Passes (ink block) ---------- */
.tiers { padding: 76px 0; background: var(--ink); color: var(--sand); border-bottom: var(--bw) solid var(--ink); }
.tiers .block-title { color: #fff; }
.tiers .block-desc { color: var(--sand-2); }
.tier-ladder { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 44px; }
.tier-chip { position: relative; padding: 30px 26px 28px; border-radius: var(--radius); background: var(--paper-2); border: var(--bw) solid var(--ink); box-shadow: 6px 6px 0 var(--tomato); color: var(--ink); transition: transform .14s ease, box-shadow .14s ease; }
.tier-chip:hover { transform: translate(-3px,-3px); box-shadow: 9px 9px 0 var(--tomato); }
.tier-chip:nth-child(2) { box-shadow: 6px 6px 0 var(--lime); }
.tier-chip:nth-child(2):hover { box-shadow: 9px 9px 0 var(--lime); }
.tier-chip:nth-child(3) { box-shadow: 6px 6px 0 var(--sky); }
.tier-chip:nth-child(3):hover { box-shadow: 9px 9px 0 var(--sky); }
.tier-ring { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 12px; font-family: "Bricolage Grotesque"; font-weight: 800; font-size: 22px; color: var(--ink); border: var(--bw) solid var(--ink); margin-bottom: 16px; }
.tier-sunrise .tier-ring { background: var(--marigold); }
.tier-sunset .tier-ring { background: var(--tomato); }
.tier-carnival .tier-ring { background: var(--lime); }
.tier-chip h3 { margin: 0 0 8px; font-family: "Bricolage Grotesque"; font-weight: 700; font-size: 22px; color: var(--ink); }
.tier-chip p { margin: 0; font-size: 14.5px; color: var(--ink-soft); }

/* ---------- FAQ (paper block) ---------- */
.concierge { padding: 76px 0; background: var(--paper); }
.concierge-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 48px; align-items: start; }
.concierge-note { margin-top: 18px; font-size: 14px; color: var(--ink-soft); }
.concierge-faqs { display: grid; gap: 14px; }
.qa { background: var(--paper-2); border: var(--bw) solid var(--ink); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-card); }
.qa summary { cursor: pointer; list-style: none; padding: 18px 20px; font-weight: 700; font-size: 16px; color: var(--ink); font-family: "Bricolage Grotesque"; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.qa summary::-webkit-details-marker { display: none; }
.qa summary::after { content: "+"; font-family: "Space Grotesk"; font-size: 24px; color: var(--tomato); transition: transform .2s ease; }
.qa[open] summary::after { transform: rotate(45deg); }
.qa p { margin: 0; padding: 0 20px 20px; font-size: 14.5px; color: var(--ink-soft); }

/* ---------- Closing CTA (lime block) ---------- */
.invitation { padding: 76px 0; background: var(--lime); border-bottom: var(--bw) solid var(--ink); }
.invitation-inner { display: flex; justify-content: center; }
.invite-ticket { position: relative; text-align: center; max-width: 660px; width: 100%; padding: 48px 40px; border-radius: var(--radius); overflow: hidden; background: var(--paper-2); border: var(--bw) solid var(--ink); box-shadow: var(--shadow-card-lg); }
.invite-glow { display: none; }
.invite-serial { position: relative; margin: 0 0 14px; font-size: 12px; letter-spacing: 2px; color: var(--ink-muted); font-weight: 700; text-transform: uppercase; }
.invite-headline { position: relative; margin: 0 0 10px; font-family: "Bricolage Grotesque"; font-weight: 800; font-size: clamp(30px, 5vw, 50px); color: var(--ink); line-height: 1.02; }
.invite-body { position: relative; margin: 0 0 26px; font-size: 17px; color: var(--ink-soft); font-weight: 500; }
.invite-body strong { color: var(--ink); }
.invitation .btn-neon { position: relative; background: var(--tomato); color: var(--paper); }

/* ---------- Footer (ink block) ---------- */
.seal-footer { position: relative; background: var(--ink); padding: 50px 0 38px; }
.seal-glow { display: none; }
.seal-inner { position: relative; display: grid; gap: 26px; }
.seal-logo img { height: 36px; width: auto; }
.seal-tagline { margin: 12px 0 0; font-size: 14px; color: var(--sand-muted); }
.seal-links { display: flex; flex-wrap: wrap; gap: 10px; }
.seal-chip { font-size: 13px; font-weight: 600; color: var(--sand-2); padding: 9px 16px; min-height: 40px; display: inline-flex; align-items: center; border-radius: 10px; background: transparent; border: 2px solid var(--sand-muted); text-decoration: none; }
.seal-chip:hover { border-color: var(--lime); color: var(--lime); }
.seal-compliance { display: grid; gap: 16px; border-top: 2px solid rgba(255,244,230,0.18); padding-top: 22px; }
.seal-disclaimer { margin: 0; font-size: 12.5px; color: var(--sand-muted); line-height: 1.6; }
.seal-rg { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; }
.seal-rg-label { font-size: 13px; font-weight: 700; color: var(--sand-2); }
.seal-rg-logos { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; }
.seal-rg-logo { height: 34px; width: auto; opacity: .9; }
.seal-rg-link:hover .seal-rg-logo { opacity: 1; }

/* ---------- Dock CTA (mobile) ---------- */
.dock-cta { position: fixed; left: 0; right: 0; bottom: 0; z-index: 80; padding: 12px 16px calc(12px + env(safe-area-inset-bottom)); background: var(--paper); border-top: var(--bw) solid var(--ink); display: none; }

/* ---------- Cookie banner (ink) ---------- */
.cookie-banner { position: fixed; left: 0; right: 0; bottom: 0; z-index: 95; background: var(--ink); border-top: var(--bw) solid var(--lime); transform: translateY(110%); transition: transform .3s ease; }
.cookie-banner.active { transform: translateY(0); }
.cookie-banner-inner { max-width: var(--wrap); margin-inline: auto; padding: 16px 24px; display: flex; flex-wrap: wrap; align-items: center; gap: 14px; }
.cookie-banner-text { margin: 0; flex: 1 1 320px; font-size: 13px; color: var(--sand-2); }
.cookie-banner-actions { display: flex; align-items: center; gap: 14px; }
.cookie-banner-link { font-size: 13px; font-weight: 600; color: var(--lime); }
.cookie-banner-dismiss { background: none; border: 0; color: var(--sand-muted); font-size: 22px; cursor: pointer; line-height: 1; }

/* ---------- Modals (ink poster) ---------- */
.modal-backdrop { position: fixed; inset: 0; z-index: 120; display: none; align-items: center; justify-content: center; background: rgba(27,16,22,0.7); padding: 20px; }
.modal-backdrop.active { display: flex; animation: fadeIn .2s ease; }
@keyframes fadeIn { from { opacity: 0; } }
.modal-panel { position: relative; width: min(440px, 100%); max-height: 92vh; overflow-y: auto; background: var(--ink); border: var(--bw) solid var(--lime); border-radius: var(--radius); padding: 30px 28px; box-shadow: 10px 10px 0 rgba(0,0,0,0.4); animation: popIn .25s ease; }
@keyframes popIn { from { transform: translateY(16px) scale(.97); opacity: 0; } }
.modal-panel h3 { margin: 0 0 8px; font-family: "Bricolage Grotesque"; font-weight: 800; font-size: 27px; color: #fff; }
.modal-lede { margin: 0 0 20px; font-size: 14.5px; color: var(--sand-muted); }
.modal-close { position: absolute; top: 12px; right: 14px; background: none; border: 0; color: var(--sand-muted); font-size: 28px; line-height: 1; cursor: pointer; }
.modal-close:hover { color: #fff; }
.modal-panel a { color: var(--lime); }
.modal-panel .btn-outline { background: transparent; color: var(--sand); border-color: var(--sand-muted); box-shadow: 3px 3px 0 var(--tomato); }
.modal-panel .btn-outline:hover { border-color: var(--sand); box-shadow: 5px 5px 0 var(--tomato); }
.modal-panel .btn-neon { box-shadow: 3px 3px 0 var(--tomato); }
.modal-panel .btn-neon:hover { box-shadow: 5px 5px 0 var(--tomato); }
.modal-panel .btn-neon:active { box-shadow: 0 0 0 var(--tomato); }
.age-actions { display: grid; gap: 12px; margin-top: 6px; }

.form-row { margin-bottom: 16px; }
.form-row label { display: block; font-size: 13px; font-weight: 700; color: var(--sand-2); margin-bottom: 7px; }
.form-row input, .dob-select, #state {
  width: 100%; font-family: "Space Grotesk", sans-serif; font-size: 15px; color: var(--sand);
  background: rgba(255,255,255,0.06); border: 2px solid var(--sand-muted); border-radius: 10px;
  padding: 12px 14px; transition: border-color .15s ease;
}
.form-row input::placeholder { color: var(--sand-muted); }
.form-row input:focus, .dob-select:focus, #state:focus { outline: none; border-color: var(--lime); }
.dob-select, #state { appearance: none; -webkit-appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--sand-muted) 50%), linear-gradient(135deg, var(--sand-muted) 50%, transparent 50%); background-position: calc(100% - 18px) calc(50% - 2px), calc(100% - 13px) calc(50% - 2px); background-size: 5px 5px, 5px 5px; background-repeat: no-repeat; cursor: pointer; }
#state option, .dob-select option { background: var(--ink); color: var(--sand); }
.dob-hint { font-weight: 500; color: var(--sand-muted); }
.dob-grid { display: grid; grid-template-columns: 1fr 1fr 1.2fr; gap: 10px; }
.field-error, .dob-error { margin: 6px 0 0; font-size: 12.5px; color: #ff9bb3; min-height: 0; }
.field-invalid input, .dob-invalid .dob-select { border-color: var(--magenta); }
.form-error { margin: 12px 0 0; font-size: 13.5px; color: #ff9bb3; }
.form-success { margin: 12px 0 0; font-size: 14px; color: var(--lime); font-weight: 600; }

/* ---------- Game launcher (ink) ---------- */
.game-page-body { background: var(--ink); }
.game-masthead { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 14px 22px; border-bottom: var(--bw) solid var(--lime); background: var(--ink); }
.game-masthead .masthead-brand img { height: 34px; }
.game-masthead a { color: var(--sand-2); font-weight: 600; font-size: 14px; }
.game-frame-wrap { height: calc(100vh - 64px); width: 100%; }
#game-frame { width: 100%; height: 100%; border: 0; display: block; }

/* ---------- Legal pages (ink, readable) ---------- */
.legal-body { background: var(--ink); color: var(--sand-2); }
.legal-masthead { padding: 18px 24px; border-bottom: var(--bw) solid var(--lime); background: var(--ink); }
.legal-masthead img { height: 36px; width: auto; }
.legal-wrap { max-width: 820px; margin: 0 auto; padding: 40px 24px 70px; }
.legal-wrap h1 { font-family: "Bricolage Grotesque"; font-weight: 800; font-size: clamp(30px, 5vw, 46px); color: #fff; margin: 10px 0 20px; }
.legal-wrap h2 { font-family: "Bricolage Grotesque"; font-weight: 700; font-size: 22px; color: #fff; margin: 32px 0 10px; }
.legal-wrap p, .legal-wrap li { font-size: 15px; color: var(--sand-2); line-height: 1.7; }
.legal-wrap ul { padding-left: 20px; }
.legal-wrap a { color: var(--lime); }
.callout-box { background: rgba(200,240,0,0.08); border: 2px solid var(--lime); border-radius: 12px; padding: 16px 18px; font-size: 15px; color: var(--sand); margin: 16px 0; }
.legal-wrap h3 { font-family: "Bricolage Grotesque"; font-weight: 700; font-size: 17px; color: #fff; margin: 0 0 6px; }
.contact-layout { display: grid; gap: 40px; margin-top: 8px; }
@media (min-width: 900px) {
  .contact-layout { grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
}
.contact-channels { list-style: none; padding: 0; margin: 0 0 24px; display: grid; gap: 16px; }
.contact-channel { background: rgba(255,255,255,0.04); border: 2px solid var(--sand-muted); border-radius: 12px; padding: 16px 18px; }
.contact-channel p { margin: 0 0 8px; font-size: 14px; }
.contact-channel a { font-weight: 600; word-break: break-word; }
.contact-form-panel { background: rgba(255,255,255,0.03); border: 2px solid var(--lime); border-radius: 14px; padding: 22px 20px 24px; }
.contact-form-panel > p { font-size: 14px; margin: 0 0 18px; }
.contact-form .btn-neon { width: 100%; margin-top: 4px; }
.contact-form-note { font-size: 12px; color: var(--sand-muted); margin: 14px 0 0; line-height: 1.5; }
.form-row textarea, .contact-form select {
  width: 100%; font-family: "Space Grotesk", sans-serif; font-size: 15px; color: var(--sand);
  background: rgba(255,255,255,0.06); border: 2px solid var(--sand-muted); border-radius: 10px;
  padding: 12px 14px; transition: border-color .15s ease;
}
.form-row textarea { min-height: 140px; resize: vertical; line-height: 1.5; }
.form-row textarea::placeholder { color: var(--sand-muted); }
.form-row textarea:focus, .contact-form select:focus { outline: none; border-color: var(--lime); }
.contact-form select { appearance: none; -webkit-appearance: none; cursor: pointer;
  background-image: linear-gradient(45deg, transparent 50%, var(--sand-muted) 50%), linear-gradient(135deg, var(--sand-muted) 50%, transparent 50%);
  background-position: calc(100% - 18px) calc(50% - 2px), calc(100% - 13px) calc(50% - 2px);
  background-size: 5px 5px, 5px 5px; background-repeat: no-repeat;
}
.contact-form select option { background: var(--ink); color: var(--sand); }
.legal-body .seal-tagline, .legal-body .seal-disclaimer, .legal-body .seal-rg-label, .legal-body .seal-chip { color: var(--sand-2); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .spotlight-core { grid-template-columns: 1fr; gap: 36px; }
  .hero-poster { order: -1; }
  .concierge-grid { grid-template-columns: 1fr; gap: 28px; }
  .games-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 820px) {
  .masthead-nav { display: none; }
  .nav-toggle { display: flex; }
  .masthead-nav.open { display: flex; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: var(--ink); border-bottom: var(--bw) solid var(--lime); padding: 16px 24px; gap: 6px; }
  .occupancy { display: none; }
  .masthead-claim { display: none; }
  .dock-cta { display: block; }
  body { padding-bottom: 78px; }
  .deal-track, .tier-ladder { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .games-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .floor-head { align-items: flex-start; }
  .offer-band { flex-wrap: wrap; gap: 10px; }
  .palm { display: none; }
  .modal-panel { padding: 26px 20px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}
