@font-face { font-family: "Geist"; src: url("../fonts/geist-var.woff2") format("woff2"); font-weight: 100 900; font-display: swap; }
@font-face { font-family: "Geist Mono"; src: url("../fonts/geist-mono-var.woff2") format("woff2"); font-weight: 100 900; font-display: swap; }

:root {
  --black: #050505;
  --ink: #EDE7DE;                        /* a projected white: warm, never pure */
  --ink-2: rgba(237, 231, 222, 0.66);
  --ink-3: rgba(237, 231, 222, 0.4);
  --line: rgba(237, 231, 222, 0.12);
  --lamp: #FFB85C;                       /* tungsten, the one accent */
  --glass: rgba(16, 14, 12, 0.46);
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-io: cubic-bezier(0.77, 0, 0.175, 1);
  --pad: clamp(18px, 2.4vw, 36px);
}
* { box-sizing: border-box; }
html { background: var(--black); color: var(--ink); -webkit-font-smoothing: antialiased; }
body { margin: 0; font-family: "Geist", system-ui, sans-serif; font-size: 16px; line-height: 1.5; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
button:focus-visible, a:focus-visible { outline: 1px solid var(--lamp); outline-offset: 3px; border-radius: 999px; }
.num { font-variant-numeric: tabular-nums; }

/* ------------------------------------------------------------ the bar */
.bar { position: fixed; inset: 0 0 auto 0; z-index: 30; height: 68px; display: flex; align-items: center; justify-content: space-between; padding: 0 var(--pad); pointer-events: none; }
.bar > * { pointer-events: auto; }
.mark { display: inline-flex; align-items: center; gap: 11px; font-weight: 560; letter-spacing: 0.36em; text-transform: uppercase; font-size: 12px; color: var(--ink); }
.mark-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--lamp); box-shadow: 0 0 10px var(--lamp), 0 0 22px rgba(255, 184, 92, 0.5); }
.bar-right { display: flex; align-items: center; gap: 10px; }
.onair { display: inline-flex; align-items: center; gap: 8px; font-family: "Geist Mono", monospace; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-2); margin-right: 10px; }
.onair i { width: 7px; height: 7px; border-radius: 50%; background: var(--ink-3); }
.onair[data-state="live"] i { background: #FF3B30; box-shadow: 0 0 10px rgba(255, 59, 48, 0.85); animation: rec 1.6s ease-in-out infinite; }
@keyframes rec { 50% { opacity: 0.35; } }
.icon-btn, .btn-ghost {
  height: 38px; border-radius: 999px; display: inline-flex; align-items: center; justify-content: center;
  background: var(--glass); -webkit-backdrop-filter: blur(16px) saturate(1.15); backdrop-filter: blur(16px) saturate(1.15);
  box-shadow: inset 0 0 0 1px var(--line), 0 10px 30px -12px rgba(0, 0, 0, 0.7);
  transition: background-color 180ms ease, transform 140ms var(--ease-out), box-shadow 180ms ease;
}
.icon-btn { width: 38px; }
.icon-btn svg, .btn-ghost svg { width: 17px; height: 17px; }
.btn-ghost { gap: 9px; padding: 0 17px 0 14px; font-size: 13.5px; letter-spacing: 0.01em; }
.icon-btn:active, .btn-ghost:active, .btn-lamp:active { transform: scale(0.97); }
@media (hover: hover) and (pointer: fine) {
  .icon-btn:hover, .btn-ghost:hover { background: rgba(38, 34, 30, 0.62); box-shadow: inset 0 0 0 1px rgba(237, 231, 222, 0.2), 0 10px 30px -12px rgba(0, 0, 0, 0.7); }
}
.icon-btn .waves { display: none; }
/* the volume: slides out under the sound button on hover (or keyboard focus) */
.sound { position: relative; display: flex; }
.vol {
  position: absolute; top: calc(100% + 10px); left: 50%; padding: 12px 14px; border-radius: 999px;
  background: var(--glass); -webkit-backdrop-filter: blur(16px) saturate(1.15); backdrop-filter: blur(16px) saturate(1.15);
  box-shadow: inset 0 0 0 1px var(--line), 0 10px 30px -12px rgba(0, 0, 0, 0.7);
  opacity: 0; transform: translate(-50%, -4px); pointer-events: none; transition: opacity 160ms ease, transform 180ms var(--ease-out);
}
.vol::before { content: ""; position: absolute; left: 0; right: 0; top: -12px; height: 12px; }
.sound:focus-within .vol { opacity: 1; transform: translate(-50%, 0); pointer-events: auto; }
@media (hover: hover) and (pointer: fine) { .sound:hover .vol { opacity: 1; transform: translate(-50%, 0); pointer-events: auto; } }
.vol input { display: block; width: 116px; height: 16px; margin: 0; background: transparent; -webkit-appearance: none; appearance: none; cursor: pointer; }
.vol input::-webkit-slider-runnable-track { height: 3px; border-radius: 2px; background: linear-gradient(90deg, var(--lamp) var(--v, 80%), rgba(237, 231, 222, 0.22) var(--v, 80%)); }
.vol input::-moz-range-track { height: 3px; border-radius: 2px; background: rgba(237, 231, 222, 0.22); }
.vol input::-moz-range-progress { height: 3px; border-radius: 2px; background: var(--lamp); }
.vol input::-webkit-slider-thumb { -webkit-appearance: none; width: 13px; height: 13px; margin-top: -5px; border-radius: 50%; background: var(--ink); box-shadow: 0 0 0 3px rgba(255, 184, 92, 0.35); }
.vol input::-moz-range-thumb { width: 13px; height: 13px; border: 0; border-radius: 50%; background: var(--ink); box-shadow: 0 0 0 3px rgba(255, 184, 92, 0.35); }
.vol input:focus-visible { outline: none; }
.vol input:focus-visible::-webkit-slider-thumb { box-shadow: 0 0 0 3px var(--lamp); }
/* the contract address: a stub pinned to the left wall of the hall */
.ca-tab {
  position: absolute; left: 0; top: 50%; transform: translateY(-50%); display: grid; gap: 3px; justify-items: start;
  padding: 12px 16px 12px calc(var(--pad) - 4px); border-radius: 0 6px 6px 0; text-align: left;
  color: #2a1d12; background: linear-gradient(100deg, #ede3cf, #e2d3b8 70%, #d9c8aa);
  box-shadow: 0 14px 30px -12px rgba(0, 0, 0, 0.7); border-right: 2px dotted rgba(42, 29, 18, 0.38);
  filter: brightness(calc(0.5 + var(--lit, 0.5) * 0.55));
  transition: transform 160ms var(--ease-out), filter 400ms ease;
}
.ca-tab[hidden] { display: none; }
.ca-k { font-family: "Big Shoulders Display", sans-serif; font-weight: 800; font-size: 11px; letter-spacing: 0.24em; color: #9b1c12; }
.ca-v { font-family: "Geist Mono", monospace; font-size: 12px; letter-spacing: 0.02em; }
.ca-copy { font-family: "Geist Mono", monospace; font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(42, 29, 18, 0.6); }
.ca-tab:active { transform: translateY(-50%) scale(0.98); }
@media (hover: hover) and (pointer: fine) { .ca-tab:hover { transform: translateY(-50%) translateX(3px); } }
@media (max-width: 760px) { .ca-tab { top: auto; bottom: 120px; transform: none; } .ca-tab:active { transform: scale(0.98); } }
.icon-btn[aria-pressed="true"] { color: var(--lamp); }
.icon-btn[aria-pressed="true"] .waves { display: inline; }
.icon-btn[aria-pressed="true"] .mute { display: none; }

/* ------------------------------------------------------------ the stage: hall, turn, booth */
.stage-wrap { position: relative; height: 560vh; }
.stage { position: sticky; top: 0; height: 100vh; height: 100svh; min-height: 600px; overflow: hidden; background: var(--black); }
.hall-gl { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
.hall-fallback { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.turn { position: absolute; inset: 0; opacity: 0; pointer-events: none; --dim: 0; }
/* when the sheet is lifted off the board, the booth falls back a little so the page can be read */
.turn::after { content: ""; position: absolute; inset: 0; background: radial-gradient(70% 70% at 50% 52%, rgba(0, 0, 0, calc(var(--dim) * 0.5)), rgba(0, 0, 0, var(--dim))); pointer-events: none; z-index: 1; }
.booth-sheet { z-index: 2; }
.booth-sheet.held { filter: brightness(0.97) sepia(0.06); box-shadow: inset 0 0 70px rgba(80, 50, 20, 0.22), 0 40px 90px -20px rgba(0, 0, 0, 0.85); }
.turn-frame { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
.turn-film { position: absolute; left: 0; top: 0; transform-origin: 0 0; filter: brightness(1.08) saturate(1.05); visibility: hidden; }
.booth-sheet, .booth-monitor { position: absolute; left: 0; top: 0; transform-origin: 0 0; opacity: 0; visibility: hidden; backface-visibility: hidden; }

/* the sheet pinned in the booth: a typed standing order, a stamp, a coffee ring, two pins; lit by the desk lamp */
.booth-sheet {
  width: 780px; height: 600px; padding: 50px 52px 34px; color: #231a12; overflow: hidden;
  background:
    radial-gradient(circle at 84% 82%, transparent 44px, rgba(120, 72, 30, 0.2) 46px, rgba(120, 72, 30, 0.08) 50px, transparent 54px),
    radial-gradient(120% 90% at 12% 10%, rgba(255, 238, 205, 0.5), transparent 62%),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='3' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 .3 0 0 0 0 .22 0 0 0 0 .14 0 0 0 .2 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>"),
    linear-gradient(180deg, #e9e0cf, #dbcfb9);
  box-shadow: inset 0 0 70px rgba(80, 50, 20, 0.28);
  font-family: "Geist Mono", monospace; font-size: 19px; line-height: 1.45;
  filter: brightness(0.8) sepia(0.12) contrast(1.02);
}
.sheet-kicker { margin: 0 0 6px; font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(35, 26, 18, 0.6); }
.booth-sheet h2 { margin: 0 0 18px; font-family: "Big Shoulders Display", "Geist", sans-serif; font-weight: 800; font-size: 52px; line-height: 0.95; letter-spacing: 0.01em; text-transform: uppercase; }
.booth-sheet ol { margin: 0; padding: 0 0 0 30px; }
.booth-sheet li { margin: 0 0 10px; padding-left: 6px; }
.booth-sheet li::marker { font-weight: 700; }
.booth-sheet li b { font-weight: 700; }
.sheet-foot { margin: 16px 150px 0 0; padding-top: 12px; border-top: 2px dashed rgba(35, 26, 18, 0.32); font-size: 15px; color: #5a4a38; }
.sheet-stamp {
  position: absolute; right: 44px; bottom: 44px; padding: 6px 12px 5px; border: 3px double rgba(160, 26, 16, 0.75); border-radius: 6px;
  font-family: "Big Shoulders Display", sans-serif; font-weight: 800; font-size: 20px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(160, 26, 16, 0.78);
  transform: rotate(-9deg); mix-blend-mode: multiply;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='60'><filter id='r'><feTurbulence baseFrequency='.7' numOctaves='2'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -2.2 1.55'/></filter><rect width='100%25' height='100%25' filter='url(%23r)'/></svg>");
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='60'><filter id='r'><feTurbulence baseFrequency='.7' numOctaves='2'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -2.2 1.55'/></filter><rect width='100%25' height='100%25' filter='url(%23r)'/></svg>");
}
.sheet-pin { position: absolute; top: 2.4%; width: 22px; height: 22px; margin-left: -11px; border-radius: 50%; background: radial-gradient(circle at 35% 30%, #ff8a70, #b3160b 55%, #5c0804); box-shadow: 3px 6px 7px rgba(0, 0, 0, 0.45); }
/* the old monitor on the bench: phosphor green, scanlines, a little bloom */
.booth-monitor {
  width: 360px; height: 260px; padding: 16px 18px; overflow: hidden;
  background: radial-gradient(120% 120% at 50% 45%, #06210f, #020a05);
  color: #7dffa9; font-family: "Geist Mono", monospace; font-size: 13.5px; line-height: 1.35;
  text-shadow: 0 0 6px rgba(125, 255, 169, 0.65);
}
.booth-monitor::after { content: ""; position: absolute; inset: 0; background: repeating-linear-gradient(0deg, rgba(0, 0, 0, 0.26) 0 1px, transparent 1px 3px); pointer-events: none; }
.mon-head { margin: 0 0 8px; opacity: 0.6; letter-spacing: 0.1em; text-transform: uppercase; font-size: 11px; }
.booth-monitor ul { list-style: none; margin: 0; padding: 0; }
.booth-monitor li { margin: 0 0 6px; }
.booth-monitor li b { color: #c9ffd9; font-weight: 500; }

/* ------------------------------------------------------------ the hall's furniture */
.hall-ui, .booth-ui { position: absolute; inset: 0; pointer-events: none; }
.hall-ui > *, .booth-ui > * { pointer-events: auto; }
.now { position: absolute; left: var(--pad); bottom: clamp(24px, 3.4vh, 42px); max-width: 520px; }
.now-label { display: flex; align-items: center; gap: 9px; margin: 0 0 7px; font-family: "Geist Mono", monospace; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--lamp); }
.rec { width: 6px; height: 6px; border-radius: 50%; background: var(--lamp); box-shadow: 0 0 10px var(--lamp); }
.now-title { margin: 0; font-family: "Instrument Serif", Georgia, serif; font-style: italic; font-size: 22px; line-height: 1.15; color: var(--ink); text-wrap: pretty; text-shadow: 0 2px 18px rgba(0, 0, 0, 0.9); }
.now-by { margin: 8px 0 0; font-family: "Geist Mono", monospace; font-size: 11px; letter-spacing: 0.06em; color: var(--ink-2); text-shadow: 0 2px 12px rgba(0, 0, 0, 0.9); }
/* ---- the audience: every chat message arrives as a cinema ticket; the next scene sits on a letter-board marquee.
   Both live in the hall's light: --lit (0..1) and --tint (the screen's colour) come from the film each frame. */
.chat { position: absolute; width: 330px; --lit: 0.6; --tint: 255, 240, 220; }
.marquee { position: relative; margin-bottom: 18px; }
.marquee-top { display: flex; align-items: center; justify-content: space-between; margin: 0 0 7px; font-family: "Big Shoulders Display", "Geist", sans-serif; font-weight: 800; font-size: 13px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--lamp); }
.marquee-bulbs { flex: 0 0 auto; width: 78px; height: 6px; background: radial-gradient(circle, #ffd9a0 0 1.6px, rgba(255, 190, 110, 0.25) 2.2px, transparent 3px) 0 50% / 13px 6px repeat-x; filter: drop-shadow(0 0 3px rgba(255, 184, 92, 0.8)); animation: chase 1.4s steps(2) infinite; }
@keyframes chase { 50% { background-position: 6.5px 50%; } }
.marquee-board {
  margin: 0; padding: 12px 14px 11px; border-radius: 4px;
  background: repeating-linear-gradient(180deg, #111 0 7px, #060606 7px 8px), #0b0b0b;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06), inset 0 10px 18px rgba(0, 0, 0, 0.6), 0 14px 34px -14px rgba(0, 0, 0, 0.9);
  font-family: "Big Shoulders Display", "Geist", sans-serif; font-weight: 600; font-size: 21px; line-height: 1.12; letter-spacing: 0.06em;
  text-transform: uppercase; color: #f4efe6; text-wrap: balance;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.8), 0 0 calc(4px + var(--lit) * 8px) rgba(255, 240, 220, calc(0.12 + var(--lit) * 0.25));
}
.marquee-board span { display: block; transition: opacity 260ms ease; }
.marquee-board.swap span { opacity: 0; }

.tickets { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.ticket {
  --paper: 237, 227, 207;
  position: relative; display: grid; grid-template-columns: 62px 1fr; min-height: 108px;
  color: #2a1d12; border-radius: 3px;
  background:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 .32 0 0 0 0 .24 0 0 0 0 .16 0 0 0 .22 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>"),
    linear-gradient(100deg, rgb(var(--paper)), #e2d3b8 70%, #d9c8aa);
  /* the perforation notches, cut out of the paper top and bottom */
  -webkit-mask: radial-gradient(circle 6px at 62px 0, transparent 97%, #000) top / 100% 51% no-repeat, radial-gradient(circle 6px at 62px 100%, transparent 97%, #000) bottom / 100% 51% no-repeat;
  mask: radial-gradient(circle 6px at 62px 0, transparent 97%, #000) top / 100% 51% no-repeat, radial-gradient(circle 6px at 62px 100%, transparent 97%, #000) bottom / 100% 51% no-repeat;
  filter: brightness(calc(0.46 + var(--lit) * 0.62)) drop-shadow(0 14px 18px rgba(0, 0, 0, 0.55));
  transform: rotate(var(--r, 0deg)); transform-origin: 30% 50%;
  transition: transform 420ms var(--ease-out), opacity 320ms ease, filter 400ms ease;
}
/* the screen's light falling on the paper */
.ticket::after { content: ""; position: absolute; inset: 0; pointer-events: none; mix-blend-mode: multiply; opacity: 0.55; background: linear-gradient(95deg, rgba(var(--tint), 1), rgba(var(--tint), 0.55) 60%, rgba(40, 30, 22, 0.55)); }
.ticket.enter { animation: deal 560ms var(--ease-out) both; }
@keyframes deal { from { opacity: 0; transform: translate(46px, -6px) rotate(6deg); } }
.ticket.old { opacity: 0.7; }
.ticket.older { opacity: 0.42; }
.stub { position: relative; display: flex; align-items: center; justify-content: center; border-right: 2px dotted rgba(42, 29, 18, 0.38); }
.admit { writing-mode: vertical-rl; transform: rotate(180deg); font-family: "Big Shoulders Display", sans-serif; font-weight: 800; font-size: 14px; letter-spacing: 0.2em; text-transform: uppercase; color: #9b1c12; }
.no { float: right; font-family: "Geist Mono", monospace; font-weight: 400; font-size: 9.5px; letter-spacing: 0.04em; color: rgba(42, 29, 18, 0.55); }
.tbody { position: relative; padding: 9px 14px 9px 13px; min-width: 0; box-shadow: inset 0 0 0 1px rgba(155, 28, 18, 0.28); margin: 5px 5px 5px 0; border-radius: 2px; }
.t-top { margin: 0 0 3px; font-family: "Big Shoulders Display", sans-serif; font-weight: 800; font-size: 10.5px; letter-spacing: 0.24em; text-transform: uppercase; color: #9b1c12; }
.t-title { margin: 0; font-family: "Instrument Serif", Georgia, serif; font-style: italic; font-size: 19px; line-height: 1.08; letter-spacing: -0.005em; color: #1e140c; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.t-meta { margin: 6px 96px 0 0; font-family: "Geist Mono", monospace; font-size: 10.5px; color: rgba(42, 29, 18, 0.78); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.t-meta span { font-family: "Big Shoulders Display", sans-serif; font-weight: 800; font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: #9b1c12; margin-right: 4px; }
.t-meta span + span { margin-left: 10px; }
/* the stamp says where the idea stands: in line, up next, now showing, shown, or cut at the door */
.stamp[data-s="next"], .stamp[data-s="showing"] { border-width: 2px; }
.stamp[data-s="showing"] { color: rgba(18, 94, 44, 0.85); border-color: rgba(18, 94, 44, 0.75); }
.stamp[data-s="skipped"] { color: rgba(40, 30, 22, 0.7); border-color: rgba(40, 30, 22, 0.55); transform: rotate(-11deg); }
.ticket.cut .t-title { text-decoration: line-through; text-decoration-color: rgba(155, 28, 18, 0.55); text-decoration-thickness: 1.5px; opacity: 0.62; }
.stamp {
  position: absolute; right: 10px; bottom: 8px; padding: 2px 6px 1px; border: 1.5px solid rgba(155, 28, 18, 0.72); border-radius: 3px;
  font-family: "Big Shoulders Display", sans-serif; font-weight: 800; font-size: 9.5px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(155, 28, 18, 0.78);
  transform: rotate(-7deg); mix-blend-mode: multiply;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='90' height='30'><filter id='r'><feTurbulence baseFrequency='.9' numOctaves='1'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -2.4 1.6'/></filter><rect width='100%25' height='100%25' filter='url(%23r)'/></svg>");
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='90' height='30'><filter id='r'><feTurbulence baseFrequency='.9' numOctaves='1'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -2.4 1.6'/></filter><rect width='100%25' height='100%25' filter='url(%23r)'/></svg>");
}
.tickets-foot { margin: 12px 2px 0; font-size: 12px; color: var(--ink-3); }

.scroll-cue { position: absolute; right: var(--pad); bottom: clamp(24px, 3.4vh, 42px); display: inline-flex; align-items: center; gap: 12px; font-size: 13px; color: var(--ink-2); }
.scroll-cue i { position: relative; width: 1px; height: 36px; background: rgba(237, 231, 222, 0.2); overflow: hidden; }
.scroll-cue i::after { content: ""; position: absolute; left: 0; top: -40%; width: 1px; height: 40%; background: var(--ink); animation: cue 2.2s var(--ease-io) infinite; }
@keyframes cue { to { top: 110%; } }
.booth-ui { opacity: 0; }
.booth-caption { position: absolute; left: var(--pad); bottom: clamp(24px, 3.4vh, 42px); margin: 0; font-family: "Geist Mono", monospace; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-3); }

/* ------------------------------------------------------------ closing credits */
.credits { position: relative; min-height: 88vh; display: grid; place-items: center; padding: 120px var(--pad); background: radial-gradient(60% 50% at 50% 0%, rgba(255, 184, 92, 0.07), transparent 70%), var(--black); }
.credits-inner { max-width: 760px; text-align: center; }
.credits-word { margin: 0; font-family: "Big Shoulders Display", "Geist", sans-serif; font-weight: 800; font-size: clamp(72px, 11vw, 170px); letter-spacing: 0.04em; line-height: 0.86; text-transform: uppercase; color: var(--ink); text-shadow: 0 0 40px rgba(255, 184, 92, 0.16); }
.roll { margin: 44px auto 0; display: grid; gap: 12px; }
.roll div { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; align-items: baseline; }
.roll dt { text-align: right; font-family: "Big Shoulders Display", sans-serif; font-weight: 600; font-size: 15px; letter-spacing: 0.26em; text-transform: uppercase; color: rgba(255, 184, 92, 0.78); }
.roll dd { margin: 0; text-align: left; font-family: "Instrument Serif", Georgia, serif; font-style: italic; font-size: 24px; line-height: 1.15; color: var(--ink); text-wrap: balance; }
.credits-row { margin-top: 52px; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn-lamp { height: 46px; padding: 0 22px; border-radius: 999px; background: var(--lamp); color: #1a1208; font-weight: 600; font-size: 14.5px; box-shadow: 0 0 0 1px rgba(255, 200, 130, 0.6), 0 12px 40px -10px rgba(255, 184, 92, 0.55); transition: transform 140ms var(--ease-out), box-shadow 200ms ease; }
@media (hover: hover) and (pointer: fine) { .btn-lamp:hover { box-shadow: 0 0 0 1px rgba(255, 210, 150, 0.8), 0 16px 50px -10px rgba(255, 184, 92, 0.75); } }
.credits .btn-ghost { height: 46px; padding: 0 22px; font-size: 14.5px; }
.credits-small { margin: 56px auto 0; max-width: 560px; font-size: 12px; color: var(--ink-3); text-wrap: pretty; }

/* ------------------------------------------------------------ full screen: the film alone */
.theater { position: fixed; left: 0; top: 0; width: 2px; height: 2px; opacity: 0; pointer-events: none; z-index: 50; background: #000; overflow: hidden; }
.theater video { width: 100%; height: 100%; object-fit: contain; display: block; }
.theater.open { width: 100vw; height: 100vh; opacity: 1; pointer-events: auto; }
.theater-close { position: absolute; top: 18px; right: 18px; height: 36px; padding: 0 16px; border-radius: 999px; background: rgba(20, 18, 16, 0.5); box-shadow: inset 0 0 0 1px var(--line); font-size: 13px; color: var(--ink-2); opacity: 0; transition: opacity 200ms ease; }
.theater.open:hover .theater-close, .theater-close:focus-visible { opacity: 1; }

.toast { position: fixed; left: 50%; bottom: 28px; z-index: 60; transform: translate(-50%, 12px); opacity: 0; padding: 10px 16px; border-radius: 999px; background: rgba(20, 18, 16, 0.8); box-shadow: inset 0 0 0 1px var(--line); font-size: 13.5px; color: var(--ink); transition: opacity 200ms ease, transform 240ms var(--ease-out); pointer-events: none; }
.toast.show { opacity: 1; transform: translate(-50%, 0); }

@media (prefers-reduced-motion: reduce) {
  .scroll-cue i::after, .onair[data-state="live"] i { animation: none; }
  .ticket.enter { animation: none; }
  .marquee-bulbs { animation: none; }
}
