/* =============================================
   SPIELWIESE — Electric Poster Aesthetic
   ============================================= */

:root {
  /* base palette — warm-black like a smoky club */
  --bg:        #0a0908;
  --bg-warm:   #14110f;
  --bg-card:   #1a1614;
  --ink:       #f4ede4;
  --ink-dim:   #a8a098;
  --ink-faint: #5b554f;
  --line:      #2a2522;

  /* heat palette — cool to incinerated */
  --chill:  #8fffd9;
  --party:  #ffd60a;
  --spicy:  #ff8533;
  --hot:    #ff3d8a;
  --adult:  #d10808;

  --accent: var(--party);

  /* type */
  --display:  "Anton", "Impact", sans-serif;
  --chunk:    "Bowlby One", "Anton", sans-serif;
  --serif:    "Instrument Serif", "Times New Roman", serif;
  --body:     "Manrope", -apple-system, system-ui, sans-serif;
  --mono:     "JetBrains Mono", ui-monospace, monospace;

  /* motion */
  --ease: cubic-bezier(.2,.7,.2,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { overflow-x: hidden; }
html { background: var(--bg); }
body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  position: relative;
  min-height: 100vh;
}

::selection { background: var(--accent); color: var(--bg); }

a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

/* =============================================
   ATMOSPHERIC BACKGROUND
   ============================================= */
.atmosphere {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .35;
  mix-blend-mode: screen;
  animation: drift 30s ease-in-out infinite;
}
.blob--1 {
  width: 60vw; height: 60vw;
  top: -20vw; left: -15vw;
  background: radial-gradient(circle, var(--hot), transparent 60%);
  animation-delay: -5s;
}
.blob--2 {
  width: 45vw; height: 45vw;
  top: 30%; right: -10vw;
  background: radial-gradient(circle, var(--party), transparent 65%);
  opacity: .25;
  animation-delay: -15s;
}
.blob--3 {
  width: 50vw; height: 50vw;
  bottom: -20vw; left: 20%;
  background: radial-gradient(circle, var(--adult), transparent 60%);
  opacity: .3;
  animation-delay: -22s;
}
@keyframes drift {
  0%, 100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(5vw, -3vw) scale(1.1); }
  66% { transform: translate(-4vw, 4vw) scale(.95); }
}
.grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 .5 0'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='.25'/></svg>");
  background-size: 200px;
  opacity: .12;
  mix-blend-mode: overlay;
}
.scanlines {
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(0deg, transparent 0, transparent 2px, rgba(255,255,255,.012) 2px, rgba(255,255,255,.012) 4px);
  pointer-events: none;
}

/* main content sits above the atmosphere */
body > *:not(.atmosphere) { position: relative; z-index: 1; }

/* =============================================
   TOP NAV
   ============================================= */
.topnav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 18px 32px;
  border-bottom: 1px solid var(--line);
  background: rgba(10,9,8,.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  position: sticky;
  top: 0;
  z-index: 50;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--body);
  font-weight: 800;
  letter-spacing: -.01em;
  font-size: 18px;
}
.brand-mark {
  font-size: 22px;
  color: var(--party);
  display: inline-block;
  animation: spin 12s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.topnav-meta {
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(90deg, transparent, #000 15%, #000 85%, transparent);
}
.ticker {
  display: inline-flex; align-items: center; gap: 18px;
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--ink-dim);
  white-space: nowrap;
  animation: ticker 22s linear infinite;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.ticker-dot {
  width: 4px; height: 4px;
  background: var(--accent);
  border-radius: 50%;
}
.topnav-now {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-dim);
}
.now-dot {
  width: 7px; height: 7px;
  background: var(--chill);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--chill);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .3; }
}

/* =============================================
   HERO
   ============================================= */
.hero {
  padding: 70px 32px 40px;
  position: relative;
  border-bottom: 1px solid var(--line);
}
.hero-sidetag {
  position: absolute;
  right: 32px;
  top: 80px;
  writing-mode: vertical-rl;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: 60px;
  align-items: end;
  max-width: 1400px;
  margin: 0 auto;
}
.hero-counter {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  padding: 6px 14px;
  border: 1px solid var(--line);
  border-radius: 100px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-bottom: 28px;
}
.hero-counter span:first-child {
  color: var(--accent);
  font-weight: 700;
  font-size: 14px;
}
.hero-title {
  font-family: var(--display);
  font-size: clamp(80px, 16vw, 240px);
  line-height: .82;
  letter-spacing: -.02em;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.hero-line {
  display: block;
  transform: translateY(40px);
  opacity: 0;
  animation: rise .9s var(--ease) forwards;
}
.hero-line--alt {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  text-transform: lowercase;
  letter-spacing: -.04em;
  font-size: 1.05em;
  color: var(--party);
  text-shadow: 0 0 60px rgba(255,214,10,.4);
  animation-delay: .15s;
  padding-left: .15em;
}
@keyframes rise {
  to { transform: translateY(0); opacity: 1; }
}
.hero-lede {
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.4;
  color: var(--ink-dim);
  max-width: 600px;
  margin-bottom: 36px;
}
.hero-lede em {
  font-style: italic;
  color: var(--ink);
}
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--body);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .04em;
  text-transform: uppercase;
  border-radius: 100px;
  transition: transform .25s var(--ease), background .25s, color .25s;
}
.btn--primary {
  background: var(--ink);
  color: var(--bg);
}
.btn--primary:hover {
  background: var(--party);
  transform: translateY(-2px);
}
.btn--ghost {
  border: 1px solid var(--line);
  color: var(--ink-dim);
}
.btn--ghost:hover {
  color: var(--ink);
  border-color: var(--ink);
}

/* heat meter */
.hero-right { display: flex; justify-content: flex-end; padding-right: 50px; }
.heatmeter {
  width: 100%;
  max-width: 320px;
  padding: 22px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.02), transparent);
  position: relative;
}
.heatmeter::before {
  content: "";
  position: absolute; top: -1px; left: -1px;
  width: 14px; height: 14px;
  border-top: 2px solid var(--accent);
  border-left: 2px solid var(--accent);
}
.heatmeter::after {
  content: "";
  position: absolute; bottom: -1px; right: -1px;
  width: 14px; height: 14px;
  border-bottom: 2px solid var(--accent);
  border-right: 2px solid var(--accent);
}
.heatmeter-title {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 18px;
}
.heatmeter-bars { display: flex; flex-direction: column; gap: 8px; }
.hm-bar {
  display: grid;
  grid-template-columns: 24px 1fr;
  align-items: center;
  gap: 14px;
  padding: 8px 0;
  border-bottom: 1px dashed var(--line);
}
.hm-bar:last-child { border-bottom: 0; }
.hm-bar span {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-faint);
}
.hm-bar label {
  font-family: var(--body);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .02em;
  position: relative;
  padding-left: 18px;
}
.hm-bar label::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 10px; height: 10px;
  background: var(--c);
  border-radius: 2px;
  transform: translateY(-50%) rotate(45deg);
  box-shadow: 0 0 12px var(--c);
}

/* marquee */
.hero-marquee {
  margin: 60px -32px -40px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-warm);
  overflow: hidden;
  position: relative;
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 32px;
  white-space: nowrap;
  animation: scroll-marquee 50s linear infinite;
  font-family: var(--display);
  font-size: 28px;
  letter-spacing: .02em;
  text-transform: uppercase;
}
.marquee-track > span:nth-child(odd) {
  color: var(--ink);
}
.marquee-track > span:nth-child(even) {
  color: var(--party);
  font-size: 14px;
}
@keyframes scroll-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* =============================================
   FILTER BAR
   ============================================= */
.filterbar {
  padding: 56px 32px 32px;
  border-bottom: 1px solid var(--line);
}
.filterbar-head {
  display: flex; align-items: baseline; gap: 18px;
  margin-bottom: 26px;
  flex-wrap: wrap;
}
.filterbar-tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--accent);
}
.filterbar-sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--ink-dim);
}
.pills {
  display: flex; flex-wrap: wrap; gap: 10px;
}
.pill {
  --c: var(--ink);
  display: inline-flex; align-items: center; gap: 10px;
  padding: 11px 22px;
  border: 1px solid var(--line);
  border-radius: 100px;
  font-family: var(--body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--ink-dim);
  transition: all .25s var(--ease);
  position: relative;
}
.pill-num {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--ink-faint);
}
.pill:hover {
  color: var(--ink);
  border-color: var(--c);
  transform: translateY(-1px);
}
.pill.is-active {
  background: var(--c);
  border-color: var(--c);
  color: var(--bg);
  box-shadow: 0 0 30px color-mix(in srgb, var(--c) 50%, transparent);
}
.pill.is-active .pill-num { color: var(--bg); opacity: .6; }

/* =============================================
   GAMES GRID
   ============================================= */
.games {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
  padding: 32px;
  max-width: 1600px;
  margin: 0 auto;
}
.gamecard {
  --c: var(--ink);
  grid-column: span 4;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px 26px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  min-height: 320px;
  overflow: hidden;
  transition: transform .35s var(--ease), border-color .35s, background .35s;
  cursor: pointer;
  isolation: isolate;
}
.gamecard::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 80% -20%, color-mix(in srgb, var(--c) 30%, transparent), transparent 50%);
  opacity: 0;
  transition: opacity .35s var(--ease);
  z-index: -1;
}
.gamecard::after {
  content: "";
  position: absolute; top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--c);
  transform: scaleX(.06);
  transform-origin: left;
  transition: transform .4s var(--ease);
}
.gamecard:hover {
  transform: translateY(-4px);
  border-color: var(--c);
}
.gamecard:hover::before { opacity: 1; }
.gamecard:hover::after { transform: scaleX(1); }

.gamecard--feature { grid-column: span 8; min-height: 440px; }
.gamecard--wide   { grid-column: span 6; }
.gamecard--tall   { grid-column: span 4; min-height: 440px; }

.gamecard-head {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: auto;
}
.gamecard-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .15em;
  color: var(--ink-faint);
}
.gamecard-cat {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--c);
}
.gamecard-cat::before {
  content: "";
  width: 8px; height: 8px;
  background: var(--c);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--c);
}
.gamecard-title {
  font-family: var(--display);
  font-size: clamp(36px, 4vw, 56px);
  line-height: .9;
  letter-spacing: -.01em;
  text-transform: uppercase;
  margin-top: 80px;
  margin-bottom: 14px;
}
.gamecard-title em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--c);
  text-transform: lowercase;
  letter-spacing: -.02em;
  font-size: .9em;
}
.gamecard-desc {
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  line-height: 1.4;
  color: var(--ink-dim);
  margin-bottom: 20px;
  max-width: 340px;
}
.gamecard-foot {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 16px;
  border-top: 1px dashed var(--line);
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-faint);
  letter-spacing: .1em;
  text-transform: uppercase;
}
.gamecard-foot strong { color: var(--ink); font-weight: 500; }
.gamecard-play {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--c);
  font-weight: 700;
}
.gamecard-play::after {
  content: "→";
  font-family: var(--body);
  transition: transform .25s var(--ease);
}
.gamecard:hover .gamecard-play::after { transform: translateX(4px); }

/* feature card variation */
.gamecard--feature .gamecard-title { font-size: clamp(56px, 7vw, 96px); }
.gamecard--feature .gamecard-desc { font-size: 22px; max-width: 480px; }

/* hidden state via filter */
.gamecard.is-hidden { display: none; }

/* =============================================
   HOW IT WORKS
   ============================================= */
.how {
  padding: 100px 32px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-warm);
}
.how-head { max-width: 1200px; margin: 0 auto 60px; }
.how-title {
  font-family: var(--display);
  font-size: clamp(48px, 7vw, 96px);
  line-height: .9;
  text-transform: uppercase;
  letter-spacing: -.01em;
  margin-top: 14px;
}
.how-title em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  text-transform: lowercase;
  color: var(--party);
  letter-spacing: -.03em;
}
.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  list-style: none;
}
.how-steps li {
  padding: 32px 24px;
  border: 1px solid var(--line);
  background: var(--bg);
}
.how-num {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--accent);
  letter-spacing: .15em;
  margin-bottom: 24px;
}
.how-steps h3 {
  font-family: var(--display);
  font-size: 32px;
  text-transform: uppercase;
  letter-spacing: -.01em;
  margin-bottom: 12px;
}
.how-steps p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  color: var(--ink-dim);
}

/* =============================================
   FOOTER
   ============================================= */
.foot {
  padding: 80px 32px 40px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: end;
}
.foot-big {
  font-family: var(--display);
  font-size: clamp(60px, 10vw, 140px);
  line-height: .9;
  text-transform: uppercase;
  letter-spacing: -.02em;
}
.foot-big em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  text-transform: lowercase;
  color: var(--hot);
  letter-spacing: -.03em;
}
.foot-meta {
  display: flex; flex-direction: column; gap: 6px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-faint);
  letter-spacing: .15em;
  text-transform: uppercase;
  text-align: right;
}

/* =============================================
   GAME OVERLAY
   ============================================= */
.game-overlay {
  position: fixed; inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: 0;
  transition: opacity .35s var(--ease);
}
.game-overlay.is-open {
  pointer-events: auto;
  opacity: 1;
}
.overlay-bg {
  position: absolute; inset: 0;
  background: rgba(10,9,8,.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.overlay-frame {
  position: absolute;
  inset: 24px;
  background: var(--bg);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transform: scale(.97) translateY(20px);
  opacity: 0;
  transition: transform .4s var(--ease), opacity .35s var(--ease);
  overflow: hidden;
}
.game-overlay.is-open .overlay-frame {
  transform: scale(1) translateY(0);
  opacity: 1;
}
.overlay-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 28px;
  border-bottom: 1px solid var(--line);
  background: var(--bg-warm);
  flex-shrink: 0;
}
.overlay-head-left { display: flex; align-items: baseline; gap: 18px; }
.overlay-num {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--ink-faint);
  letter-spacing: .1em;
}
.overlay-title {
  font-family: var(--display);
  font-size: 26px;
  text-transform: uppercase;
  letter-spacing: -.01em;
}
.overlay-head-right { display: flex; align-items: center; gap: 18px; }
.overlay-cat-badge {
  --c: var(--ink);
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px;
  border: 1px solid var(--c);
  color: var(--c);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  border-radius: 100px;
}
.overlay-close {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--ink);
  transition: all .25s var(--ease);
}
.overlay-close:hover {
  background: var(--ink);
  color: var(--bg);
  transform: rotate(90deg);
}
.overlay-body {
  flex: 1;
  overflow-y: auto;
  padding: 48px 32px;
}

/* =============================================
   GAME INTERNALS (shared)
   ============================================= */
.gameview {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.gv-step {
  display: none;
  flex-direction: column;
  gap: 24px;
  animation: stepIn .5s var(--ease);
}
.gv-step.is-active { display: flex; }
@keyframes stepIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
.gv-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.gv-headline {
  font-family: var(--display);
  font-size: clamp(40px, 6vw, 80px);
  line-height: .95;
  text-transform: uppercase;
  letter-spacing: -.01em;
}
.gv-headline em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  text-transform: lowercase;
  color: var(--accent);
  letter-spacing: -.03em;
}
.gv-sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--ink-dim);
  max-width: 580px;
}
.gv-block {
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--bg-warm);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.gv-block-title {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--accent);
}
.gv-input, .gv-select {
  font: inherit;
  width: 100%;
  padding: 14px 18px;
  background: var(--bg);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 4px;
  font-family: var(--body);
  font-size: 16px;
  transition: border-color .25s;
}
.gv-input:focus, .gv-select:focus {
  outline: none;
  border-color: var(--accent);
}
.gv-row { display: flex; gap: 10px; flex-wrap: wrap; }
.gv-row > * { flex: 1; }

.gv-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 32px;
  font-family: var(--body);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: 100px;
  background: var(--ink);
  color: var(--bg);
  transition: transform .2s var(--ease), background .25s;
  cursor: pointer;
}
.gv-btn:hover { transform: translateY(-2px); background: var(--accent); }
.gv-btn:disabled { opacity: .4; cursor: not-allowed; transform: none; }
.gv-btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}
.gv-btn--ghost:hover {
  background: transparent;
  border-color: var(--ink);
}
.gv-btn--danger { background: var(--hot); color: var(--bg); }
.gv-btn--danger:hover { background: var(--adult); }

.gv-actions {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-top: auto;
  padding-top: 32px;
}

/* heat selector */
.gv-heat {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 10px;
}
.gv-heat label {
  --c: var(--ink);
  position: relative;
  cursor: pointer;
}
.gv-heat input { position: absolute; opacity: 0; pointer-events: none; }
.gv-heat-tile {
  padding: 22px 14px;
  border: 1px solid var(--line);
  background: var(--bg);
  text-align: center;
  transition: all .25s var(--ease);
  display: flex; flex-direction: column; gap: 8px;
}
.gv-heat-tile-num {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--ink-faint);
  letter-spacing: .15em;
}
.gv-heat-tile-name {
  font-family: var(--display);
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: -.01em;
}
.gv-heat label:hover .gv-heat-tile {
  border-color: var(--c);
  color: var(--c);
}
.gv-heat input:checked + .gv-heat-tile {
  background: var(--c);
  border-color: var(--c);
  color: var(--bg);
  box-shadow: 0 0 24px color-mix(in srgb, var(--c) 50%, transparent);
}
.gv-heat input:checked + .gv-heat-tile .gv-heat-tile-num { color: var(--bg); opacity: .6; }

/* big card display (for prompts) */
.gv-card {
  padding: 50px 36px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--bg-warm), var(--bg));
  text-align: center;
  position: relative;
  min-height: 360px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 24px;
}
.gv-card-num {
  position: absolute;
  top: 18px; left: 22px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-faint);
  letter-spacing: .15em;
}
.gv-card-tag {
  position: absolute;
  top: 18px; right: 22px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.gv-card-eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--accent);
}
.gv-card-text {
  font-family: var(--serif);
  font-size: clamp(28px, 4.5vw, 48px);
  line-height: 1.15;
  font-style: italic;
  color: var(--ink);
  letter-spacing: -.02em;
}
.gv-card-name {
  font-family: var(--display);
  font-size: 28px;
  text-transform: uppercase;
  color: var(--accent);
  letter-spacing: -.01em;
}

/* tag chips for tor/dare */
.gv-binary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.gv-binary button {
  padding: 30px 20px;
  border: 1px solid var(--line);
  background: var(--bg);
  color: var(--ink);
  font-family: var(--display);
  font-size: 32px;
  text-transform: uppercase;
  letter-spacing: -.01em;
  transition: all .25s var(--ease);
}
.gv-binary button:hover { transform: translateY(-3px); border-color: var(--accent); color: var(--accent); }

/* player list */
.gv-players {
  display: flex; flex-direction: column; gap: 8px;
  max-height: 240px;
  overflow-y: auto;
  padding-right: 6px;
}
.gv-player {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 18px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 100px;
}
.gv-player-name { font-weight: 600; }
.gv-player-rm {
  width: 24px; height: 24px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  color: var(--ink-faint);
  transition: all .2s;
}
.gv-player-rm:hover { background: var(--adult); color: var(--ink); }

/* bottle game */
.gv-bottle-stage {
  aspect-ratio: 1;
  max-width: 460px;
  margin: 0 auto;
  position: relative;
  width: 100%;
}
.gv-bottle-ring {
  position: absolute; inset: 0;
  border: 2px dashed var(--line);
  border-radius: 50%;
}
.gv-bottle-player {
  position: absolute;
  top: 50%; left: 50%;
  transform-origin: 0 0;
  font-family: var(--display);
  font-size: 16px;
  text-transform: uppercase;
  color: var(--ink-dim);
  white-space: nowrap;
  transition: color .3s;
}
.gv-bottle-player.is-chosen {
  color: var(--hot);
  text-shadow: 0 0 20px var(--hot);
  font-size: 22px;
}
.gv-bottle {
  position: absolute;
  top: 50%; left: 50%;
  width: 12px; height: 60%;
  transform: translate(-50%, -50%);
  transform-origin: 50% 50%;
  background: linear-gradient(180deg, var(--party), var(--hot));
  border-radius: 100px 100px 6px 6px;
  box-shadow: 0 0 40px var(--hot);
  transition: transform 4s cubic-bezier(.15,.8,.15,1);
}

/* bomb */
.gv-bomb {
  font-family: var(--display);
  font-size: clamp(60px, 12vw, 140px);
  text-align: center;
  color: var(--ink);
  letter-spacing: -.02em;
  text-transform: uppercase;
}
.gv-bomb-timer {
  font-family: var(--mono);
  font-size: 14px;
  color: var(--ink-faint);
  text-align: center;
  letter-spacing: .2em;
  margin-top: 12px;
}
.gv-bomb.is-warn { color: var(--spicy); }
.gv-bomb.is-danger { color: var(--adult); animation: shake .2s infinite; }
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-3px) rotate(-1deg); }
  75% { transform: translateX(3px) rotate(1deg); }
}

/* imposter reveal */
.gv-reveal {
  padding: 60px 30px;
  background: var(--bg-warm);
  text-align: center;
  border: 1px solid var(--line);
  cursor: pointer;
  transition: all .3s;
  display: flex; flex-direction: column; gap: 18px; align-items: center;
  min-height: 320px; justify-content: center;
}
.gv-reveal:hover { background: var(--bg); }
.gv-reveal-word {
  font-family: var(--display);
  font-size: clamp(48px, 9vw, 96px);
  text-transform: uppercase;
  letter-spacing: -.02em;
  color: var(--ink);
}
.gv-reveal-word.is-imposter {
  color: var(--adult);
  text-shadow: 0 0 30px var(--adult);
}
.gv-reveal-hint {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--ink-dim);
}

/* letter for stadt land fluss */
.gv-letter {
  font-family: var(--display);
  font-size: clamp(140px, 30vw, 320px);
  text-align: center;
  color: var(--party);
  text-shadow: 0 0 60px rgba(255,214,10,.4);
  line-height: 1;
  letter-spacing: -.03em;
  animation: letterPop .6s var(--ease);
}
@keyframes letterPop {
  from { transform: scale(.3); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* would you rather options */
.gv-vs {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  align-items: stretch;
  min-height: 340px;
}
.gv-vs-side {
  padding: 36px 28px;
  border: 1px solid var(--line);
  background: var(--bg-warm);
  display: flex; flex-direction: column; justify-content: center; gap: 14px;
  cursor: pointer;
  transition: all .25s var(--ease);
  text-align: center;
}
.gv-vs-side:hover {
  border-color: var(--accent);
  background: var(--bg);
  transform: translateY(-3px);
}
.gv-vs-side-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-faint);
  letter-spacing: .25em;
  text-transform: uppercase;
}
.gv-vs-side-text {
  font-family: var(--serif);
  font-style: italic;
  font-size: 24px;
  line-height: 1.3;
}
.gv-vs-or {
  display: flex; align-items: center;
  font-family: var(--display);
  font-size: 32px;
  color: var(--hot);
  text-transform: uppercase;
}

/* responsive */
@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-right { justify-content: flex-start; padding-right: 0; }
  .hero-sidetag { display: none; }
  .gamecard, .gamecard--feature, .gamecard--wide, .gamecard--tall {
    grid-column: span 6;
    min-height: 280px;
  }
  .how-steps { grid-template-columns: 1fr; }
  .foot { grid-template-columns: 1fr; }
  .foot-meta { text-align: left; }
}
/* =============================================
   NEW 18+ GAME COMPONENTS
   ============================================= */

/* DICE — sex würfel */
.gv-dice {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.gv-die {
  --c: var(--ink);
  padding: 22px 18px;
  border: 2px solid var(--c);
  background: var(--bg-warm);
  border-radius: 8px;
  text-align: center;
  position: relative;
  min-height: 140px;
  display: flex; flex-direction: column; gap: 14px; align-items: center; justify-content: center;
  box-shadow: 0 0 30px color-mix(in srgb, var(--c) 25%, transparent);
}
.gv-die-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--c);
}
.gv-die-value {
  font-family: var(--display);
  font-size: 22px;
  text-transform: uppercase;
  line-height: 1.1;
  letter-spacing: -.01em;
}

/* PLAYING CARD — sex karten */
.gv-playing-card {
  --c: var(--party);
  position: relative;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  aspect-ratio: 2 / 3;
  background: linear-gradient(160deg, var(--bg-warm), var(--bg));
  border: 2px solid var(--c);
  border-radius: 14px;
  padding: 26px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 18px;
  box-shadow: 0 30px 60px rgba(0,0,0,.5), 0 0 40px color-mix(in srgb, var(--c) 25%, transparent);
}
.gv-pc-corner {
  position: absolute;
  font-family: var(--display);
  font-size: 28px;
  color: var(--c);
}
.gv-pc-tl { top: 14px; left: 18px; }
.gv-pc-br { bottom: 14px; right: 18px; transform: rotate(180deg); }
.gv-pc-suit {
  font-family: var(--display);
  font-size: clamp(72px, 12vw, 120px);
  color: var(--c);
  line-height: 1;
  text-shadow: 0 0 30px color-mix(in srgb, var(--c) 50%, transparent);
}
.gv-pc-text {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.3;
  text-align: center;
  color: var(--ink);
}
.gv-pc-foot {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
@keyframes cardFlip {
  0% { transform: rotateY(180deg) scale(.9); opacity: 0; }
  60% { transform: rotateY(0deg) scale(1.02); opacity: 1; }
  100% { transform: rotateY(0deg) scale(1); }
}
.gv-card-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--line);
  background: var(--bg-warm);
}
.gv-card-meta > div {
  display: flex; flex-direction: column; gap: 4px;
}
.gv-card-meta span {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.gv-card-meta strong {
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: -.01em;
}

/* BOARD — schlafzimmer brett */
.gv-board {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 3px;
  padding: 10px;
  border: 1px solid var(--line);
  background: var(--bg-warm);
}
.bd-sq {
  aspect-ratio: 1;
  background: var(--bg);
  position: relative;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--mono);
  font-size: 9px;
  color: var(--ink-faint);
  border-radius: 3px;
}
.bd-sq.is-touch  { background: color-mix(in srgb, var(--hot) 18%, var(--bg)); }
.bd-sq.is-tease  { background: color-mix(in srgb, var(--party) 18%, var(--bg)); }
.bd-sq.is-dare   { background: color-mix(in srgb, var(--adult) 22%, var(--bg)); }
.bd-sq.is-truth  { background: color-mix(in srgb, var(--chill) 18%, var(--bg)); }
.bd-sq.is-wild   { background: color-mix(in srgb, var(--spicy) 25%, var(--bg)); }
.bd-sq.is-skip   { background: var(--bg-warm); }
.bd-sq.is-back2  { background: color-mix(in srgb, var(--adult) 30%, var(--bg)); }
.bd-sq.is-start  { background: var(--chill); color: var(--bg); font-weight: 700; }
.bd-sq.is-end    { background: var(--party); color: var(--bg); font-weight: 700; }
.bd-sq-n { font-family: var(--mono); font-size: 8px; opacity: .6; position: absolute; top: 2px; left: 3px; }
.bd-tok {
  position: absolute;
  width: 60%; height: 60%;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display);
  font-size: 12px;
  color: var(--bg);
  z-index: 2;
}
.bd-tok-1 { background: var(--hot); top: 15%; left: 15%; box-shadow: 0 0 10px var(--hot); }
.bd-tok-2 { background: var(--chill); bottom: 15%; right: 15%; box-shadow: 0 0 10px var(--chill); }

/* SWIPE — fantasy match */
.gv-swipe {
  position: relative;
  min-height: 320px;
  display: flex; align-items: center; justify-content: center;
}
.gv-swipe-card {
  width: 100%;
  max-width: 460px;
  padding: 56px 32px;
  border: 2px solid var(--accent);
  background: linear-gradient(160deg, var(--bg-warm), var(--bg));
  border-radius: 18px;
  text-align: center;
  transition: transform .28s var(--ease), opacity .28s var(--ease);
  box-shadow: 0 30px 60px rgba(0,0,0,.5);
  min-height: 280px;
  display: flex; flex-direction: column; justify-content: center; gap: 24px;
}
.gv-swipe-text {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.3;
}
.gv-swipe-hint {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

/* STRIP grid */
.gv-strip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 10px;
}
.sg-pick {
  padding: 18px 14px;
  border: 1px solid var(--line);
  background: var(--bg);
  color: var(--ink);
  display: flex; flex-direction: column; gap: 6px;
  cursor: pointer;
  transition: all .25s var(--ease);
}
.sg-pick:hover {
  border-color: var(--adult);
  background: color-mix(in srgb, var(--adult) 15%, var(--bg));
  transform: translateY(-2px);
}
.sg-pick-name {
  font-family: var(--display);
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: -.01em;
}
.sg-pick-count {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-faint);
  letter-spacing: .1em;
}

/* BINGO */
.gv-bingo {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
}
.bi-cell {
  aspect-ratio: 1;
  border: 1px solid var(--line);
  background: var(--bg-warm);
  padding: 10px;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  font-family: var(--body);
  font-size: 11px;
  font-weight: 500;
  line-height: 1.2;
  cursor: pointer;
  transition: all .2s var(--ease);
  position: relative;
}
.bi-cell:hover { border-color: var(--accent); }
.bi-cell.is-checked {
  background: var(--hot);
  color: var(--bg);
  border-color: var(--hot);
  font-weight: 700;
}
.bi-cell.is-checked::after {
  content: "✓";
  position: absolute;
  top: 4px; right: 6px;
  font-family: var(--display);
  font-size: 14px;
}
.bi-cell.is-free {
  background: var(--party);
  color: var(--bg);
  font-family: var(--display);
  font-size: 24px;
}

/* WHEEL */
.gv-wheel-stage {
  position: relative;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 1;
  margin: 0 auto;
}
.gv-wheel-pointer {
  position: absolute;
  top: -10px; left: 50%;
  transform: translateX(-50%);
  font-size: 36px;
  color: var(--adult);
  z-index: 5;
  text-shadow: 0 0 20px var(--adult);
}
.gv-wheel {
  width: 100%; height: 100%;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  transform: rotate(0deg);
  transition: transform 4s cubic-bezier(.15,.8,.15,1);
  border: 4px solid var(--ink);
  box-shadow: 0 0 40px rgba(0,0,0,.6);
}
.wl-seg {
  position: absolute;
  top: 0; left: 50%;
  width: 50%; height: 50%;
  transform-origin: 0% 100%;
  transform: rotate(var(--rot)) skewY(-84deg);
  background: var(--c);
  border-right: 1px solid rgba(0,0,0,.3);
}

/* KINK */
.gv-kink-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 32px;
}
.kl-btn {
  padding: 28px 14px;
  font-family: var(--display);
  font-size: 28px;
  text-transform: uppercase;
  letter-spacing: -.01em;
  border: 2px solid var(--line);
  background: var(--bg-warm);
  color: var(--ink);
  cursor: pointer;
  transition: all .25s var(--ease);
}
.kl-no:hover    { border-color: var(--adult); background: var(--adult); color: var(--bg); }
.kl-maybe:hover { border-color: var(--party); background: var(--party); color: var(--bg); }
.kl-yes:hover   { border-color: var(--chill); background: var(--chill); color: var(--bg); }

/* responsive helpers for new components */
@media (max-width: 680px) {
  .gv-dice { grid-template-columns: 1fr; }
  .gv-die { min-height: 100px; }
  .gv-playing-card { aspect-ratio: 3 / 4; }
  .gv-board { grid-template-columns: repeat(6, 1fr); }
  .gv-strip-grid { grid-template-columns: 1fr 1fr; }
  .gv-bingo { gap: 3px; }
  .bi-cell { font-size: 9px; padding: 4px; }
  .gv-kink-grid { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .topnav { grid-template-columns: auto 1fr; padding: 14px 18px; gap: 14px; }
  .topnav-now { display: none; }
  .topnav-meta { display: none; }
  .hero { padding: 50px 18px 30px; }
  .filterbar { padding: 40px 18px 24px; }
  .games { padding: 24px 18px; grid-template-columns: 1fr; gap: 14px; }
  .gamecard, .gamecard--feature, .gamecard--wide, .gamecard--tall {
    grid-column: span 1;
    min-height: 240px;
  }
  .how { padding: 60px 18px; }
  .foot { padding: 50px 18px 30px; }
  .overlay-frame { inset: 0; border: 0; }
  .overlay-head { padding: 14px 18px; }
  .overlay-title { font-size: 18px; }
  .overlay-body { padding: 28px 18px; }
  .gv-card { padding: 36px 20px; min-height: 280px; }
  .gv-vs { grid-template-columns: 1fr; }
  .gv-vs-or { justify-content: center; }
  .hero-marquee { margin: 40px -18px -30px; }
  .marquee-track { font-size: 22px; }
}
