@charset "UTF-8";
/* ===============================================================
   RAVENOVA — rave radio
   ---------------------------------------------------------------
   1  Tokens
   2  Reset & base
   3  Texture / light
   4  Typography & section furniture
   5  Buttons, tags, forms
   6  Header, nav, status strip
   7  Hero + transmission console (the player)
   8  Shout ticker
   9  Schedule rail
   10 Shout & request
   11 Spotlights (DJ / listener of the week)
   12 Leaderboard
   13 Events & raffles
   14 Chat console
   15 Join block & footer
   16 Pages: profiles, auth, listings
   17 Dock player, toasts, utilities
   18 Responsive
   =============================================================== */

/* ---------------------------------------------------------------
   1  TOKENS
   --------------------------------------------------------------- */
:root {
  color-scheme: dark;

  /* Surfaces — near-black through charcoal */
  --ink-000: #060608;
  --ink-100: #0a0a0d;
  --ink-200: #101014;
  --ink-300: #16161c;
  --ink-400: #1d1d25;
  --line:     #26262f;
  --line-soft:#1b1b22;

  /* Text */
  --text:     #ecece8;
  --text-dim: #85858f;
  --text-mute:#5a5a64;

  /* Accents — one primary, one secondary, one rare */
  --acid:     #ccff00;
  --acid-ink: #0a0d00;
  --pink:     #ff2f6d;
  --cyan:     #35e0ff;
  --amber:    #ffb020;

  /* Type */
  --display: "Anton", "Arial Narrow", "Haettenschweiler", Impact, sans-serif;
  --sans: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;

  /* Rhythm */
  --gutter: clamp(18px, 4vw, 48px);
  --section: clamp(56px, 8vw, 116px);
  --maxw: 1320px;

  --radius: 2px;
  --speed: .18s;
}

/* ---------------------------------------------------------------
   2  RESET & BASE
   --------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--ink-000);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.62;
  font-synthesis-weight: none;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; }
img { height: auto; }

a { color: inherit; text-decoration: none; }
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--acid);
  outline-offset: 2px;
}

hr { border: 0; border-top: 1px solid var(--line); margin: 0; }

::selection { background: var(--acid); color: var(--acid-ink); }

::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--ink-100); }
::-webkit-scrollbar-thumb { background: var(--ink-400); }
::-webkit-scrollbar-thumb:hover { background: #33333f; }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--acid); color: var(--acid-ink);
  padding: 12px 20px; font: 700 13px/1 var(--sans); letter-spacing: .1em;
}
.skip:focus { left: 12px; top: 12px; }

.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.wrap-wide { max-width: 1560px; }

/* ---------------------------------------------------------------
   3  TEXTURE / LIGHT
   --------------------------------------------------------------- */

/* Fine film grain. One viewport-sized layer, nudged a few pixels so it
   shimmers without ever becoming a large surface to repaint. */
.grain {
  position: fixed; inset: -24px;
  pointer-events: none; z-index: 2;
  opacity: .05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 6s steps(6) infinite;
}
@keyframes grain {
  0%,100% { transform: translate3d(0,0,0) }
  20% { transform: translate3d(-8px, 6px, 0) }
  40% { transform: translate3d(6px, -8px, 0) }
  60% { transform: translate3d(-6px, -5px, 0) }
  80% { transform: translate3d(8px, 4px, 0) }
}

/* Slow light beams behind the hero — like a rig sweeping a room. */
.beams { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.beam {
  position: absolute; top: -60%; left: var(--x, 20%);
  width: var(--w, 200px); height: 220%;
  background: linear-gradient(to bottom, transparent, var(--c, var(--acid)) 45%, transparent);
  opacity: var(--o, .05);
  filter: blur(38px);
  transform: rotate(var(--r, 14deg));
  transform-origin: top center;
  animation: sweep var(--d, 19s) ease-in-out infinite alternate;
}
@keyframes sweep {
  from { transform: rotate(calc(var(--r, 14deg) - 7deg)) translateX(-4vw); }
  to   { transform: rotate(calc(var(--r, 14deg) + 7deg)) translateX(4vw); }
}

/* Hairline grid used on dark blocks. */
.gridlines {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.028) 1px, transparent 1px);
  background-size: 96px 100%;
  mask-image: linear-gradient(to bottom, transparent, #000 20%, #000 80%, transparent);
}

/* Diagonal hazard stripes — used on the ticker and price tags. */
.hazard {
  background-image: repeating-linear-gradient(
    -45deg,
    var(--ink-200) 0 12px,
    var(--ink-300) 12px 24px);
}

/* ---------------------------------------------------------------
   4  TYPOGRAPHY & SECTION FURNITURE
   --------------------------------------------------------------- */
.display {
  font-family: var(--display);
  font-weight: 400;
  line-height: .84;
  letter-spacing: -.012em;
  text-transform: uppercase;
}

h1, h2, h3, h4 { margin: 0; font-weight: 800; letter-spacing: -.02em; line-height: 1.08; }

.eyebrow {
  font: 700 11px/1 var(--sans);
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--text-mute);
}

.mono { font-family: var(--mono); font-variant-numeric: tabular-nums; }

.lede { color: var(--text-dim); font-size: clamp(15px, 1.4vw, 18px); max-width: 58ch; }

/* Section header: index number, title, hairline that fills the row. */
.sec-head {
  display: flex; align-items: baseline; gap: 18px;
  flex-wrap: wrap;
  margin-bottom: clamp(24px, 3vw, 40px);
}
.sec-head .num {
  font: 700 11px/1 var(--mono);
  color: var(--acid);
  letter-spacing: .1em;
  padding-top: 6px;
}
.sec-head h2 {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(28px, 4.4vw, 54px);
  line-height: .9; letter-spacing: -.01em; text-transform: uppercase;
}
.sec-head .rule { flex: 1 1 40px; min-width: 40px; height: 1px; background: var(--line); transform: translateY(-6px); }
.sec-head .more {
  font: 700 11px/1 var(--sans); letter-spacing: .18em; text-transform: uppercase;
  color: var(--text-dim); white-space: nowrap; transition: color var(--speed);
}
.sec-head .more:hover { color: var(--acid); }

section { position: relative; }
.band { padding-block: var(--section); position: relative; }
.band-line { border-top: 1px solid var(--line-soft); }

/* ---------------------------------------------------------------
   5  BUTTONS, TAGS, FORMS
   --------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 24px;
  font: 800 12px/1 var(--sans); letter-spacing: .16em; text-transform: uppercase;
  border: 1px solid var(--line); background: transparent; color: var(--text);
  border-radius: var(--radius); cursor: pointer;
  transition: background var(--speed), color var(--speed), border-color var(--speed), transform var(--speed);
}
.btn:hover { border-color: var(--text); }
.btn:active { transform: translateY(1px); }

.btn-acid { background: var(--acid); color: var(--acid-ink); border-color: var(--acid); }
.btn-acid:hover { background: #fff; border-color: #fff; }

.btn-pink { background: var(--pink); color: #fff; border-color: var(--pink); }
.btn-pink:hover { background: #fff; color: var(--ink-000); border-color: #fff; }

.btn-ghost { border-color: var(--line); color: var(--text-dim); }
.btn-ghost:hover { color: var(--text); border-color: var(--text-dim); }

.btn-sm { padding: 9px 14px; font-size: 10.5px; letter-spacing: .14em; }
.btn-block { width: 100%; }
.btn[disabled], .btn[aria-disabled="true"] { opacity: .45; pointer-events: none; }

/* Genre / meta tags */
.tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 9px;
  font: 700 10px/1.4 var(--mono); letter-spacing: .1em; text-transform: uppercase;
  border: 1px solid var(--line); color: var(--text-dim);
  border-radius: var(--radius);
}
.tag-acid { border-color: rgba(204,255,0,.4); color: var(--acid); }
.tag-pink { border-color: rgba(255,47,109,.45); color: var(--pink); }
.tag-solid { background: var(--acid); border-color: var(--acid); color: var(--acid-ink); }

/* Forms */
.field { margin-bottom: 18px; }
.field > label,
.label {
  display: block;
  font: 700 10.5px/1 var(--sans); letter-spacing: .2em; text-transform: uppercase;
  color: var(--text-dim); margin-bottom: 8px;
}
.input, input[type=text], input[type=email], input[type=password],
input[type=date], input[type=number], input[type=time], input[type=url],
input[type=datetime-local], input[type=search], select, textarea {
  width: 100%;
  padding: 13px 15px;
  background: var(--ink-200);
  border: 1px solid var(--line);
  color: var(--text);
  font: 400 15px/1.5 var(--sans);
  border-radius: var(--radius);
  transition: border-color var(--speed), background var(--speed);
}
textarea { resize: vertical; min-height: 110px; }
select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0h10L5 6z' fill='%2385858f'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.input:focus, input:focus, select:focus, textarea:focus { border-color: var(--acid); background: var(--ink-300); }
input::placeholder, textarea::placeholder { color: var(--text-mute); }
input[type=file] { padding: 10px; font-size: 13px; }

.help { font-size: 12.5px; color: var(--text-mute); margin-top: 6px; }
.err-msg {
  font: 600 12.5px/1.45 var(--sans); color: #ff85a8; margin-top: 7px;
  display: flex; gap: 6px;
}
.field-error .input, .field-error input, .field-error textarea, .field-error select { border-color: var(--pink); }

.checkline { display: flex; gap: 11px; align-items: flex-start; font-size: 14px; color: var(--text-dim); }
.checkline input { width: 17px; height: 17px; margin-top: 2px; accent-color: var(--acid); flex: none; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

/* Grid and flex children may always shrink below their content's natural
   width. Without this, one long unwrappable line (a track title, a URL)
   silently widens the whole column past the phone's screen. */
.shout-grid > *, .auth-shell > *, .hero-inner > *, .grid-2 > *, .podium > *,
.ev-grid > *, .dj-grid > *, .statbar > *, .foot-grid > *, .spot-dj > *,
.spot-listener > *, .raffle > *, .profile-head > * { min-width: 0; }
.console, .chat, .stub, .raffle, .spot-listener { contain: inline-size; }

/* Multi-select checkbox grid (DJ application) */
.checkgrid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 10px 14px;
  padding: 14px; border: 1px solid var(--line); background: var(--ink-200);
}
.checkgrid .checkline { font-size: 13.5px; }

/* Credential read-out (DJ booth + setup guide) */
.cred-table { border: 1px solid var(--line); background: var(--ink-100); }
.cred-row {
  display: grid; grid-template-columns: 150px minmax(0, 1fr) auto;
  gap: 14px; align-items: center;
  padding: 12px 16px; border-bottom: 1px solid var(--line-soft);
}
.cred-row:last-child { border-bottom: 0; }
.cred-row .k {
  font: 700 10px/1.4 var(--sans); letter-spacing: .18em; text-transform: uppercase;
  color: var(--text-mute);
}
.cred-row .v { min-width: 0; overflow-wrap: anywhere; font-size: 14px; }
.cred-row .v.mono { font-family: var(--mono); font-size: 13px; color: var(--text); }

/* Weekly timetable picker (DJ area) */
.week-grid {
  display: grid; grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 1px; background: var(--line-soft); border: 1px solid var(--line-soft);
}
.week-col { background: var(--ink-100); padding: 12px 10px; min-height: 120px; }
.week-day {
  font: 700 9.5px/1 var(--sans); letter-spacing: .16em; text-transform: uppercase;
  color: var(--text-mute); margin-bottom: 12px;
}
.week-free { font: 500 11px/1.4 var(--mono); color: var(--text-mute); opacity: .6; }
.week-slot {
  display: block; padding: 8px 9px; margin-bottom: 6px;
  background: var(--ink-300); border-left: 2px solid var(--line);
  font-size: 12px;
}
.week-slot .t { display: block; font: 500 10.5px/1.3 var(--mono); color: var(--text-dim); }
.week-slot .n { display: block; font-weight: 700; margin-top: 3px; overflow-wrap: anywhere; }
.week-slot.mine { border-left-color: var(--acid); background: rgba(204,255,0,.08); }
.week-slot.mine .n { color: var(--acid); }

/* Alerts */
.alert {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 13px 16px; margin-bottom: 18px;
  border-left: 3px solid var(--line);
  background: var(--ink-200);
  font-size: 14px; color: var(--text-dim);
}
.alert strong { color: var(--text); }
.alert-ok    { border-color: var(--acid); color: #dff5a0; }
.alert-error { border-color: var(--pink); color: #ffb3c9; }
.alert-info  { border-color: var(--cyan); color: #a8ecff; }
.alert-warn  { border-color: var(--amber); color: #ffd79a; }

/* ---------------------------------------------------------------
   6  HEADER
   --------------------------------------------------------------- */
.statusbar {
  position: relative; z-index: 40;
  border-bottom: 1px solid var(--line-soft);
  background: var(--ink-000);
  font: 500 11px/1 var(--mono);
  letter-spacing: .06em;
  color: var(--text-mute);
}
.statusbar .wrap { display: flex; align-items: center; gap: 18px; height: 34px; }
.statusbar .sep { color: var(--line); }
.statusbar .push { margin-left: auto; }
.statusbar b { color: var(--text-dim); font-weight: 500; }

.live-dot {
  display: inline-block; width: 7px; height: 7px; flex: none;
  background: var(--pink); border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(255,47,109,.7);
  animation: pulse 1.8s ease-out infinite;
}
.live-dot.off { background: var(--text-mute); animation: none; box-shadow: none; }
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(255,47,109,.6); }
  70%  { box-shadow: 0 0 0 8px rgba(255,47,109,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,47,109,0); }
}

.masthead {
  position: sticky; top: 0; z-index: 50;
  background: rgba(6,6,8,.92);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line-soft);
}
.masthead .wrap { display: flex; align-items: center; gap: 26px; height: 68px; }

/* Wordmark: RAVE|NOVA with a nova glyph between */
.brand { display: inline-flex; align-items: center; gap: 9px; flex: none; }
.brand .mark {
  width: 26px; height: 26px; flex: none;
  color: var(--acid);
}
.brand .word {
  font-family: var(--display); font-size: 25px; line-height: 1;
  letter-spacing: .012em; text-transform: uppercase; padding-top: 3px;
}
.brand .word i { font-style: normal; color: var(--acid); }
.brand:hover .mark { animation: spin 5s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

.nav { display: flex; align-items: center; gap: 2px; margin-left: 8px; }
.nav a {
  position: relative;
  padding: 9px 11px;
  font: 700 11.5px/1 var(--sans); letter-spacing: .13em; text-transform: uppercase;
  color: var(--text-dim); transition: color var(--speed);
}
.nav a:hover { color: var(--text); }
.nav a.on { color: var(--acid); }
.nav a.on::after {
  content: ""; position: absolute; left: 11px; right: 11px; bottom: 2px;
  height: 2px; background: var(--acid);
}

.head-actions { margin-left: auto; display: flex; align-items: center; gap: 10px; flex: none; }

/* Small avatar + points chip for logged-in members */
.userchip {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 5px 12px 5px 5px; border: 1px solid var(--line);
  border-radius: 100px; transition: border-color var(--speed);
}
.userchip:hover { border-color: var(--acid); }
.userchip .av { width: 26px; height: 26px; border-radius: 50%; flex: none; }
.userchip .nm { font: 700 11.5px/1 var(--sans); letter-spacing: .06em; }
.userchip .pt { font: 500 10.5px/1 var(--mono); color: var(--acid); }

.av-fallback {
  display: grid; place-items: center;
  background: var(--ink-400); color: var(--text-dim);
  font: 800 11px/1 var(--sans); letter-spacing: .04em;
}

/* Mobile menu */
.burger {
  display: none; width: 42px; height: 42px; margin-left: auto;
  border: 1px solid var(--line); background: transparent; cursor: pointer;
  align-items: center; justify-content: center; border-radius: var(--radius);
}
.burger span { display: block; width: 17px; height: 2px; background: var(--text); position: relative; transition: transform var(--speed), background var(--speed); }
.burger span::before, .burger span::after {
  content: ""; position: absolute; left: 0; width: 17px; height: 2px; background: var(--text);
  transition: transform var(--speed), top var(--speed);
}
.burger span::before { top: -6px; }
.burger span::after { top: 6px; }
.burger[aria-expanded="true"] span { background: transparent; }
.burger[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.burger[aria-expanded="true"] span::after  { top: 0; transform: rotate(-45deg); }

.mobile-nav {
  position: fixed; inset: 0; z-index: 60;
  padding-bottom: calc(40px + env(safe-area-inset-bottom, 0px));
  background: var(--ink-000);
  display: none; flex-direction: column;
  padding: 84px var(--gutter) 40px;
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav a.mlink {
  display: flex; align-items: baseline; gap: 14px;
  padding: 14px 0; border-bottom: 1px solid var(--line-soft);
  font-family: var(--display); font-size: 30px; line-height: 1; text-transform: uppercase;
}
.mobile-nav a.mlink .n { font: 500 11px/1 var(--mono); color: var(--acid); }
.mobile-nav a.mlink.on { color: var(--acid); }
.mobile-nav .m-actions { margin-top: 28px; display: grid; gap: 10px; }
.mobile-close {
  position: absolute; top: 16px; right: var(--gutter);
  width: 42px; height: 42px; border: 1px solid var(--line);
  background: transparent; color: var(--text); font-size: 20px; cursor: pointer;
}

.notice-strip {
  background: var(--acid); color: var(--acid-ink);
  font: 700 11.5px/1 var(--sans); letter-spacing: .12em; text-transform: uppercase;
}
.notice-strip .wrap { display: flex; align-items: center; gap: 10px; min-height: 34px; padding-block: 8px; }

/* ---------------------------------------------------------------
   7  HERO + TRANSMISSION CONSOLE
   --------------------------------------------------------------- */
.hero {
  position: relative;
  border-bottom: 1px solid var(--line-soft);
  overflow: hidden;
  background: radial-gradient(120% 80% at 12% 0%, #101014 0%, var(--ink-000) 58%);
}
.hero-inner > * { min-width: 0; }
.hero-inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, .92fr);
  gap: clamp(28px, 4vw, 64px);
  padding-block: clamp(40px, 6vw, 78px) clamp(44px, 6vw, 84px);
  align-items: center;
}

.hero-kicker {
  display: flex; align-items: center; gap: 12px;
  font: 700 11px/1 var(--mono); letter-spacing: .2em; text-transform: uppercase;
  color: var(--text-dim); margin-bottom: 22px;
}
.hero-kicker .bar { width: 30px; height: 1px; background: var(--acid); }

.hero h1 {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(58px, 12.5vw, 168px);
  line-height: .8; letter-spacing: -.02em; text-transform: uppercase;
  margin: 0 0 6px;
}
.hero h1 .l2 { display: block; color: var(--acid); }
.hero h1 .l2 em {
  font-style: normal;
  -webkit-text-stroke: 1.5px var(--acid);
  color: transparent;
}

.hero-sub {
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px 16px;
  margin: 20px 0 30px;
  font: 700 11px/1 var(--sans); letter-spacing: .18em; text-transform: uppercase;
  color: var(--text-dim);
}
.hero-sub .dot { width: 3px; height: 3px; background: var(--text-mute); border-radius: 50%; }

.hero-copy { color: var(--text-dim); font-size: 16px; max-width: 46ch; margin-bottom: 32px; }

/* THE button. Big, unmissable, does one thing. */
.play-slab {
  display: inline-flex; align-items: center; gap: 18px;
  padding: 0; border: 0; background: var(--acid); color: var(--acid-ink);
  cursor: pointer; border-radius: var(--radius);
  font-family: var(--sans);
  transition: transform var(--speed), box-shadow var(--speed), background var(--speed);
  box-shadow: 6px 6px 0 rgba(204,255,0,.16);
}
.play-slab:hover { transform: translate(-2px,-2px); box-shadow: 10px 10px 0 rgba(204,255,0,.22); }
.play-slab:active { transform: translate(0,0); box-shadow: 3px 3px 0 rgba(204,255,0,.2); }
.play-slab .icon {
  width: 72px; align-self: stretch; display: grid; place-items: center;
  background: rgba(0,0,0,.12); flex: none;
}
.play-slab .icon svg { width: 22px; height: 22px; }
.play-slab .txt { padding: 20px 30px 20px 4px; text-align: left; }
.play-slab .t1 { display: block; font: 800 19px/1 var(--sans); letter-spacing: .04em; text-transform: uppercase; }
.play-slab .t2 { display: block; font: 700 10px/1 var(--mono); letter-spacing: .18em; text-transform: uppercase; opacity: .62; margin-top: 7px; }
.play-slab.is-playing { background: var(--pink); color: #fff; box-shadow: 6px 6px 0 rgba(255,47,109,.18); }
.play-slab.is-loading { background: var(--ink-400); color: var(--text); box-shadow: none; }
.play-slab.is-loading .icon svg { animation: spin 1s linear infinite; }

.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 16px 22px; }
.hero-actions .side {
  font: 700 10.5px/1.6 var(--mono); letter-spacing: .12em; text-transform: uppercase;
  color: var(--text-mute); max-width: 20ch;
}

/* --- Transmission console: the live player panel --- */
.console {
  position: relative; min-width: 0; width: 100%;
  background: var(--ink-100);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.console::before {
  /* corner cut, top-right */
  content: ""; position: absolute; top: -1px; right: -1px;
  width: 26px; height: 26px;
  background: var(--ink-000);
  border-left: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.console-head {
  display: flex; align-items: center; gap: 10px;
  padding: 13px 16px; border-bottom: 1px solid var(--line);
  font: 700 10px/1 var(--mono); letter-spacing: .18em; text-transform: uppercase;
  color: var(--text-dim);
}
.console-head .id { margin-left: auto; margin-right: 34px; color: var(--text-mute); }
.badge-live {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 8px; background: var(--pink); color: #fff;
  font: 800 9.5px/1 var(--sans); letter-spacing: .18em;
}
.badge-live.off { background: var(--ink-400); color: var(--text-mute); }

.console-body { display: flex; gap: 16px; padding: 18px 16px; }

.art {
  position: relative; width: 116px; height: 116px; flex: none;
  background: var(--ink-300); border: 1px solid var(--line);
  display: grid; place-items: center; overflow: hidden;
}
.art img { width: 100%; height: 100%; object-fit: cover; }
.art .ph { width: 44px; height: 44px; color: var(--line); }
.art .scan {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(to bottom, rgba(255,255,255,.028) 0 1px, transparent 1px 3px);
  pointer-events: none;
}

.np { min-width: 0; flex: 1 1 0; }
.np .lab { font: 700 9.5px/1 var(--mono); letter-spacing: .22em; text-transform: uppercase; color: var(--acid); }
.np .artist {
  margin: 11px 0 3px;
  font: 800 13px/1.25 var(--sans); letter-spacing: .1em; text-transform: uppercase;
  color: var(--text-dim);
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.np .title {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(19px, 2.1vw, 27px); line-height: 1.02;
  text-transform: uppercase; letter-spacing: -.005em;
  overflow: hidden; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
}
.np .meta { margin-top: 10px; display: flex; flex-wrap: wrap; gap: 6px; }

/* Equalizer — pure CSS, five bars, pauses when the stream is paused */
.eq { display: inline-flex; align-items: flex-end; gap: 2px; height: 13px; }
.eq i { display: block; width: 2.5px; background: var(--acid); height: 30%; animation: bounce .9s ease-in-out infinite; }
.eq i:nth-child(2) { animation-delay: .18s; }
.eq i:nth-child(3) { animation-delay: .36s; }
.eq i:nth-child(4) { animation-delay: .1s;  }
.eq i:nth-child(5) { animation-delay: .45s; }
.eq.idle i { animation: none; height: 20%; background: var(--text-mute); }
@keyframes bounce { 0%,100% { height: 22% } 50% { height: 100% } }

.console-rows { border-top: 1px solid var(--line); }
.crow {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 16px; border-bottom: 1px solid var(--line-soft);
  font: 500 11.5px/1.4 var(--mono); letter-spacing: .04em;
}
.crow:last-child { border-bottom: 0; }
.crow .k { color: var(--text-mute); text-transform: uppercase; letter-spacing: .14em; font-size: 10px; flex: none; width: 92px; }
.crow .v { flex: 1 1 auto; min-width: 0; margin-left: auto; text-align: right; color: var(--text); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.crow .v.acid { color: var(--acid); }

.console-foot {
  display: flex; align-items: center; gap: 14px;
  padding: 13px 16px; border-top: 1px solid var(--line);
  background: var(--ink-200);
}
.icon-btn {
  width: 38px; height: 38px; flex: none;
  display: grid; place-items: center;
  border: 1px solid var(--line); background: transparent; color: var(--text);
  cursor: pointer; border-radius: var(--radius);
  transition: border-color var(--speed), color var(--speed), background var(--speed);
}
.icon-btn:hover { border-color: var(--acid); color: var(--acid); }
.icon-btn svg { width: 15px; height: 15px; }
.icon-btn.on { background: var(--acid); border-color: var(--acid); color: var(--acid-ink); }

/* Volume slider */
.vol { display: flex; align-items: center; gap: 10px; flex: 1; min-width: 0; }
.vol input[type=range] {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 20px; background: transparent; cursor: pointer; padding: 0; border: 0;
}
.vol input[type=range]::-webkit-slider-runnable-track {
  height: 3px; background: linear-gradient(to right, var(--acid) var(--pct,80%), var(--ink-400) var(--pct,80%));
}
.vol input[type=range]::-moz-range-track { height: 3px; background: var(--ink-400); }
.vol input[type=range]::-moz-range-progress { height: 3px; background: var(--acid); }
.vol input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 13px; height: 13px; margin-top: -5px;
  background: var(--text); border: 0; border-radius: 50%;
}
.vol input[type=range]::-moz-range-thumb { width: 13px; height: 13px; background: var(--text); border: 0; border-radius: 50%; }
.vol .pct { font: 500 10px/1 var(--mono); color: var(--text-mute); width: 30px; text-align: right; flex: none; }

.console-status {
  padding: 9px 16px; border-top: 1px solid var(--line);
  font: 500 10.5px/1.4 var(--mono); letter-spacing: .08em; text-transform: uppercase;
  color: var(--text-mute); display: flex; align-items: center; gap: 8px;
}
.console-status.warn { color: var(--amber); }
.console-status.err  { color: var(--pink); }

/* Previously played strip under the console */
.recent { border-top: 1px solid var(--line); max-height: 148px; overflow-y: auto; }
.recent .r {
  display: flex; gap: 12px; align-items: center;
  padding: 8px 16px; border-bottom: 1px solid var(--line-soft);
  font-size: 12.5px; color: var(--text-dim);
}
.recent .r:last-child { border-bottom: 0; }
.recent .r time { font: 500 10px/1 var(--mono); color: var(--text-mute); flex: none; }
.recent .r span { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* ---------------------------------------------------------------
   8  SHOUT TICKER
   --------------------------------------------------------------- */
.ticker {
  position: relative;
  border-block: 1px solid var(--line);
  background: var(--ink-100);
  overflow: hidden;
  display: flex; align-items: stretch;
}
.ticker-tag {
  flex: none; z-index: 2;
  display: flex; align-items: center; gap: 8px;
  padding: 0 16px;
  background: var(--acid); color: var(--acid-ink);
  font: 800 10.5px/1 var(--sans); letter-spacing: .18em; text-transform: uppercase;
  clip-path: polygon(0 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
  padding-right: 26px;
}
.ticker[data-theme="pink"] .ticker-tag { background: var(--pink); color: #fff; }
.ticker[data-theme="mono"] .ticker-tag { background: var(--text); color: var(--ink-000); }

.ticker-view { position: relative; flex: 1; overflow: hidden; min-height: 46px; display: flex; align-items: center; }
.ticker-track {
  display: flex; align-items: center; gap: 0;
  white-space: nowrap; will-change: transform;
  animation: slide var(--dur, 55s) linear infinite;
}
.ticker:hover .ticker-track,
.ticker-track.paused { animation-play-state: paused; }
@keyframes slide { from { transform: translate3d(0,0,0); } to { transform: translate3d(-50%,0,0); } }

.ticker-item {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 0 26px;
  font: 600 13px/1 var(--sans); letter-spacing: .02em;
  color: var(--text-dim);
}
.ticker-item b { color: var(--text); font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.ticker-item .fire { color: var(--pink); }
.ticker-item.feat b { color: var(--acid); }
.ticker-item::after {
  content: ""; width: 4px; height: 4px; background: var(--line); border-radius: 50%; margin-left: 26px;
}
.ticker-cta {
  flex: none; z-index: 2; display: flex; align-items: center;
  padding: 0 16px; border-left: 1px solid var(--line);
  background: var(--ink-100);
  font: 800 10px/1 var(--sans); letter-spacing: .16em; text-transform: uppercase; color: var(--acid);
}
.ticker-cta:hover { background: var(--acid); color: var(--acid-ink); }

/* ---------------------------------------------------------------
   9  SCHEDULE RAIL
   --------------------------------------------------------------- */
.rail { border-top: 1px solid var(--line-soft); }
.slot {
  display: grid;
  grid-template-columns: 108px 1fr auto;
  gap: clamp(14px, 3vw, 40px);
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-soft);
  transition: background var(--speed), padding-left var(--speed);
}
.slot:hover { background: var(--ink-100); padding-left: 12px; }
.slot .when { font: 500 12px/1.5 var(--mono); color: var(--text-dim); letter-spacing: .04em; }
.slot .when b { display: block; color: var(--acid); font-weight: 500; }
.slot .what { min-width: 0; }
.slot .what h3 {
  font-family: var(--display); font-weight: 400; text-transform: uppercase;
  font-size: clamp(19px, 2.4vw, 30px); line-height: 1;
}
.slot .what .dj { font: 700 11px/1 var(--sans); letter-spacing: .16em; text-transform: uppercase; color: var(--text-dim); margin-top: 8px; }
.slot .what .dj a:hover { color: var(--acid); }
.slot .rt { display: flex; align-items: center; gap: 10px; }
.slot.now { background: linear-gradient(to right, rgba(255,47,109,.08), transparent 60%); }
.slot.now .when b { color: var(--pink); }

/* ---------------------------------------------------------------
   10  SHOUT & REQUEST
   --------------------------------------------------------------- */
.shout-band { background: var(--ink-100); border-block: 1px solid var(--line-soft); }
.shout-grid {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, 480px);
  gap: clamp(28px, 5vw, 72px); align-items: start;
}
.shout-pitch h2 {
  font-family: var(--display); font-weight: 400; text-transform: uppercase;
  font-size: clamp(38px, 6.4vw, 84px); line-height: .86; letter-spacing: -.015em;
}
.shout-pitch h2 em { font-style: normal; color: var(--acid); }
.shout-steps { margin: 28px 0 0; padding: 0; list-style: none; counter-reset: s; }
.shout-steps li {
  counter-increment: s;
  display: grid; grid-template-columns: 34px 1fr; gap: 14px;
  padding: 14px 0; border-top: 1px solid var(--line-soft);
  color: var(--text-dim); font-size: 14.5px;
}
.shout-steps li::before {
  content: counter(s, decimal-leading-zero);
  font: 500 11px/1.7 var(--mono); color: var(--acid); letter-spacing: .08em;
}
.shout-steps li b { color: var(--text); display: block; font-size: 13px; letter-spacing: .1em; text-transform: uppercase; }

/* Price tag — a torn ticket stub */
.pricetag {
  position: relative; display: inline-flex; align-items: center; gap: 14px;
  margin-top: 30px; padding: 16px 26px 16px 20px;
  background: var(--acid); color: var(--acid-ink);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 14px 100%, 0 calc(100% - 14px));
}
.pricetag .amt { font-family: var(--display); font-size: 40px; line-height: .84; }
.pricetag .cap { font: 800 10px/1.5 var(--sans); letter-spacing: .16em; text-transform: uppercase; }

/* The form panel */
.stub {
  position: relative;
  background: var(--ink-000);
  border: 1px solid var(--line);
  padding: clamp(22px, 3vw, 34px);
}
.stub::after {
  /* perforation down the left edge */
  content: ""; position: absolute; left: -1px; top: 14px; bottom: 14px; width: 1px;
  background-image: linear-gradient(to bottom, var(--acid) 0 6px, transparent 6px 12px);
  background-size: 1px 12px;
}
.stub h3 {
  font-family: var(--display); font-weight: 400; text-transform: uppercase;
  font-size: 26px; line-height: 1; margin-bottom: 4px;
}
.stub .sub { color: var(--text-mute); font-size: 13px; margin-bottom: 22px; }
.charcount { float: right; font: 500 10.5px/1 var(--mono); color: var(--text-mute); }
.charcount.over { color: var(--pink); }

/* Latest paid shouts, listed under the form */
.shout-list { display: grid; gap: 1px; background: var(--line-soft); border: 1px solid var(--line-soft); }
.shout-row { background: var(--ink-100); padding: 14px 16px; }
.shout-row .who { font: 800 11px/1 var(--sans); letter-spacing: .16em; text-transform: uppercase; color: var(--acid); }
.shout-row .msg { margin-top: 7px; font-size: 14.5px; color: var(--text); }
.shout-row .req { margin-top: 8px; font: 500 11px/1.5 var(--mono); color: var(--text-dim); }
.shout-row time { display: block; margin-top: 8px; font: 500 10px/1 var(--mono); color: var(--text-mute); }
.shout-row.feat { background: linear-gradient(to right, rgba(204,255,0,.07), var(--ink-100) 55%); border-left: 2px solid var(--acid); }

/* ---------------------------------------------------------------
   11  SPOTLIGHTS
   --------------------------------------------------------------- */
.spot-dj {
  position: relative;
  display: grid; grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  border-top: 1px solid var(--line-soft);
}
.spot-photo { position: relative; min-height: 460px; background: var(--ink-200); overflow: hidden; }
.spot-photo img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(1) contrast(1.12);
  transition: filter .5s ease, transform .8s cubic-bezier(.2,.7,.3,1);
}
.spot-dj:hover .spot-photo img { filter: grayscale(0) contrast(1.02); transform: scale(1.03); }
.spot-photo::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(75deg, transparent 40%, var(--ink-000) 96%);
}
.spot-photo .noimg {
  position: absolute; inset: 0; display: grid; place-items: center;
  font-family: var(--display); font-size: 15vw; color: var(--ink-300);
}
.spot-info { padding: clamp(28px, 4vw, 62px); display: flex; flex-direction: column; justify-content: center; }
.spot-info .who {
  font-family: var(--display); font-weight: 400; text-transform: uppercase;
  font-size: clamp(40px, 6.6vw, 92px); line-height: .84; letter-spacing: -.02em;
  margin: 14px 0 16px;
}
.spot-meta { display: grid; gap: 0; margin: 22px 0 26px; border-top: 1px solid var(--line-soft); }
.spot-meta div {
  display: flex; gap: 16px; padding: 11px 0; border-bottom: 1px solid var(--line-soft);
  font: 500 12px/1.4 var(--mono); letter-spacing: .04em;
}
.spot-meta dt, .spot-meta .k { color: var(--text-mute); text-transform: uppercase; letter-spacing: .14em; font-size: 10px; width: 108px; flex: none; }
.spot-meta .v { margin-left: auto; text-align: right; color: var(--text); }
.spot-links { display: flex; flex-wrap: wrap; gap: 8px; }

/* Listener of the week — a stamped plate, deliberately off-grid */
.spot-listener {
  position: relative;
  display: grid; grid-template-columns: auto minmax(0,1fr) auto;
  gap: clamp(20px, 4vw, 46px); align-items: center;
  padding: clamp(26px, 4vw, 46px);
  background: var(--ink-100);
  border: 1px solid var(--line);
  overflow: hidden;
}
.spot-listener::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(60% 140% at 8% 50%, rgba(204,255,0,.09), transparent 62%);
  pointer-events: none;
}
.lst-av {
  position: relative; width: clamp(88px, 12vw, 132px); aspect-ratio: 1; flex: none;
  border: 1px solid var(--acid); overflow: hidden;
}
.lst-av img { width: 100%; height: 100%; object-fit: cover; }
.lst-body { position: relative; min-width: 0; }
.lst-body .nm {
  font-family: var(--display); font-weight: 400; text-transform: uppercase;
  font-size: clamp(30px, 4.6vw, 58px); line-height: .9;
}
.lst-body .quote { color: var(--text-dim); font-size: 15px; margin-top: 10px; max-width: 46ch; }
.lst-stats { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.lst-score { position: relative; text-align: right; flex: none; }
.lst-score .n {
  font-family: var(--display); font-size: clamp(40px, 6.4vw, 78px); line-height: .84; color: var(--acid);
}
.lst-score .u { font: 800 10px/1 var(--sans); letter-spacing: .24em; text-transform: uppercase; color: var(--text-mute); margin-top: 8px; }

/* Open-seat state when nobody has been chosen yet */
.spot-empty { text-align: center; padding: clamp(34px, 5vw, 62px) 20px; border: 1px dashed var(--line); }
.spot-empty h3 { font-family: var(--display); font-weight: 400; text-transform: uppercase; font-size: clamp(26px,4vw,44px); line-height: 1; }
.spot-empty p { color: var(--text-dim); max-width: 46ch; margin: 12px auto 22px; }

/* ---------------------------------------------------------------
   12  LEADERBOARD
   --------------------------------------------------------------- */
.lb-filters { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 22px; }
.lb-filters a, .lb-filters button {
  padding: 8px 15px; border: 1px solid var(--line); background: transparent; color: var(--text-dim);
  font: 700 10.5px/1 var(--sans); letter-spacing: .16em; text-transform: uppercase; cursor: pointer;
  border-radius: var(--radius); transition: all var(--speed);
}
.lb-filters a:hover, .lb-filters button:hover { color: var(--text); border-color: var(--text-dim); }
.lb-filters .on { background: var(--acid); border-color: var(--acid); color: var(--acid-ink); }

.podium { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 12px; }
.pod {
  position: relative; padding: 22px 20px 20px; background: var(--ink-100);
  border: 1px solid var(--line); overflow: hidden;
  display: flex; flex-direction: column; gap: 12px;
}
.pod .rank {
  font-family: var(--display); font-size: clamp(46px, 7vw, 86px); line-height: .8;
  color: var(--ink-400); position: absolute; right: 12px; top: 6px;
}
.pod-1 { border-color: rgba(204,255,0,.5); background: linear-gradient(160deg, rgba(204,255,0,.09), var(--ink-100) 55%); }
.pod-1 .rank { color: rgba(204,255,0,.32); }
.pod-2 { border-color: rgba(255,255,255,.16); }
.pod-3 { border-color: rgba(255,47,109,.34); }
.pod-3 .rank { color: rgba(255,47,109,.26); }
.pod .who { display: flex; align-items: center; gap: 12px; position: relative; }
.pod .who img, .pod .who .av-fallback { width: 44px; height: 44px; flex: none; }
.pod .nm { font: 800 15px/1.1 var(--sans); letter-spacing: .04em; overflow: hidden; text-overflow: ellipsis; }
.pod .ttl { font: 700 9.5px/1 var(--mono); letter-spacing: .16em; text-transform: uppercase; color: var(--text-mute); margin-top: 5px; }
.pod .score { font-family: var(--display); font-size: 30px; line-height: 1; color: var(--acid); position: relative; }
.pod .score small { font: 700 9.5px/1 var(--sans); letter-spacing: .2em; color: var(--text-mute); display: block; margin-top: 6px; }

.lb-table { width: 100%; border-collapse: collapse; }
.lb-table th {
  text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--line);
  font: 700 10px/1 var(--sans); letter-spacing: .18em; text-transform: uppercase; color: var(--text-mute);
}
.lb-table td { padding: 12px; border-bottom: 1px solid var(--line-soft); font-size: 14.5px; vertical-align: middle; }
.lb-table tr:hover td { background: var(--ink-100); }
.lb-table .pos { font: 500 13px/1 var(--mono); color: var(--text-mute); width: 54px; }
.lb-table .u { display: flex; align-items: center; gap: 11px; }
.lb-table .u img, .lb-table .u .av-fallback { width: 30px; height: 30px; border-radius: 50%; flex: none; }
.lb-table .u b { font-weight: 700; letter-spacing: .03em; }
.lb-table .pts { text-align: right; font: 500 14px/1 var(--mono); color: var(--acid); }
.lb-table .lis { text-align: right; font: 500 12px/1 var(--mono); color: var(--text-mute); }
.lb-table tr.me td { background: rgba(204,255,0,.05); }
.lb-table tr.me .pos { color: var(--acid); }

/* ---------------------------------------------------------------
   13  EVENTS & RAFFLES
   --------------------------------------------------------------- */
.ev-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line-soft); border: 1px solid var(--line-soft); }
.ev {
  position: relative; background: var(--ink-000); padding: 0;
  display: flex; flex-direction: column; min-height: 300px;
  transition: background var(--speed);
}
.ev:hover { background: var(--ink-100); }
.ev-lead { grid-column: span 2; grid-row: span 2; }
.ev-flyer { position: relative; overflow: hidden; aspect-ratio: 16/10; background: var(--ink-200); }
.ev-lead .ev-flyer { aspect-ratio: auto; flex: 1; min-height: 240px; }
.ev-flyer img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.7,.3,1); }
.ev:hover .ev-flyer img { transform: scale(1.045); }
.ev-flyer .noimg {
  position: absolute; inset: 0; display: grid; place-items: center; padding: 20px;
  font-family: var(--display); font-size: clamp(26px, 4vw, 54px); line-height: .9; text-align: center;
  color: var(--ink-400); text-transform: uppercase;
}
.ev-date {
  position: absolute; left: 0; top: 0; z-index: 2;
  background: var(--acid); color: var(--acid-ink); padding: 8px 12px 9px;
  font-family: var(--mono); text-align: center; line-height: 1;
}
.ev-date .d { font-size: 20px; font-weight: 700; }
.ev-date .m { font-size: 9.5px; letter-spacing: .18em; text-transform: uppercase; margin-top: 4px; }
.ev-body { padding: 18px 20px 22px; display: flex; flex-direction: column; gap: 9px; flex: none; }
.ev-body h3 { font-family: var(--display); font-weight: 400; text-transform: uppercase; font-size: clamp(20px, 2.2vw, 32px); line-height: .98; }
.ev-lead .ev-body h3 { font-size: clamp(26px, 3.4vw, 46px); }
.ev-body .where { font: 500 11.5px/1.5 var(--mono); color: var(--text-dim); letter-spacing: .04em; }
.ev-body .line { font-size: 13px; color: var(--text-mute); }
.ev-body .acts { margin-top: 6px; display: flex; flex-wrap: wrap; gap: 8px; }

/* Raffle ticket */
.raffle {
  position: relative; display: grid; grid-template-columns: minmax(0,1fr) 232px;
  background: var(--ink-100); border: 1px solid var(--line);
}
.raffle-main { padding: clamp(22px, 3vw, 34px); }
.raffle-main h3 { font-family: var(--display); font-weight: 400; text-transform: uppercase; font-size: clamp(24px,3.2vw,42px); line-height: .96; }
.raffle-main .prize { color: var(--acid); font: 700 12px/1.5 var(--sans); letter-spacing: .16em; text-transform: uppercase; margin-top: 10px; }
.raffle-main p { color: var(--text-dim); font-size: 14.5px; margin: 14px 0 0; max-width: 58ch; }
.raffle-stub {
  position: relative; border-left: 1px dashed var(--line);
  padding: clamp(20px, 3vw, 28px);
  display: flex; flex-direction: column; justify-content: center; gap: 14px; text-align: center;
  background: repeating-linear-gradient(-45deg, transparent 0 10px, rgba(255,255,255,.012) 10px 20px);
}
.raffle-stub::before, .raffle-stub::after {
  content: ""; position: absolute; left: -9px; width: 17px; height: 17px;
  background: var(--ink-000); border: 1px solid var(--line); border-radius: 50%;
}
.raffle-stub::before { top: -9px; }
.raffle-stub::after  { bottom: -9px; }
.raffle-stub .cost { font-family: var(--display); font-size: 34px; line-height: .9; color: var(--acid); }
.raffle-stub .cost small { display: block; font: 700 9.5px/1 var(--sans); letter-spacing: .2em; color: var(--text-mute); margin-top: 8px; }
.countdown { font: 500 13px/1 var(--mono); color: var(--text); letter-spacing: .06em; }
.countdown small { display: block; font-size: 9.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--text-mute); margin-bottom: 6px; }
.raffle-closed { color: var(--text-mute); font: 700 10.5px/1.5 var(--sans); letter-spacing: .16em; text-transform: uppercase; }

.winner-note {
  display: flex; align-items: center; gap: 12px; padding: 12px 16px;
  background: rgba(204,255,0,.07); border-left: 3px solid var(--acid);
  font-size: 14px;
}

/* ---------------------------------------------------------------
   14  CHAT CONSOLE
   --------------------------------------------------------------- */
.chat {
  display: flex; flex-direction: column;
  background: var(--ink-100); border: 1px solid var(--line);
  height: 520px; max-height: 78vh;
}
.chat-head {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 15px; border-bottom: 1px solid var(--line);
  font: 700 10px/1 var(--mono); letter-spacing: .18em; text-transform: uppercase; color: var(--text-dim);
}
.chat-head .n { margin-left: auto; color: var(--acid); }
.chat-log { flex: 1; overflow-y: auto; overscroll-behavior: contain; padding: 6px 0; }
.msg {
  display: grid; grid-template-columns: 28px 1fr; gap: 10px;
  padding: 7px 15px;
  font-size: 14.5px; line-height: 1.45;
}
.msg:hover { background: rgba(255,255,255,.022); }
.msg:hover .msg-tools { opacity: 1; }
.msg img.av, .msg .av-fallback { width: 28px; height: 28px; border-radius: 50%; margin-top: 2px; }
.msg .hd { display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; }
.msg .nm { font-weight: 800; font-size: 12.5px; letter-spacing: .06em; }
.msg .nm:hover { color: var(--acid); }
.msg time { font: 500 10px/1 var(--mono); color: var(--text-mute); }
.msg .tx { word-wrap: break-word; overflow-wrap: anywhere; color: var(--text); }
.msg.own .nm { color: var(--acid); }
.msg.gone .tx { color: var(--text-mute); font-style: italic; }
.msg-tools { margin-left: auto; display: flex; gap: 4px; opacity: 0; transition: opacity var(--speed); }
.msg-tools button {
  background: none; border: 0; cursor: pointer; padding: 2px 5px;
  font: 700 9px/1 var(--sans); letter-spacing: .12em; text-transform: uppercase; color: var(--text-mute);
}
.msg-tools button:hover { color: var(--pink); }

.rolebadge {
  padding: 2px 5px; font: 800 8.5px/1 var(--sans); letter-spacing: .14em; text-transform: uppercase;
  border-radius: 2px;
}
.rb-admin { background: var(--pink); color: #fff; }
.rb-moderator { background: var(--cyan); color: var(--ink-000); }
.rb-dj { background: var(--acid); color: var(--acid-ink); }
.badge-chip { font-size: 12px; line-height: 1; }

.chat-compose { border-top: 1px solid var(--line); padding: 11px; display: flex; gap: 9px; align-items: flex-end; }
.chat-compose textarea {
  min-height: 42px; max-height: 110px; padding: 11px 13px; font-size: 14.5px; line-height: 1.4;
  background: var(--ink-200); resize: none;
}
.chat-compose .send { flex: none; height: 42px; padding-inline: 18px; }
.chat-locked { padding: 22px; text-align: center; color: var(--text-dim); font-size: 14px; border-top: 1px solid var(--line); }
.chat-note { padding: 8px 15px; font: 500 11px/1.4 var(--mono); color: var(--amber); border-top: 1px solid var(--line); }

/* ---------------------------------------------------------------
   15  JOIN BLOCK & FOOTER
   --------------------------------------------------------------- */
.join {
  position: relative; overflow: hidden;
  background: var(--acid); color: var(--acid-ink);
}
.join .wrap { position: relative; z-index: 1; padding-block: clamp(46px, 7vw, 96px); }
.join h2 {
  font-family: var(--display); font-weight: 400; text-transform: uppercase;
  font-size: clamp(44px, 9vw, 132px); line-height: .82; letter-spacing: -.025em;
}
.join p { max-width: 52ch; font-size: 16.5px; margin: 18px 0 30px; color: rgba(10,13,0,.72); }
.join .loop {
  display: flex; flex-wrap: wrap; gap: 8px 6px; margin: 0 0 30px; padding: 0; list-style: none;
  font: 800 11px/1 var(--sans); letter-spacing: .14em; text-transform: uppercase;
}
.join .loop li { display: flex; align-items: center; gap: 6px; }
.join .loop li::after { content: "→"; opacity: .5; margin-left: 6px; }
.join .loop li:last-child::after { content: ""; }
.join .btn-dark { background: var(--ink-000); color: var(--acid); border-color: var(--ink-000); }
.join .btn-dark:hover { background: #fff; color: var(--ink-000); border-color: #fff; }
.join .btn-outline-dark { border-color: rgba(10,13,0,.32); color: var(--acid-ink); }
.join .btn-outline-dark:hover { background: var(--ink-000); color: var(--acid); border-color: var(--ink-000); }
.join .bigmark {
  position: absolute; right: -6%; top: 50%; transform: translateY(-50%);
  width: 46vh; height: 46vh; opacity: .09; color: var(--acid-ink); pointer-events: none;
}

.foot { border-top: 1px solid var(--line); background: var(--ink-000); padding-block: clamp(40px, 5vw, 64px) 26px; }
.foot-grid { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: clamp(24px, 4vw, 56px); }
.foot h4 { font: 700 10px/1 var(--sans); letter-spacing: .22em; text-transform: uppercase; color: var(--text-mute); margin-bottom: 16px; }
.foot ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.foot ul a { font-size: 14px; color: var(--text-dim); transition: color var(--speed); }
.foot ul a:hover { color: var(--acid); }
.foot .about p { color: var(--text-dim); font-size: 14px; max-width: 42ch; margin: 14px 0 18px; }
.foot-bottom {
  margin-top: clamp(32px, 4vw, 52px); padding-top: 20px; border-top: 1px solid var(--line-soft);
  display: flex; flex-wrap: wrap; gap: 10px 24px; align-items: center;
  font: 500 11px/1.6 var(--mono); color: var(--text-mute); letter-spacing: .04em;
}
.foot-bottom .push { margin-left: auto; }

/* ---------------------------------------------------------------
   16  PAGES
   --------------------------------------------------------------- */
/* Interior page headers.
   These set the scene, but the page's actual content has to start above the
   fold. On the radio page the old header plus a full section gap put the play
   button 350px below the bottom of a 900px window, which is the one thing a
   radio station cannot afford to hide. On wide screens the title and the
   intro now share a row, so the whole header is about one title tall. */
.page-head { border-bottom: 1px solid var(--line-soft); padding-block: clamp(22px, 2.6vw, 34px) clamp(18px, 2.2vw, 26px); position: relative; overflow: hidden; }
.page-head h1 {
  font-family: var(--display); font-weight: 400; text-transform: uppercase;
  font-size: clamp(36px, 4.8vw, 62px); line-height: .88; letter-spacing: -.02em;
}
.page-head .lede { margin-top: 12px; }
.crumbs { font: 500 11px/1 var(--mono); letter-spacing: .12em; text-transform: uppercase; color: var(--text-mute); margin-bottom: 12px; }
.crumbs a:hover { color: var(--acid); }

@media (min-width: 900px) {
  .page-head .wrap {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    column-gap: clamp(28px, 3.4vw, 56px);
    align-items: end;
  }
  /* Crumbs sit on their own line above. Every page keeps the same first three
     children — crumbs, title, intro — so anything a page adds after that
     (filters, buttons, a search form) takes a full-width row of its own. */
  .page-head .wrap > .crumbs { grid-column: 1 / -1; }
  .page-head .wrap > :nth-child(n+4) { grid-column: 1 / -1; margin-top: 16px; }
  /* The stacked title reads well on a phone; on a wide screen it just makes
     the header taller for no reason. */
  .page-head h1 br { display: none; }
  .page-head .lede { margin-top: 0; max-width: 62ch; padding-bottom: 5px; }
}

/* The first band after a header is already separated by the header's own
   border and padding; a full section gap on top of that is dead space. */
.page-head + .band { padding-top: clamp(24px, 2.6vw, 36px); }

.auth-shell { display: grid; grid-template-columns: minmax(0,1fr) minmax(340px, 460px); gap: clamp(30px,6vw,90px); align-items: center; padding-block: clamp(36px, 6vw, 90px); }
.auth-card { background: var(--ink-100); border: 1px solid var(--line); padding: clamp(24px, 3.4vw, 40px); }
.auth-card h1 { font-family: var(--display); font-weight: 400; text-transform: uppercase; font-size: clamp(30px,4vw,46px); line-height: 1; margin-bottom: 6px; }
.auth-card .sub { color: var(--text-mute); font-size: 14px; margin-bottom: 26px; }
.auth-alt { margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--line-soft); font-size: 14px; color: var(--text-dim); }
.auth-alt a { color: var(--acid); font-weight: 700; }
.perks { list-style: none; margin: 26px 0 0; padding: 0; display: grid; gap: 0; }
.perks li { display: grid; grid-template-columns: 66px 1fr; gap: 16px; padding: 15px 0; border-top: 1px solid var(--line-soft); align-items: baseline; }
.perks .p { font: 500 13px/1 var(--mono); color: var(--acid); }
.perks b { display: block; font-size: 13px; letter-spacing: .1em; text-transform: uppercase; }
.perks span { color: var(--text-dim); font-size: 14px; }

/* DJ index */
.dj-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line-soft); border: 1px solid var(--line-soft); }
.dj-card { position: relative; background: var(--ink-000); overflow: hidden; }
.dj-card .ph { position: relative; aspect-ratio: 3/4; overflow: hidden; background: var(--ink-200); }
.dj-card .ph img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.1); transition: filter .45s, transform .7s cubic-bezier(.2,.7,.3,1); }
.dj-card:hover .ph img { filter: grayscale(0); transform: scale(1.05); }
.dj-card .ph .noimg { position: absolute; inset: 0; display: grid; place-items: center; font-family: var(--display); font-size: 4vw; color: var(--ink-400); }
.dj-card .ph::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, var(--ink-000) 4%, transparent 55%); }
.dj-card .info { position: relative; padding: 16px 18px 20px; margin-top: -42px; z-index: 1; }
.dj-card h3 { font-family: var(--display); font-weight: 400; text-transform: uppercase; font-size: clamp(20px,1.9vw,28px); line-height: 1; }
.dj-card .g { font: 700 10px/1 var(--mono); letter-spacing: .16em; text-transform: uppercase; color: var(--acid); margin-top: 9px; }
.dj-card .c { font-size: 12.5px; color: var(--text-mute); margin-top: 6px; }
.dj-card .live-tag { position: absolute; top: 10px; left: 10px; z-index: 2; }

/* Profile */
.profile-head { display: grid; grid-template-columns: auto minmax(0,1fr) auto; gap: clamp(18px,3vw,36px); align-items: center; padding-block: clamp(28px,4vw,52px); }
.profile-av { width: clamp(92px, 13vw, 148px); aspect-ratio: 1; border: 1px solid var(--line); overflow: hidden; flex: none; }
.profile-av img { width: 100%; height: 100%; object-fit: cover; }
.profile-head h1 { font-family: var(--display); font-weight: 400; text-transform: uppercase; font-size: clamp(34px,5.6vw,72px); line-height: .88; }
.profile-head .sub { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.profile-score { text-align: right; }
.profile-score .n { font-family: var(--display); font-size: clamp(36px,5.6vw,70px); line-height: .84; color: var(--acid); }
.profile-score .u { font: 800 9.5px/1 var(--sans); letter-spacing: .22em; text-transform: uppercase; color: var(--text-mute); margin-top: 8px; }

.statbar { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); }
.statbar div { padding: 16px 18px; border-right: 1px solid var(--line); }
.statbar div:last-child { border-right: 0; }
.statbar .k { font: 700 9.5px/1 var(--sans); letter-spacing: .2em; text-transform: uppercase; color: var(--text-mute); }
.statbar .v { font: 500 21px/1 var(--mono); margin-top: 10px; }

.badge-wall { display: flex; flex-wrap: wrap; gap: 10px; }
.badge-tile {
  display: flex; align-items: center; gap: 11px; padding: 11px 15px;
  border: 1px solid var(--line); background: var(--ink-100);
}
.badge-tile .ic { font-size: 19px; line-height: 1; }
.badge-tile b { font: 800 11px/1 var(--sans); letter-spacing: .14em; text-transform: uppercase; }
.badge-tile span { display: block; font-size: 12px; color: var(--text-mute); margin-top: 4px; }
.badge-tile.locked { opacity: .38; }

.ledger { width: 100%; border-collapse: collapse; }
.ledger td { padding: 10px 12px; border-bottom: 1px solid var(--line-soft); font-size: 14px; }
.ledger .a { font: 500 11px/1 var(--mono); letter-spacing: .1em; text-transform: uppercase; color: var(--text-mute); }
.ledger .p { text-align: right; font: 500 14px/1 var(--mono); color: var(--acid); }
.ledger .p.neg { color: var(--pink); }
.ledger time { font: 500 11px/1 var(--mono); color: var(--text-mute); }

.empty {
  padding: clamp(28px,4vw,52px) 24px; text-align: center;
  border: 1px dashed var(--line); color: var(--text-mute);
}
.empty b { display: block; color: var(--text-dim); font: 800 13px/1 var(--sans); letter-spacing: .16em; text-transform: uppercase; margin-bottom: 10px; }

/* ---------------------------------------------------------------
   17  DOCK PLAYER, TOASTS, UTILITIES
   --------------------------------------------------------------- */
.dock {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 45;
  background: rgba(10,10,13,.96);
  backdrop-filter: blur(12px) saturate(140%);
  border-top: 1px solid var(--line);
  transform: translateY(102%);
  transition: transform .28s cubic-bezier(.3,.8,.3,1);
}
.dock.show { transform: translateY(0); }
.dock { padding-bottom: env(safe-area-inset-bottom, 0px); }
.dock .wrap { display: flex; align-items: center; gap: 16px; height: 62px; }
/* Keep the last bit of every page reachable while the dock is up. */
body.has-dock { padding-bottom: calc(62px + env(safe-area-inset-bottom, 0px)); }
.has-dock .toasts { bottom: calc(82px + env(safe-area-inset-bottom, 0px)); }
.dock .d-play { width: 40px; height: 40px; flex: none; background: var(--acid); color: var(--acid-ink); border: 0; display: grid; place-items: center; cursor: pointer; border-radius: var(--radius); }
.dock .d-play.is-playing { background: var(--pink); color: #fff; }
.dock .d-play svg { width: 15px; height: 15px; }
.dock .d-np { min-width: 0; flex: 1; }
.dock .d-np .a { font: 700 10px/1 var(--sans); letter-spacing: .16em; text-transform: uppercase; color: var(--text-mute); }
.dock .d-np .t { font-size: 14px; font-weight: 700; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.dock .d-meta { display: flex; align-items: center; gap: 14px; flex: none; font: 500 11px/1 var(--mono); color: var(--text-dim); }
.dock .vol { max-width: 130px; }

.toasts { position: fixed; right: 16px; bottom: 82px; z-index: 80; display: grid; gap: 8px; max-width: min(360px, calc(100vw - 32px)); }
.toast {
  background: var(--ink-200); border: 1px solid var(--line); border-left: 3px solid var(--acid);
  padding: 12px 15px; font-size: 14px; color: var(--text);
  animation: toastin .3s cubic-bezier(.2,.8,.3,1);
}
.toast.err { border-left-color: var(--pink); }
@keyframes toastin { from { opacity: 0; transform: translateY(10px); } }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.stack-sm > * + * { margin-top: 10px; }
.stack   > * + * { margin-top: 20px; }
.stack-lg> * + * { margin-top: 36px; }
.row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.push { margin-left: auto; }
.dim { color: var(--text-dim); }
.mute { color: var(--text-mute); }
.acid { color: var(--acid); }
.pink { color: var(--pink); }
.center { text-align: center; }
.hidden { display: none !important; }
.pager { display: flex; gap: 8px; justify-content: center; margin-top: 30px; }
.pager a, .pager span { padding: 9px 14px; border: 1px solid var(--line); font: 700 11px/1 var(--sans); letter-spacing: .12em; }
.pager .on { background: var(--acid); border-color: var(--acid); color: var(--acid-ink); }

/* ---------------------------------------------------------------
   18  RESPONSIVE
   --------------------------------------------------------------- */
@media (max-width: 1180px) {
  .hero-inner { grid-template-columns: 1fr; }
  .console { max-width: 620px; }
  .ev-grid { grid-template-columns: repeat(2, 1fr); }
  .ev-lead { grid-column: span 2; grid-row: auto; }
  .dj-grid { grid-template-columns: repeat(3, 1fr); }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}

/* Nine nav items plus Join/Login stop fitting well before the tablet
   breakpoint, so the menu collapses earlier than the layout does. */
@media (max-width: 1120px) {
  .nav { display: none; }
  .head-actions { display: none; }
  .burger { display: flex; }
}

@media (max-width: 980px) {
  .shout-grid { grid-template-columns: 1fr; }
  .spot-dj { grid-template-columns: 1fr; }
  .spot-photo { min-height: 320px; }
  .spot-photo::after { background: linear-gradient(to top, var(--ink-000) 3%, transparent 55%); }
  .auth-shell { grid-template-columns: 1fr; }
  .auth-shell .auth-side { order: 2; }
  .raffle { grid-template-columns: 1fr; }
  .raffle-stub { border-left: 0; border-top: 1px dashed var(--line); flex-direction: row; flex-wrap: wrap; justify-content: space-between; text-align: left; }
  .raffle-stub::before { top: -9px; left: -9px; }
  .raffle-stub::after { bottom: auto; top: -9px; left: auto; right: -9px; }
  .statbar { grid-template-columns: 1fr 1fr; }
  .statbar div:nth-child(2) { border-right: 0; }
  .statbar div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}

@media (max-width: 720px) {
  .statusbar .hide-sm { display: none; }
  .podium { grid-template-columns: 1fr; }
  .pod .rank { font-size: 56px; }
  .ev-grid { grid-template-columns: 1fr; }
  .dj-grid { grid-template-columns: 1fr 1fr; }
  .dj-card .ph .noimg { font-size: 13vw; }
  .dj-card .info { padding: 12px 12px 16px; margin-top: -34px; }
  .dj-card h3 { font-size: 19px; }
  .dj-card .g { font-size: 9px; }
  .ev-lead { grid-column: auto; grid-row: auto; }   /* a span-2 item would force a 2nd column */
  .ev-lead .ev-flyer { aspect-ratio: 16/10; flex: none; min-height: 0; }
  .ev-lead .ev-body h3 { font-size: clamp(22px, 6vw, 30px); }
  .grid-2 { grid-template-columns: 1fr; gap: 0; }
  .sec-head { gap: 12px 14px; }
  .sec-head .rule { display: none; }
  .sec-head .more { margin-left: auto; }
  .spot-photo:has(.noimg) { min-height: 200px; }
  .spot-photo .noimg { font-size: 34vw; }
  .spot-listener { grid-template-columns: auto 1fr; gap: 18px; }
  .lst-score { grid-column: 1 / -1; text-align: left; border-top: 1px solid var(--line); padding-top: 16px; }
  .profile-head { grid-template-columns: auto 1fr; }
  .profile-score { grid-column: 1 / -1; text-align: left; }
  .slot { grid-template-columns: 84px 1fr; row-gap: 10px; }
  .slot .rt { grid-column: 2; }
  .foot-grid { grid-template-columns: 1fr; }
  .console-body { flex-direction: column; }
  .crow { flex-wrap: wrap; row-gap: 4px; }
  .crow .k { width: 100%; }
  .crow .v { margin-left: 0; text-align: left; white-space: normal; }
  .np .title { font-size: 24px; }
  .art { width: 100%; height: auto; aspect-ratio: 1; max-width: 220px; }
  .lb-table .lis, .lb-table th.lis { display: none; }
  .play-slab { width: 100%; }
  .play-slab .txt { padding-right: 18px; }
  .dock .d-meta { display: none; }
  .dock .vol { display: none; }
  .ticker-cta { display: none; }
}

@media (max-width: 420px) {
  .brand .word { font-size: 21px; }
  .play-slab .icon { width: 58px; }
  .play-slab .t1 { font-size: 16px; }
}

/* ---------------------------------------------------------------
   TOUCH — every tappable thing gets a real thumb-sized target.
   Applies on touch devices at any width, and on any narrow screen.
   --------------------------------------------------------------- */
@media (hover: none), (max-width: 720px) {
  .btn { min-height: 46px; padding-block: 14px; }
  .btn-sm { min-height: 42px; padding: 12px 16px; font-size: 11px; }
  .icon-btn { width: 44px; height: 44px; }
  .icon-btn svg { width: 17px; height: 17px; }

  /* Tag-shaped links (socials, tickets) */
  a.tag { padding: 13px 14px; font-size: 10.5px; }

  /* Section "more" links and inline list links get vertical padding
     so the hit box is tall even though the type stays small. */
  .sec-head .more { padding: 15px 0; margin: -15px 0; }
  .slot .what .dj a,
  .lb-table .u,
  .foot ul a,
  .auth-alt a,
  .crumbs a { display: inline-block; padding: 14px 0; margin: -14px 0; }
  .ev-body h3 a { display: block; padding: 10px 0; margin: -10px 0; }
  .msg .nm { padding: 8px 0; margin: -8px 0; }
  .foot ul { gap: 4px; }
  .foot ul a { display: block; padding: 10px 0; margin: 0; }

  .lb-filters a, .lb-filters button { min-height: 42px; padding: 12px 16px; }
  .userchip { padding: 8px 14px 8px 8px; min-height: 44px; }
  .msg .nm { padding: 4px 0; }
  .msg-tools { opacity: 1; }            /* no hover on touch — always show */
  .msg-tools button { padding: 8px 8px; }

  /* Form controls */
  .checkline input { width: 22px; height: 22px; margin-top: 0; }
  .checkline { align-items: center; }
  .input, input[type=text], input[type=email], input[type=password],
  input[type=date], input[type=number], input[type=time], input[type=url],
  input[type=datetime-local], input[type=search], select, textarea {
    font-size: 16px;                     /* stops iOS zooming into fields */
    padding: 14px 15px;
  }
  .chat-compose textarea { font-size: 16px; }
  .chat-compose .send { height: 46px; }

  /* Volume slider: taller hit area, bigger thumb */
  .vol input[type=range] { height: 34px; }
  .vol input[type=range]::-webkit-slider-thumb { width: 20px; height: 20px; margin-top: -8.5px; }
  .vol input[type=range]::-moz-range-thumb { width: 20px; height: 20px; }

  /* Ticker links and the play slab */
  .ticker-cta { padding: 0 18px; }
  .play-slab { min-height: 72px; }

  /* No hover on touch, so photos show in colour straight away */
  .dj-card .ph img, .spot-photo img { filter: none; }

  .cred-row { grid-template-columns: 1fr auto; row-gap: 6px; }
  .cred-row .k { grid-column: 1 / -1; }
  .checkgrid { grid-template-columns: 1fr 1fr; }
  .week-grid { grid-template-columns: 1fr; }
  .week-col { min-height: 0; display: grid; grid-template-columns: 90px 1fr; gap: 10px; align-items: start; }
  .week-day { margin-bottom: 0; padding-top: 8px; }

  /* Event/DJ cards: whole tile is the link already; make titles roomy */
  .ev-body h3 a, .dj-card .info { display: block; }
}

/* ---------------------------------------------------------------
   MOTION PREFERENCES
   --------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .ticker-track { animation: none !important; }
  .ticker-view { overflow-x: auto; }
  .grain { display: none; }
  .beam { display: none; }
  .eq i { height: 50% !important; }
}

@media print {
  .masthead, .dock, .ticker, .grain, .beams, .chat { display: none !important; }
  body { background: #fff; color: #000; }
}
