:root {
  --house: #0d0809;
  --wall-c: #2a1a12;
  --wall-e: #140b0d;
  --curtain: #8f1729;
  --gold: #ffcc4d;
  --gold-deep: #7a590f;
  --rope: #e8b84a;
  --rope-dark: #b88729;
  --bulb: #fff2b3;
  --sign-face: #1a0d0f;
  --spot: #ffe2a0;
  --hot: #fa4d33;
  --hot-lip: #941a0f;
  --party: #333340;
  --party-lip: #0a0a0e;
  --floor-top: #3b291a;
  --floor-bottom: #1f140f;
  --floor-edge: #4d3624;
  --nav-face: #1b1b22;
  --cream: #ede0c7;
  --cream-dark: #b8a68a;
  --cream-shadow: #7a6b54;
  --ink: #fff7e6;
  --sub: rgba(255, 247, 230, 0.7);
  --mute: rgba(255, 247, 230, 0.4);
  --line: rgba(255, 247, 230, 0.09);
  --anton: "Anton", Impact, "Arial Narrow Bold", sans-serif;
  --oswald: "Oswald", "Arial Narrow", sans-serif;
  --curtain-w: clamp(150px, 20vw, 300px);
  --floor-h: 140px;
  --valance-h: 48px;
}

* {
  box-sizing: border-box;
  margin: 0;
}

::selection {
  background: rgba(255, 204, 77, 0.35);
}

html, body {
  height: 100%;
}

body {
  background: var(--house);
  color: var(--ink);
  font-family: var(--oswald);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: var(--gold);
}

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

h1, h2 {
  font-family: var(--anton);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1;
}

i {
  display: block;
  font-style: normal;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* ---------- stage ---------- */

.stage {
  position: relative;
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
  isolation: isolate;
}

.wall {
  position: absolute;
  inset: 0;
  background: radial-gradient(75% 75% at 50% 18%, var(--wall-c) 0%, var(--wall-e) 55%, var(--house) 100%);
}

.spot {
  position: absolute;
  top: -40px;
  bottom: 0;
  left: 50%;
  width: clamp(380px, 46vw, 680px);
  transform: translateX(-50%);
  clip-path: polygon(47% 0, 53% 0, 100% 100%, 0 100%);
  background: radial-gradient(circle at 50% 0, rgba(255, 226, 160, 0.40) 0%, rgba(255, 226, 160, 0.10) 40%, rgba(255, 226, 160, 0) 78%);
  mix-blend-mode: plus-lighter;
  pointer-events: none;
}

.curtain {
  position: absolute;
  top: 0;
  bottom: 0;
  width: var(--curtain-w);
  z-index: 3;
  background: repeating-linear-gradient(90deg, #4d0914 0 6px, #8f1729 14px, #c2243a 22px, #8f1729 30px, #4d0914 40px);
}

.curtain.left { left: 0; }
.curtain.right { right: 0; }

.curtain canvas {
  display: block;
  width: 100%;
  height: 100%;
}

.curtain .edge {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 28px;
  pointer-events: none;
}

.curtain.left .edge {
  left: 100%;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.curtain.right .edge {
  right: 100%;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.5));
}

.tieback {
  position: absolute;
  top: 56%;
  width: var(--curtain-w);
  height: 16px;
  z-index: 4;
  background: repeating-linear-gradient(112deg, var(--rope) 0 5px, var(--rope-dark) 5px 10px);
  box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.25), 0 4px 4px rgba(0, 0, 0, 0.5);
}

.tieback.left {
  left: 0;
  border-radius: 0 8px 8px 0;
  background: repeating-linear-gradient(-112deg, var(--rope) 0 5px, var(--rope-dark) 5px 10px);
}

.tieback.right {
  right: 0;
  border-radius: 8px 0 0 8px;
}

.valance {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: var(--valance-h);
  z-index: 5;
  pointer-events: none;
}

.valance canvas {
  display: block;
  width: 100%;
  height: 26px;
  background: repeating-linear-gradient(90deg, #4d0914 0 4px, #8f1729 9px, #c2243a 14px, #8f1729 19px, #4d0914 26px);
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.6);
}

.valance .scallops {
  height: 22px;
  background: radial-gradient(15px 16px at 50% 4px, var(--curtain) 97%, transparent 100%);
  background-size: 30px 22px;
  background-position: 0 0;
  filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.5));
}

/* ---------- marquee sign ---------- */

.sign {
  position: absolute;
  top: calc(var(--valance-h) + 14px);
  left: 50%;
  transform: translateX(-50%);
  width: 320px;
  padding: 12px 18px;
  z-index: 6;
  text-align: center;
  font-size: 64px;
  letter-spacing: 3px;
  color: var(--bulb);
  text-shadow: 0 3px 0 var(--gold-deep), 0 0 10px rgba(255, 204, 77, 0.8);
  background: var(--sign-face);
  border: 6px solid var(--gold);
  border-radius: 16px;
  box-shadow:
    inset 0 0 0 6px var(--sign-face),
    inset 0 0 0 9px var(--gold-deep),
    0 0 18px rgba(255, 204, 77, 0.45),
    0 10px 16px rgba(0, 0, 0, 0.6);
}

.sign-text {
  display: block;
  line-height: 1.05;
}

.sign .bulb {
  position: absolute;
  width: 10px;
  height: 10px;
  margin: -5px 0 0 -5px;
  border-radius: 50%;
  background: var(--bulb);
  opacity: 0.35;
  animation: chase 0.66s linear infinite;
}

@keyframes chase {
  0%, 33.3% { opacity: 1; box-shadow: 0 0 6px 1px rgba(255, 204, 77, 0.9); }
  33.4%, 100% { opacity: 0.35; box-shadow: none; }
}

/* ---------- hanging mic ---------- */

.mic {
  position: absolute;
  top: -60px;
  width: 74px;
  z-index: 2;
  display: none;
  flex-direction: column;
  align-items: center;
  transform-origin: 50% 0;
  animation: sway 5.2s ease-in-out infinite;
  filter: drop-shadow(0 16px 16px rgba(0, 0, 0, 0.6));
}

.mic.on {
  display: flex;
}

@keyframes sway {
  0%, 100% { transform: rotate(-2.2deg); }
  50% { transform: rotate(2.2deg); }
}

.mic .cable { width: 3px; height: var(--cable, 300px); background: #1a1a1a; }
.mic .neck { width: 22px; height: 30px; border-radius: 4px 4px 0 0; background: linear-gradient(90deg, #1c1c1c, #3b3b3b, #171717); }
.mic .body { width: 40px; height: 44px; border-radius: 0 0 6px 6px; background: linear-gradient(90deg, #212121, #4a4a4a, #1a1a1a); }
.mic .ring { width: 66px; height: 14px; margin-top: -2px; border-radius: 4px; background: linear-gradient(#d9d9d9, #8a8a8a, #595959); position: relative; z-index: 1; }
.mic .head {
  width: 74px;
  height: 84px;
  margin-top: -4px;
  border-radius: 34px 34px 40px 40px / 34px 34px 44px 44px;
  background:
    linear-gradient(rgba(0, 0, 0, 0) 70%, rgba(0, 0, 0, 0.45)),
    radial-gradient(40px 40px at 40% 30%, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0) 100%),
    radial-gradient(circle, rgba(0, 0, 0, 0.55) 0.9px, transparent 1.1px) 2px 2px / 4px 4px,
    linear-gradient(#bababa, #5e5e5e);
}

/* ---------- column ---------- */

.column {
  position: absolute;
  top: 200px;
  left: 50%;
  width: 440px;
  z-index: 5;
  transform: translateX(-50%);
  transform-origin: 50% 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* tv */

.tv {
  position: relative;
  z-index: 0;
}

.tv .foot {
  position: absolute;
  bottom: -10px;
  width: 36px;
  height: 14px;
  border-radius: 2px 2px 6px 6px;
  background: linear-gradient(#2e2e2e, #0a0a0a);
  z-index: -1;
}

.tv .foot.l { left: 40px; }
.tv .foot.r { right: 40px; }

.cabinet {
  padding: 10px;
  border-radius: 26px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0) 33%, rgba(255, 255, 255, 0) 66%, rgba(122, 107, 84, 0.35)),
    linear-gradient(rgba(122, 107, 84, 0) 80%, rgba(122, 107, 84, 0.55)),
    linear-gradient(rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0) 22%),
    linear-gradient(var(--cream) 0%, var(--cream) 50%, var(--cream-dark) 100%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.6),
    inset 0 0 0 2px rgba(122, 107, 84, 0.5),
    0 18px 22px rgba(0, 0, 0, 0.75);
}

.bezel {
  padding: 3px;
  border-radius: 22px;
  background: linear-gradient(135deg, #f2f2f2, #8c8c8c 35%, #d9d9d9 65%, #737373);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
}

.bezel-in {
  padding: 13px;
  border-radius: 19px;
  background: linear-gradient(#3d3d3d, #1a1a1a);
  box-shadow: inset 0 0 0 1.5px rgba(0, 0, 0, 0.7);
}

.glass {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 18px;
  border: 4px solid rgba(0, 0, 0, 0.9);
  overflow: hidden;
  background: #0a0806;
  box-shadow: inset 0 0 0 1.2px rgba(255, 255, 255, 0.22);
}

.glass .clip,
.glass .screen,
.glass .dimmer {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.glass .clip {
  object-fit: cover;
}

.glass .screen {
  transition: opacity 0.15s ease;
}

.column[data-screen="scene"] .screen,
.column[data-screen="dim"] .screen {
  opacity: 0;
}

.glass .dimmer {
  background: rgba(0, 0, 0, 0.35);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.column[data-screen="dim"] .dimmer {
  opacity: 1;
}

.glass .sub {
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 7%;
  text-align: center;
  font-family: var(--oswald);
  font-weight: 600;
  font-size: 15px;
  line-height: 1.2;
  color: #fff3c4;
  text-shadow: 0 1px 0 #000, 0 0 4px #000, 0 0 10px rgba(0, 0, 0, 0.9);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.column[data-screen="scene"] .sub,
.column[data-screen="dim"] .sub {
  opacity: 1;
}

.glass .vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(0, 0, 0, 0) 80px, rgba(0, 0, 0, 0.5) 330px);
}

.glass .scan {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(rgba(0, 0, 0, 1) 0 1px, transparent 1px 3px);
  opacity: 0.18;
}

.glass .glare {
  position: absolute;
  width: 420px;
  height: 150px;
  left: 50%;
  top: 50%;
  margin: -160px 0 0 -280px;
  border-radius: 50%;
  transform: rotate(-9deg);
  background: linear-gradient(rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0));
}

.controls {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 16px;
}

.controls .grille {
  width: 132px;
  height: 34px;
  padding: 6px;
  border-radius: 6px;
  background:
    radial-gradient(circle, rgba(0, 0, 0, 0.7) 1.5px, transparent 1.9px) 3px 3px / 6px 6px content-box,
    radial-gradient(circle, rgba(0, 0, 0, 0.7) 1.5px, transparent 1.9px) 6px 6px / 6px 6px content-box,
    rgba(184, 166, 138, 0.55) padding-box;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.18);
}

.controls .led {
  width: 7px;
  height: 7px;
  margin-left: auto;
  border-radius: 50%;
  background: #f22e1f;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.35), 0 0 6px 1px rgba(255, 77, 51, 0.9);
}

.controls .knob {
  position: relative;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: radial-gradient(16px 16px at 40% 35%, #4d4d4d, #1f1f1f);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.7), inset 0 0 0 2px rgba(255, 255, 255, 0.12), 0 3px 3px rgba(0, 0, 0, 0.5);
}

.controls .knob::after {
  content: "";
  position: absolute;
  left: 12px;
  top: 3px;
  width: 2px;
  height: 9px;
  border-radius: 1px;
  background: #d9d9d9;
}

/* caption */

/* play area */

.deck-area {
  display: grid;
}

.play,
.verdict {
  grid-area: 1 / 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.play {
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.verdict {
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.column[data-phase="judging"] .play,
.column[data-phase="reveal"] .play,
.column[data-phase="out"] .play {
  opacity: 0;
  transform: scale(0.96);
}

.column[data-phase="judging"] .verdict,
.column[data-phase="reveal"] .verdict {
  opacity: 1;
}

.wavebox {
  position: relative;
  height: 104px;
  padding: 0 10px;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.55);
  box-shadow: inset 0 0 0 2px var(--gold-deep);
  transition: box-shadow 0.2s ease;
}

.column[data-rec="1"] .wavebox {
  box-shadow: inset 0 0 0 2px var(--hot), 0 0 12px rgba(250, 77, 51, 0.5);
}

.wave {
  display: block;
  width: 100%;
  height: 100%;
}

.rec-tag {
  position: absolute;
  top: 8px;
  right: 8px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--hot);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.rec-tag i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--hot);
}

.column[data-rec="1"] .rec-tag {
  opacity: 1;
}

.deck-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.deck {
  position: relative;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 54px;
  border-radius: 12px;
  font-family: var(--anton);
  font-size: 20px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  line-height: 1;
  box-shadow: inset 0 1.2px 0 rgba(255, 255, 255, 0.2), inset 0 -1.2px 0 rgba(0, 0, 0, 0.22);
  transition: transform 0.16s cubic-bezier(0.2, 1.3, 0.4, 1), filter 0.2s ease, opacity 0.2s ease;
}

.deck > * {
  filter: drop-shadow(0 1px 0 rgba(0, 0, 0, 0.5));
}

.deck::before,
.deck::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
}

.deck::before {
  z-index: -1;
  transform: translateY(6px);
  transition: transform 0.16s cubic-bezier(0.2, 1.3, 0.4, 1);
}

.deck::after {
  z-index: -2;
  background: rgba(0, 0, 0, 0.5);
  filter: blur(10px);
  transform: translateY(13px) scaleX(0.96);
}

.deck.hot { background: var(--hot); color: #fff; }
.deck.hot::before { background: var(--hot-lip); }
.deck.gold { background: var(--gold); color: var(--gold-deep); box-shadow: inset 0 1.2px 0 rgba(255, 255, 255, 0.35), inset 0 -1.2px 0 rgba(0, 0, 0, 0.22); }
.deck.gold::before { background: var(--gold-deep); }
.deck.dark { background: var(--party); color: var(--gold); }
.deck.dark::before { background: var(--party-lip); }

.deck.pressed { transform: translateY(5px); }
.deck.pressed::before { transform: translateY(1px); }

.deck.off {
  filter: saturate(0.35) brightness(0.88);
  opacity: 0.75;
}

.deck .ic-stop { display: none; }
.deck.stop .ic-stop { display: block; }
.deck.stop .ic-mic { display: none; }

/* verdict */

.judging,
.reveal {
  grid-area: 1 / 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.verdict {
  display: grid;
  place-items: center;
}

.judging p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
}

.dots {
  display: flex;
  gap: 10px;
}

.dots i {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--bulb);
  opacity: 0.3;
  animation: dot 0.9s linear infinite;
}

.dots i:nth-child(2) { animation-delay: 0.3s; }
.dots i:nth-child(3) { animation-delay: 0.6s; }

@keyframes dot {
  0%, 33.3% { opacity: 1; box-shadow: 0 0 6px 1px rgba(255, 204, 77, 0.9); }
  33.4%, 100% { opacity: 0.3; box-shadow: none; }
}

.reveal {
  position: relative;
  gap: 6px;
  opacity: 0;
  transform: scale(0.7);
}

.column[data-phase="reveal"] .judging { opacity: 0; }
.column[data-phase="reveal"] .reveal { opacity: 1; transform: none; }

.reveal .confetti {
  position: absolute;
  width: 420px;
  height: 420px;
  left: 50%;
  top: 50%;
  margin: -210px 0 0 -210px;
  pointer-events: none;
}

.tier {
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: rgba(255, 204, 77, 0.85);
}

.score {
  font-family: var(--anton);
  font-size: 96px;
  line-height: 1;
  color: var(--bulb);
  text-shadow: 0 3px 0 var(--gold-deep), 0 0 12px rgba(255, 204, 77, 0.4);
  transform: scale(0.86);
  transition: transform 0.5s cubic-bezier(0.2, 1.5, 0.4, 1), text-shadow 0.4s ease;
}

.column[data-landed="1"] .score {
  transform: none;
  text-shadow: 0 3px 0 var(--gold-deep), 0 0 26px rgba(255, 204, 77, 0.9);
}

.stars {
  display: flex;
  gap: 8px;
  padding-top: 2px;
}

.star {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: rgba(122, 89, 15, 0.7);
  stroke-width: 2.4;
  transform: scale(0.8);
  transition: transform 0.35s cubic-bezier(0.2, 1.8, 0.4, 1), fill 0.2s ease, filter 0.2s ease;
}

.star.on {
  fill: var(--gold);
  stroke: var(--gold);
  transform: none;
  filter: drop-shadow(0 0 8px rgba(255, 204, 77, 0.7));
}

.reveal .line {
  padding-top: 6px;
  font-size: 17px;
  color: rgba(255, 255, 255, 0.8);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.column[data-landed="1"] .line {
  opacity: 1;
}

/* ---------- floor ---------- */

.floor {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: var(--floor-h);
  z-index: 6;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding-top: 8px;
  background:
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0) 28px),
    radial-gradient(190px 100px at 50% 0, rgba(255, 226, 160, 0.26), rgba(255, 226, 160, 0.08) 50%, rgba(255, 226, 160, 0) 100%),
    repeating-linear-gradient(90deg, rgba(0, 0, 0, 0) 0 44px, rgba(0, 0, 0, 0.28) 44px 46px),
    linear-gradient(var(--floor-top), var(--floor-bottom));
  box-shadow: inset 0 4px 0 var(--floor-edge);
}

.store-badge {
  display: inline-block;
  line-height: 0;
  border-radius: 9px;
  filter: drop-shadow(0 8px 10px rgba(0, 0, 0, 0.55));
  transition: transform 0.15s ease;
}

.store-badge img {
  height: 54px;
  width: auto;
}

.store-badge:hover {
  transform: translateY(-2px);
}

.floor-links {
  display: flex;
  gap: 18px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 204, 77, 0.55);
}

.floor-links a {
  color: rgba(255, 204, 77, 0.85);
  text-decoration: none;
  font-weight: 600;
}

.floor-links a:hover {
  color: var(--gold);
}

/* ---------- inner pages ---------- */

.page {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  padding: 0 clamp(20px, 5vw, 48px);
  background: radial-gradient(70% 55% at 50% 0%, rgba(255, 204, 77, 0.09), transparent 70%);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
  font-family: var(--anton);
  font-size: 22px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.wordmark img {
  width: 34px;
  height: 34px;
  border-radius: 9px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}

.nav-cta {
  text-decoration: none;
  color: var(--gold);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 10px 16px;
  border: 1px solid rgba(255, 204, 77, 0.35);
  border-radius: 999px;
}

.nav-cta:hover {
  background: rgba(255, 204, 77, 0.12);
}

.lede {
  color: var(--sub);
  font-size: 19px;
}

.legal {
  flex: 1;
  max-width: 720px;
  padding: 24px 0 72px;
}

.legal .meta {
  color: var(--gold);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.legal h1 {
  font-size: clamp(40px, 6vw, 64px);
  margin-bottom: 18px;
  color: var(--bulb);
  text-shadow: 0 2px 0 var(--gold-deep), 0 0 8px rgba(255, 204, 77, 0.5);
}

.legal .lede {
  margin: 0 0 36px;
}

.legal h2 {
  font-family: var(--oswald);
  font-weight: 600;
  text-transform: none;
  font-size: 22px;
  margin: 36px 0 10px;
  color: var(--ink);
}

.legal p,
.legal li {
  color: var(--sub);
  margin-bottom: 12px;
}

.legal ul {
  padding-left: 22px;
}

.legal strong {
  color: var(--ink);
  font-weight: 600;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px 24px;
  padding: 20px 0 26px;
  border-top: 1px solid var(--line);
  color: var(--mute);
  font-size: 13px;
  letter-spacing: 0.04em;
}

.footer-links {
  display: flex;
  gap: 22px;
}

.footer-links a {
  color: var(--sub);
  text-decoration: none;
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-links a:hover {
  color: var(--gold);
}

.notfound {
  flex: 1;
  display: grid;
  place-items: center;
  text-align: center;
}

.notfound h1 {
  font-size: clamp(64px, 12vw, 140px);
  color: var(--bulb);
  text-shadow: 0 4px 0 var(--gold-deep), 0 0 24px rgba(255, 204, 77, 0.6);
}

.notfound p {
  color: var(--sub);
  margin: 12px 0 28px;
}

.stage.og .floor,
.stage.og .deck-row,
.stage.og .mic {
  display: none;
}

/* ---------- responsive ---------- */

@media (max-width: 700px) {
  :root {
    --curtain-w: 40px;
    --floor-h: 128px;
    --valance-h: 40px;
  }
  .valance canvas { height: 22px; }
  .valance .scallops { height: 18px; background-size: 26px 18px; background-image: radial-gradient(13px 14px at 50% 3px, var(--curtain) 97%, transparent 100%); }
  .sign { width: 236px; font-size: 44px; padding: 10px 14px; border-width: 5px; box-shadow: inset 0 0 0 5px var(--sign-face), inset 0 0 0 7px var(--gold-deep), 0 0 18px rgba(255, 204, 77, 0.45), 0 10px 16px rgba(0, 0, 0, 0.6); }
  .sign .bulb { width: 8px; height: 8px; margin: -4px 0 0 -4px; }
  .spot { width: 380px; }
  .tieback { top: 58%; height: 12px; }
  .score { font-size: 80px; }
  .glass .sub { font-size: 12px; }
  .controls .grille { width: 104px; height: 30px; }
  .floor-links { gap: 14px; font-size: 11px; }
}

@media (prefers-reduced-motion: reduce) {
  .sign .bulb, .dots i, .mic { animation: none; }
  .sign .bulb { opacity: 1; box-shadow: 0 0 6px 1px rgba(255, 204, 77, 0.9); }
}
