:root {
  --bg: #050711;
  --bg2: #0b1020;
  --panel: rgba(15, 20, 35, 0.86);
  --panel2: rgba(24, 31, 51, 0.9);
  --ink: #f8f8fb;
  --muted: #aeb6ca;
  --dim: #747f98;
  --gold: #ffcf55;
  --gold2: #ffe08a;
  --red: #ff3156;
  --blue: #3f8cff;
  --green: #3ee38a;
  --magenta: #b05cff;
  --cyan: #37d8ff;
  --line: rgba(255, 255, 255, 0.13);
  --line2: rgba(255, 49, 86, 0.42);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.48);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 18% -8%, rgba(255, 49, 86, 0.28), transparent 32%),
    radial-gradient(circle at 86% 0%, rgba(63, 140, 255, 0.24), transparent 30%),
    radial-gradient(circle at 55% 25%, rgba(176, 92, 255, 0.14), transparent 28%),
    linear-gradient(180deg, #12172a 0%, #070912 58%, #03050b 100%);
}
body::before {
  content: "";
  position: fixed;
  inset: auto 0 0;
  height: 38vh;
  pointer-events: none;
  background: linear-gradient(0deg, rgba(63, 140, 255, 0.11), transparent 78%);
}
.site-grain {
  position: fixed;
  inset: 0;
  z-index: 30;
  pointer-events: none;
  opacity: 0.10;
  background-image: radial-gradient(circle, rgba(255,255,255,.22) 1px, transparent 1px);
  background-size: 24px 24px;
}
#app, .topbar { position: relative; z-index: 1; }
a { color: inherit; }
img { display: block; max-width: 100%; }
h1, h2, h3, p { margin-top: 0; }
h1 { font-size: clamp(2.35rem, 5.6vw, 5.85rem); line-height: .92; letter-spacing: -.055em; margin-bottom: 20px; font-weight: 1000; }
h2 { font-size: clamp(2rem, 4vw, 4.2rem); line-height: .94; letter-spacing: -.06em; margin-bottom: 12px; font-weight: 1000; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 13px clamp(16px, 3vw, 34px);
  background: rgba(5, 7, 17, .78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.mark { display: flex; align-items: center; gap: 10px; text-decoration: none; font-weight: 950; letter-spacing: .01em; }
.mark img { width: 42px; height: 42px; object-fit: cover; border-radius: 14px; border: 1px solid var(--line2); }
nav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px; align-items: center; }
nav a { text-decoration: none; color: var(--muted); border: 1px solid transparent; padding: 9px 11px; border-radius: 999px; font-size: .92rem; }
nav a:hover { color: var(--ink); border-color: var(--line); background: rgba(255,255,255,.06); }
.contact-link { color: var(--ink); border-color: rgba(255,255,255,.16); }
.header-socials { display: inline-flex; gap: 7px; align-items: center; margin-left: 4px; }
.header-socials a { display: grid; place-items: center; width: 38px; height: 38px; padding: 0; border-radius: 999px; border: 1px solid var(--line); background: rgba(255,255,255,.06); color: var(--ink); font-weight: 1000; text-decoration: none; line-height: 1; }
.header-socials a:hover { border-color: rgba(255,49,86,.58); background: linear-gradient(135deg, rgba(255,49,86,.24), rgba(63,140,255,.18)); }

.section-shell { width: min(1240px, calc(100% - 32px)); margin: 0 auto 26px; }
.stats-page-shell.section-shell,
.stats-page-shell.detail-shell { width: calc(100% - 24px); max-width: 640px; margin: 0 auto; }
@media (min-width: 768px) {
  .stats-page-shell.section-shell,
  .stats-page-shell.detail-shell { width: calc(100% - 48px); max-width: 100%; }
}
.loading-card { width: min(600px, calc(100% - 32px)); margin: 80px auto; padding: 30px; background: var(--panel); border: 1px solid var(--line); border-radius: 26px; box-shadow: var(--shadow); }

.hero { padding-top: 18px; }
.hero-banner {
  position: relative;
  overflow: hidden;
  min-height: clamp(560px, 72vh, 760px);
  display: grid;
  place-items: center;
  padding: clamp(26px, 5vw, 64px);
  text-align: center;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,0)),
    radial-gradient(circle at 50% 28%, rgba(255,255,255,.16), transparent 24%),
    linear-gradient(135deg, rgba(255,49,86,.25), rgba(63,140,255,.18) 45%, rgba(3,5,11,.94));
  box-shadow: var(--shadow);
}
.hero-banner::before {
  content: "THE PERFECT ALBUM SIDE";
  position: absolute;
  inset: 8% -4% auto auto;
  max-width: 720px;
  text-align: right;
  font-size: clamp(4rem, 12vw, 11rem);
  line-height: .75;
  letter-spacing: -.09em;
  font-weight: 1000;
  color: rgba(255,255,255,.045);
}
.hero-banner::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 7px;
  background: linear-gradient(90deg, var(--red), var(--gold), var(--blue), var(--magenta));
}
.show-call {
  position: relative;
  z-index: 1;
  color: #ff3156;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(3rem, 10vw, 7.5rem);
  line-height: .78;
  font-weight: 900;
  letter-spacing: -.05em;
  text-transform: uppercase;
  text-shadow: 2px 2px 0 #050711, 5px 5px 0 rgba(255,255,255,.12);
  transform: rotate(-4deg) skewX(-9deg);
  margin-bottom: 22px;
}
.hero-logo {
  position: relative;
  z-index: 1;
  width: min(78vw, 455px);
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,.2);
  box-shadow: 0 28px 80px rgba(0,0,0,.55);
}
.hero-copy { position: relative; z-index: 1; max-width: 960px; margin-top: 26px; }
.tagline { color: var(--gold2); text-transform: uppercase; letter-spacing: .16em; font-weight: 1000; font-size: .86rem; margin-bottom: 12px; }
.hero-copy h1 { font-size: clamp(2.2rem, 5vw, 5rem); margin-bottom: 24px; }
.hero-actions, .card-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; justify-content: center; }

.button, button { border: 0; cursor: pointer; text-decoration: none; border-radius: 999px; padding: 12px 17px; font-weight: 950; font: inherit; }
.primary { background: linear-gradient(135deg, var(--red), var(--blue)); color: white; box-shadow: 0 12px 30px rgba(63,140,255,.22); }
.secondary, .ghost { background: rgba(255,255,255,.07); color: var(--ink); border: 1px solid var(--line); }
.button:hover, button:hover { transform: translateY(-1px); }

.latest-wrap, .episodes-section, .submit-strip, .about, .detail-shell {
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: clamp(20px, 3.5vw, 38px);
  background: var(--panel);
  box-shadow: var(--shadow);
}
.latest-card { display: grid; grid-template-columns: 300px 1fr; gap: 30px; align-items: center; }
.album-frame { padding: 10px; background: linear-gradient(135deg, #202a45, #080b16); border: 1px solid var(--line); border-radius: 24px; box-shadow: 0 18px 40px rgba(0,0,0,.42); }
.album-frame img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 16px; }
.eyebrow { margin: 0 0 10px; color: var(--gold2); text-transform: uppercase; letter-spacing: .18em; font-size: .72rem; font-weight: 950; }
.latest-card p, .section-heading > p, .vote-board-head > p, .episode-info p, .listen-copy p:last-child, .writein-note p:last-child { color: var(--muted); }
.latest-vote-prompt { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin: 14px 0 0; }
.latest-vote-prompt .eyebrow { margin: 0; }
.vote-actions { margin-top: 12px; display: flex; gap: 10px; flex-wrap: wrap; }
.results { margin-top: 20px; display: none; }
.results.visible { display: block; }

.listen-panel { margin: 20px 0; padding: 18px; border: 1px solid rgba(55,216,255,.24); border-radius: 24px; background: linear-gradient(135deg, rgba(63,140,255,.12), rgba(255,49,86,.06)); }
.listen-panel.compact { margin-bottom: 18px; }
.listen-copy h3 { margin: 0 0 6px; font-size: clamp(1.35rem, 2vw, 2rem); line-height: 1; }
.listen-panel audio { width: 100%; margin: 4px 0 14px; accent-color: var(--blue); }
.listen-link-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
.listen-link-grid a { display: flex; align-items: center; gap: 12px; padding: 16px; border: 1px solid var(--line); border-radius: 16px; text-decoration: none; background: rgba(255,255,255,.055); transition: transform .18s ease, border-color .18s ease, background .18s ease; }
.listen-link-grid a:hover { transform: translateY(-2px); border-color: rgba(55,216,255,.55); background: rgba(55,216,255,.09); }
.platform-logo { width: 48px; height: 48px; border-radius: 12px; flex-shrink: 0; }
.listen-link-grid strong { display: block; margin-bottom: 3px; font-size: 1rem; }
.listen-link-grid span { color: var(--muted); font-size: .85rem; }
.listen-detail { padding: 0; border: 0; background: transparent; }

.debate-panel { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 20px 0; }
.vote-card, .song-choice, .stat-box, .detail-block, .matchup { border: 1px solid var(--line); background: rgba(255,255,255,.045); }
.vote-card { border-radius: 18px; padding: 16px; color: var(--ink); text-align: left; }
.vote-card p { font-size: .94rem; margin-bottom: 0; }
.vote-card.steve, .song-choice.steve { border-color: rgba(91,146,240,.45); }
.vote-card.windham, .song-choice.windham { border-color: rgba(228,86,79,.45); }
.vote-card.fan, .song-choice.fan { border-color: rgba(98,201,138,.45); }
.song-vote-board { margin: 20px 0; padding: 18px; border: 1px solid rgba(63,140,255,.25); border-radius: 24px; background: rgba(0,0,0,.18); }
.vote-board-head { display: flex; justify-content: space-between; gap: 20px; align-items: end; margin-bottom: 14px; }
.vote-board-head h3 { margin: 0; font-size: clamp(1.35rem, 2.2vw, 2.1rem); line-height: 1; }
.vote-board-head > p { margin: 0; max-width: 430px; }
.matchup { padding: 13px; border-radius: 18px; margin: 12px 0; }
.slot-label { margin-bottom: 12px; color: var(--gold2); text-transform: uppercase; letter-spacing: .08em; font-size: 1.3rem; font-weight: 900; line-height: 1.2; }
.matchup-grid { display: grid; grid-template-columns: 1fr auto 1fr 1fr; gap: 10px; align-items: stretch; }
.matchup-column-labels {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 42px minmax(0, 1fr) minmax(0, 1fr);
  gap: 10px;
  align-items: end;
  margin: 8px 0 8px;
}
.matchup-column-labels span {
  color: var(--gold2);
  font-size: .72rem;
  font-weight: 1000;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.matchup-column-labels span:nth-child(1) { grid-column: 1; }
.matchup-column-labels span:nth-child(2) { grid-column: 3; }
.matchup-column-labels span:nth-child(3) { grid-column: 4; }

.song-choice { display: block; width: 100%; min-height: 86px; border-radius: 16px; padding: 13px; color: var(--ink); text-align: left; }
.song-choice:hover { border-color: rgba(63,140,255,.62); }
.song-choice strong { display: block; margin-bottom: 5px; line-height: 1.08; }
.song-choice span { display: block; color: var(--muted); font-size: .86rem; line-height: 1.25; }
.listener-pick-card {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 10px;
}
.listener-writein-open {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  font: inherit;
}
.listener-writeins {
  margin-top: 4px;
}
.listener-writeins-empty {
  margin: 0;
  color: var(--muted);
  font-size: .82rem;
}
.listener-writeins-list {
  display: grid;
  gap: 7px;
}
.listener-writeins-list p {
  margin: 0;
  color: var(--gold2);
  font-size: .68rem;
  font-weight: 1000;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.listener-writeins-list button {
  width: 100%;
  padding: 8px 9px;
  border: 1px solid rgba(98,201,138,.32);
  border-radius: 11px;
  background: rgba(98,201,138,.08);
  color: var(--ink);
  text-align: left;
  font: inherit;
}
.listener-writeins-list button:hover {
  border-color: rgba(98,201,138,.68);
  background: rgba(98,201,138,.14);
}
.listener-writeins-list button strong {
  margin-bottom: 2px;
  font-size: .92rem;
}
.listener-writeins-list button span {
  font-size: .78rem;
}

.song-choice.empty { opacity: .55; cursor: default; }
.song-choice.selected { outline: 3px solid rgba(63,140,255,.82); box-shadow: 0 0 0 6px rgba(63,140,255,.14), 0 16px 34px rgba(0,0,0,.28); background: rgba(63,140,255,.14); }
.versus { align-self: center; color: var(--gold2); font-size: .72rem; text-transform: uppercase; font-weight: 1000; letter-spacing: .14em; }
.auto-made { border-color: rgba(98,201,138,.34); background: rgba(98,201,138,.07); }
.auto-song { display: flex; justify-content: space-between; gap: 14px; align-items: center; padding: 14px 15px; border-radius: 15px; background: rgba(255,255,255,.055); }
.auto-song span { color: var(--muted); }

.result-row { display: grid; grid-template-columns: 82px 1fr 48px; align-items: center; gap: 10px; margin: 8px 0; color: var(--muted); }
.result-track { height: 17px; background: rgba(0,0,0,.32); border-radius: 999px; overflow: hidden; }
.result-fill { height: 100%; border-radius: 999px; }
.result-fill.steve { background: var(--blue); }
.result-fill.windham { background: var(--red); }
.result-fill.fan { background: var(--green); }

.store-stats { display: grid; grid-template-columns: 1.2fr repeat(3, 1fr); gap: 14px; }
.stat-box { border-radius: 22px; padding: 18px; }
.stat-box .number { display: block; font-size: 2.45rem; font-weight: 1000; color: var(--gold2); }
.stat-list { list-style: none; padding: 0; margin: 0; }
.stat-list li { display: flex; justify-content: space-between; gap: 12px; padding: 7px 0; color: var(--muted); border-bottom: 1px solid rgba(255,255,255,.07); }
.stat-list b { color: var(--ink); }
.stats-page-head { max-width: 760px; margin-bottom: 24px; }
.stats-page-head p:last-child { color: var(--muted); font-size: 1.08rem; }
.stats-page { margin-top: 18px; }

.section-heading { display: flex; justify-content: space-between; gap: 24px; align-items: end; margin-bottom: 20px; }
.controls { display: flex; justify-content: space-between; gap: 14px; margin-bottom: 22px; }
input[type="search"], textarea, input[type="text"], input[type="email"], select { width: 100%; border: 1px solid var(--line); border-radius: 18px; padding: 14px 16px; background: rgba(0,0,0,.24); color: var(--ink); font: inherit; }
.browse-tools { display: flex; gap: 10px; align-items: center; justify-content: flex-end; min-width: min(100%, 520px); }
.browse-tools select { width: 168px; color-scheme: dark; }
.filter-pills { display: flex; gap: 8px; flex-wrap: wrap; justify-content: flex-end; }
.pill { background: rgba(255,255,255,.055); color: var(--muted); border: 1px solid var(--line); padding: 11px 14px; }
.pill.active { background: rgba(255,49,86,.18); color: var(--ink); border-color: rgba(255,49,86,.52); }
.result-count { color: var(--muted); margin: -8px 0 18px; }
.episode-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.episode-card { text-decoration: none; color: inherit; background: linear-gradient(180deg, rgba(24,32,52,.96), rgba(8,11,21,.98)); border: 1px solid var(--line); border-radius: 22px; overflow: hidden; box-shadow: 0 16px 34px rgba(0,0,0,.28); transition: transform .18s ease, border-color .18s ease; position: relative; }
.episode-card::before { content: ""; position: absolute; inset: 0 0 auto; height: 4px; background: linear-gradient(90deg, var(--red), var(--blue), var(--magenta)); opacity: .72; }
.episode-card:hover { transform: translateY(-4px); border-color: rgba(63,140,255,.58); }
.episode-art { padding: 10px; background: #080a10; }
.episode-art img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 13px; }
.episode-info { padding: 15px; }
.kicker { color: var(--gold2); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 900; }
.episode-info h3 { font-size: clamp(1.28rem, 1.55vw, 1.72rem); line-height: 1.08; min-height: 2.2em; margin: 8px 0 12px; letter-spacing: -.035em; }
.episode-info p { font-size: .9rem; line-height: 1.35; }
.mini-badge { display: inline-flex; align-items: center; gap: 6px; color: white; background: linear-gradient(135deg, var(--red), var(--blue)); border-radius: 999px; padding: 6px 9px; font-weight: 950; font-size: .76rem; }

.submit-strip { display: flex; justify-content: space-between; align-items: center; gap: 20px; background: linear-gradient(135deg, rgba(255,49,86,.16), rgba(17,23,38,.92)); }
.submit-strip h2 { font-size: clamp(1.85rem, 3.6vw, 3.6rem); margin-bottom: 10px; }
.submit-strip p:last-child { color: var(--muted); max-width: 720px; margin-bottom: 0; }
.submit-actions { display: flex; flex-wrap: wrap; gap: 10px; justify-content: flex-end; min-width: min(100%, 330px); }
.about { display: grid; grid-template-columns: 180px 1fr; gap: 24px; align-items: center; }
.about img { border-radius: 28px; border: 1px solid rgba(255,49,86,.45); }
.about-page { display: block; }
.about-intro { max-width: 900px; margin-bottom: 26px; }
.about-intro p { color: var(--muted); font-size: 1.08rem; line-height: 1.6; }
.host-grid { display: grid; grid-template-columns: 1fr; gap: 18px; margin: 24px 0; }
.host-card { position: relative; overflow: hidden; display: grid; grid-template-columns: 220px minmax(0, 1fr); gap: 24px; padding: 22px; border: 1px solid var(--line); border-radius: 26px; background: linear-gradient(145deg, rgba(255,255,255,.07), rgba(255,255,255,.025)); }
.host-card::before { content: ""; position: absolute; inset: 0 0 auto; height: 5px; background: linear-gradient(90deg, var(--red), var(--blue)); opacity: .85; }
.windham-host::before { background: linear-gradient(90deg, var(--blue), var(--green)); }
.host-photo { width: 220px; aspect-ratio: 1; border-radius: 22px; border: 1px solid rgba(255,255,255,.18); object-fit: cover; }
.placeholder-photo { display: grid; place-items: center; background: radial-gradient(circle at 30% 20%, rgba(255,255,255,.18), transparent 28%), linear-gradient(135deg, rgba(255,49,86,.38), rgba(63,140,255,.28), rgba(5,7,17,.9)); color: white; font-size: 3rem; font-weight: 1000; letter-spacing: -.08em; box-shadow: inset 0 0 0 8px rgba(255,255,255,.04); }
.host-copy h3 { font-size: clamp(1.45rem, 2.2vw, 2.25rem); line-height: 1; letter-spacing: -.045em; margin-bottom: 12px; }
.host-copy p { color: var(--muted); line-height: 1.5; }
.taste-list { padding-left: 18px; margin: 14px 0 18px; color: var(--muted); }
.taste-list li { margin: 6px 0; }
.contact-button { display: inline-flex; align-items: center; border: 1px solid rgba(255,255,255,.16); border-radius: 999px; padding: 10px 13px; color: var(--ink); text-decoration: none; background: rgba(255,255,255,.065); font-weight: 900; }
.contact-button:hover { border-color: rgba(55,216,255,.55); background: rgba(55,216,255,.09); }
.about-contact { display: grid; grid-template-columns: 170px 1fr; gap: 22px; align-items: center; margin-top: 18px; padding: 18px; border: 1px solid rgba(255,255,255,.11); border-radius: 26px; background: rgba(0,0,0,.18); }
.contact-row { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.email-note { margin: 12px 0 0; color: var(--dim); font-size: .9rem; }
.back-link { display: inline-block; margin-bottom: 18px; color: var(--gold2); font-weight: 900; text-decoration: none; }
.detail-hero { display: grid; grid-template-columns: 340px 1fr; gap: 30px; align-items: start; }
.detail-hero h1 { font-size: clamp(2.5rem, 5vw, 5.5rem); }
.listen-actions { margin: 18px 0 20px; justify-content: flex-start; }
.detail-block { margin-top: 24px; padding: 20px; border-radius: 22px; }
.song-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; padding: 0; list-style: none; }
.song-list li { padding: 12px; background: rgba(255,255,255,.045); border: 1px solid var(--line); border-radius: 14px; color: var(--muted); }
.song-list strong { display: block; color: var(--ink); }
.writein-form { display: grid; gap: 10px; margin-top: 16px; }
.writein-note h3 { margin-bottom: 8px; font-size: clamp(1.3rem, 2.2vw, 2rem); }
.fan-submit-panel { background: linear-gradient(135deg, rgba(255,49,86,.10), rgba(63,140,255,.08), rgba(255,255,255,.035)); }
.fan-submit-head { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 16px; align-items: start; }
.fan-submit-head p:last-child { color: var(--muted); line-height: 1.5; margin-bottom: 0; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.writein-form label span { display: block; margin-bottom: 7px; color: var(--ink); font-weight: 900; }
.writein-form label em { color: var(--dim); font-style: normal; font-weight: 750; }
.form-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.form-note { margin: 0; color: var(--dim); font-size: .9rem; }
.form-status { min-height: 1.35em; margin: 0; color: var(--green); font-weight: 850; }
.form-status.error { color: var(--gold2); }
.curated-crate { margin-top: 18px; padding: 15px; border: 1px solid rgba(255,255,255,.12); border-radius: 20px; background: rgba(0,0,0,.18); }
.curated-crate p:last-child { color: var(--muted); margin-bottom: 0; }
.curated-crate ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
.curated-crate li { padding: 12px; border: 1px solid var(--line); border-radius: 15px; background: rgba(255,255,255,.045); }
.curated-crate strong, .curated-crate span { display: block; }
.curated-crate span { margin-top: 5px; color: var(--muted); line-height: 1.35; }

@media (max-width: 980px) {
  .latest-card, .detail-hero { grid-template-columns: 1fr; }
  .latest-card .album-frame, .detail-hero .album-frame { max-width: 360px; }
  .episode-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .matchup-grid, .debate-panel, .store-stats, .host-grid, .host-card, .about-contact, .fan-submit-head { grid-template-columns: 1fr; }
  .versus { text-align: center; }
  .section-heading, .controls, .vote-board-head { display: block; }
  .browse-tools { justify-content: flex-start; margin-top: 12px; min-width: 0; }
  .filter-pills { justify-content: flex-start; }
}

@media (max-width: 620px) {
  .topbar { align-items: flex-start; flex-direction: column; }
  nav { justify-content: flex-start; }
  .section-shell { width: min(100% - 20px, 1220px); }
  .hero-banner { min-height: 0; border-radius: 24px; padding: 24px 16px 34px; }
  .hero-logo { width: min(86vw, 360px); }
  .show-call { font-size: clamp(2.7rem, 15vw, 5rem); }
  .hero-copy h1 { font-size: clamp(2rem, 10vw, 3.2rem); }
  .episode-grid, .song-list, .about, .listen-link-grid, .host-grid, .host-card, .about-contact, .form-grid { grid-template-columns: 1fr; }
  .submit-strip { display: grid; }
  .submit-actions { justify-content: flex-start; min-width: 0; }
  .host-photo { width: min(100%, 220px); }
  .browse-tools { display: block; }
  .browse-tools select { width: 100%; margin-bottom: 10px; }
  .header-socials { margin-left: 0; }
}

/* Expanded public stats */
.stats-hero-card {
  padding: clamp(22px, 4vw, 40px);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255,49,86,.18), rgba(63,140,255,.12), rgba(255,255,255,.04));
  margin-bottom: 18px;
}
.stats-hero-card p:last-child { color: var(--muted); font-size: 1.12rem; margin-bottom: 0; }
.stats-kpi-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; margin: 18px 0; }
.kpi-card { padding: 18px; border: 1px solid var(--line); border-radius: 22px; background: rgba(255,255,255,.045); }
.kpi-card p { margin: 0 0 6px; color: var(--muted); font-weight: 850; }
.kpi-card strong { display: block; color: var(--gold2); font-size: clamp(2rem, 4vw, 3.4rem); line-height: .95; letter-spacing: -.05em; }
.kpi-card span { display: block; margin-top: 8px; color: var(--dim); font-size: .9rem; }
.stat-section { margin-top: 22px; padding: 20px; border: 1px solid var(--line); border-radius: 26px; background: rgba(0,0,0,.16); }
.stat-section-head { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 16px; }
.stat-section-head h2 { margin-bottom: 0; }
.stat-section-head > p { color: var(--muted); max-width: 470px; margin-bottom: 0; }
.host-score-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.host-score-card { padding: 18px; border: 1px solid var(--line); border-radius: 22px; background: rgba(255,255,255,.04); }
.host-score-card.steve { border-color: rgba(63,140,255,.35); }
.host-score-card.windham { border-color: rgba(255,49,86,.35); }
.host-score-card.both { border-color: rgba(62,227,138,.35); }
.host-score-card h3 { font-size: 1.6rem; margin-bottom: 14px; }
.host-score-card p { margin: 12px 0 0; color: var(--muted); }
.meter-row { display: grid; grid-template-columns: 1fr auto; gap: 8px; align-items: center; margin: 9px 0; color: var(--muted); font-size: .9rem; }
.meter-row b { color: var(--ink); }
.meter { grid-column: 1 / -1; height: 12px; border-radius: 999px; background: rgba(0,0,0,.34); overflow: hidden; }
.meter i { display: block; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--red), var(--blue)); }
.stats-lists-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; margin-top: 18px; }
.alt-stats-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.leader-card { padding: 18px; border: 1px solid var(--line); border-radius: 24px; background: rgba(255,255,255,.045); }
.leader-card h3 { font-size: 1.35rem; line-height: 1; margin-bottom: 12px; }
.leader-card ol { list-style: none; padding: 0; margin: 0; counter-reset: stat; }
.leader-card li { counter-increment: stat; display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 12px; padding: 9px 0; border-bottom: 1px solid rgba(255,255,255,.075); color: var(--muted); }
.leader-card li::before { content: counter(stat); color: var(--gold2); font-weight: 1000; }
.leader-card li { grid-template-columns: 22px minmax(0, 1fr) auto; }
.leader-card li span { color: var(--ink); overflow-wrap: anywhere; }
.leader-card li b { color: var(--muted); white-space: nowrap; font-size: .86rem; }
.card-note { color: var(--dim); font-size: .92rem; margin: -4px 0 10px; }
.signature-card { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.signature-card h3 { grid-column: 1 / -1; }
.signature-host .eyebrow { margin-bottom: 6px; }
.word-rack { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.word-rack span { display: inline-flex; gap: 6px; align-items: baseline; padding: 8px 11px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.055); color: var(--ink); font-size: var(--size); font-weight: 950; letter-spacing: -.04em; }
.word-rack b { color: var(--gold2); font-size: .72rem; }

@media (max-width: 980px) {
  .stats-kpi-grid, .stats-lists-grid, .alt-stats-grid, .host-score-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .stat-section-head { display: block; }
}
@media (max-width: 620px) {
  .stats-kpi-grid, .stats-lists-grid, .alt-stats-grid, .host-score-grid, .signature-card { grid-template-columns: 1fr; }
}

/* Mobile stats readability fix */
@media (max-width: 620px) {
  .stats-page-shell { padding: 14px; border-radius: 22px; }
  .stats-page-head { margin-bottom: 16px; }
  .stats-page-head h1 { font-size: clamp(2.1rem, 12vw, 3.4rem); }
  .stats-hero-card { padding: 18px; border-radius: 22px; }
  .stats-hero-card h2 { font-size: clamp(1.8rem, 10vw, 2.6rem); }
  .stats-kpi-grid { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 9px; }
  .kpi-card { padding: 12px; border-radius: 17px; min-height: 0; }
  .kpi-card p { font-size: .78rem; margin-bottom: 5px; }
  .kpi-card strong { font-size: clamp(1.55rem, 10vw, 2.25rem); }
  .kpi-card span { font-size: .73rem; line-height: 1.2; }
  .stat-section { padding: 14px; border-radius: 20px; }
  .stat-section-head h2 { font-size: clamp(1.8rem, 10vw, 2.6rem); }
  .stat-section-head > p { font-size: .92rem; }
  .host-score-card { padding: 13px; border-radius: 18px; }
  .host-score-card h3 { font-size: 1.25rem; margin-bottom: 8px; }
  .host-score-card p { font-size: .82rem; }
  .meter-row { margin: 6px 0; font-size: .78rem; }
  .meter { height: 9px; }
  .stats-lists-grid, .alt-stats-grid { gap: 10px; }
  .leader-card { padding: 13px; border-radius: 18px; }
  .leader-card h3 { font-size: 1.12rem; margin-bottom: 8px; }
  .leader-card li { grid-template-columns: 18px minmax(0, 1fr); gap: 7px; padding: 7px 0; }
  .leader-card li b { grid-column: 2; justify-self: start; white-space: normal; font-size: .78rem; margin-top: -4px; }
  .leader-card li span { font-size: .92rem; line-height: 1.15; }
  .card-note { font-size: .8rem; line-height: 1.25; }
  .signature-card { display: block; }
  .signature-host + .signature-host { margin-top: 12px; }
  .word-rack { gap: 7px; }
  .word-rack span { font-size: .92rem !important; padding: 6px 9px; }
}

/* Tablet/iPad stats readability fix */
@media (min-width: 621px) and (max-width: 1100px) {
  .stats-page-shell { padding: clamp(18px, 3vw, 28px); }
  .stats-page-head h1 { font-size: clamp(2.6rem, 7vw, 4.6rem); }
  .stats-kpi-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .host-score-grid { grid-template-columns: 1fr; }
  .stats-lists-grid,
  .alt-stats-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .leader-card {
    padding: 18px 20px;
  }
  .leader-card h3 {
    font-size: clamp(1.35rem, 3vw, 1.9rem);
    margin-bottom: 12px;
  }
  .leader-card ol {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 22px;
  }
  .leader-card li {
    grid-template-columns: 22px minmax(0, 1fr);
    align-items: start;
    padding: 8px 0;
  }
  .leader-card li b {
    grid-column: 2;
    justify-self: start;
    white-space: normal;
    margin-top: -3px;
  }
  .signature-card {
    display: block;
  }
  .signature-card h3 { margin-bottom: 14px; }
  .signature-host + .signature-host { margin-top: 16px; }
  .signature-card .signature-host ol {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 22px;
  }
  .word-rack span {
    font-size: 1rem !important;
  }
}

/* Stats rebuild: tabbed, readable, not spreadsheet coffins */
.stats-hero-tight { margin-bottom: 12px; }
.stats-hero-tight h2 { margin-bottom: 8px; }
.compact-kpis { margin: 12px 0 14px; }
.stats-tabs {
  position: sticky;
  top: 72px;
  z-index: 8;
  display: flex;
  gap: 8px;
  padding: 8px;
  margin: 4px 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(5,7,17,.84);
  backdrop-filter: blur(16px);
  overflow-x: auto;
}
.stats-tab {
  white-space: nowrap;
  padding: 10px 13px;
  color: var(--muted);
  background: transparent;
  border: 1px solid transparent;
}
.stats-tab.active {
  color: white;
  border-color: rgba(255,255,255,.18);
  background: linear-gradient(135deg, rgba(255,49,86,.28), rgba(63,140,255,.22));
}
.stats-panel-tab { display: none; }
.stats-panel-tab.active { display: block; }
.clean-panel { margin-top: 0; }
.compact-head { margin-bottom: 12px; }
.stats-two-up { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.stats-two-up .leader-card { min-height: 0; }
.stats-two-up .leader-card ol { display: block; }
.clean-word-rack span { font-size: 1rem !important; letter-spacing: 0; }

@media (max-width: 1100px) {
  .stats-two-up { grid-template-columns: 1fr; }
  .stats-tabs { top: 86px; border-radius: 20px; }
  .host-score-grid { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .stats-page-shell { padding-top: 12px; }
  .stats-tabs { top: 92px; margin-left: -2px; margin-right: -2px; }
  .stats-tab { padding: 9px 11px; font-size: .9rem; }
  .stats-hero-tight h2 { font-size: 2rem; letter-spacing: -.045em; }
  .stats-hero-tight p:last-child { font-size: .92rem; line-height: 1.35; }
  .compact-kpis { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .compact-head h2 { font-size: 1.85rem; }
  .leader-card ol { display: block !important; }
}

/* Stats dashboard redesign after iPad review */
.compact-stats-head {
  max-width: none;
  margin-bottom: 12px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 420px);
  gap: 22px;
  align-items: end;
}
.compact-stats-head h1 {
  margin-bottom: 0;
  font-size: clamp(2.4rem, 6vw, 4.8rem);
}
.compact-stats-head p:last-child {
  margin: 0;
  font-size: 1rem;
  line-height: 1.35;
}
.dashboard-strip {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 8px 0 12px;
}
.dashboard-strip .kpi-card {
  padding: 12px 14px;
  border-radius: 18px;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 10px;
  align-items: baseline;
}
.dashboard-strip .kpi-card p {
  grid-column: 1 / -1;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin: 0 0 4px;
}
.dashboard-strip .kpi-card strong {
  font-size: clamp(1.7rem, 3vw, 2.45rem);
  line-height: 1;
}
.dashboard-strip .kpi-card span {
  margin: 0;
  font-size: .76rem;
  line-height: 1.15;
}
.stats-tabs {
  position: static;
  border-radius: 18px;
  padding: 6px;
  margin: 8px 0 12px;
}
.stats-tab {
  flex: 1;
  text-align: center;
  padding: 9px 10px;
}
.clean-panel {
  padding: 14px;
  border-radius: 20px;
}
.compact-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 420px);
  gap: 16px;
  align-items: end;
  margin-bottom: 12px;
}
.compact-head h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
}
.compact-head > p {
  font-size: .92rem;
  line-height: 1.35;
}
.host-score-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.host-score-card {
  padding: 13px;
  border-radius: 18px;
}
.host-score-card h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}
.host-score-card p {
  font-size: .82rem;
  line-height: 1.25;
}
.meter-row {
  margin: 6px 0;
  font-size: .78rem;
}
.meter { height: 8px; }

@media (min-width: 621px) and (max-width: 1100px) {
  .compact-stats-head { grid-template-columns: 1fr; gap: 8px; }
  .dashboard-strip { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .dashboard-strip .kpi-card { display: block; padding: 10px; }
  .dashboard-strip .kpi-card strong { font-size: 2rem; }
  .dashboard-strip .kpi-card span { display: block; margin-top: 5px; }
  .compact-head { grid-template-columns: 1fr; gap: 4px; }
  .host-score-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .host-score-card { padding: 11px; }
}

@media (max-width: 620px) {
  .compact-stats-head { grid-template-columns: 1fr; gap: 6px; }
  .compact-stats-head h1 { font-size: 2.45rem; }
  .dashboard-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .dashboard-strip .kpi-card { display: block; }
  .stats-tabs { overflow-x: auto; }
  .stats-tab { flex: 0 0 auto; }
  .compact-head { grid-template-columns: 1fr; gap: 4px; }
  .host-score-grid { grid-template-columns: 1fr; }
}

/* Stats v3: long-form rabbit-hole page */
.stats-mag-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, .8fr);
  gap: 22px;
  align-items: end;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(255,49,86,.18), rgba(63,140,255,.10), rgba(255,255,255,.035));
  margin-bottom: 14px;
}
.stats-mag-hero h2 { margin-bottom: 10px; }
.stats-mag-hero p:last-child { color: var(--muted); font-size: 1.04rem; line-height: 1.45; margin-bottom: 0; }
.stats-mini-ledger {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 10px;
}
.stats-mini-ledger span {
  padding: 12px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  background: rgba(0,0,0,.18);
  color: var(--muted);
  font-size: .85rem;
}
.stats-mini-ledger b { display: block; color: var(--gold2); font-size: 1.7rem; line-height: 1; }
.stats-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 10px;
  margin: 14px 0 18px;
}
.stats-band .kpi-card { padding: 13px; border-radius: 18px; }
.stats-band .kpi-card strong { font-size: 2.1rem; }
.stats-feature-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 14px;
  align-items: start;
  margin-bottom: 18px;
}
.stats-feature-grid.two-col { grid-template-columns: repeat(2, minmax(0,1fr)); }
.stats-feature-grid.three-col { grid-template-columns: repeat(3, minmax(0,1fr)); }
.stat-story-card, .stats-feature-grid .leader-card {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,255,255,.045);
  padding: 16px;
}
.stat-story-card h3 { font-size: clamp(1.35rem, 2.5vw, 2.1rem); line-height: 1; margin-bottom: 8px; }
.scoreboard-story .host-score-grid { display: grid; grid-template-columns: 1fr; gap: 8px; }
.scoreboard-story .host-score-card { padding: 11px; }
.stats-section-title {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: end;
  margin: 22px 0 10px;
  padding-top: 4px;
  border-top: 1px solid rgba(255,255,255,.10);
}
.stats-section-title h2 { margin: 0; font-size: clamp(1.8rem, 4vw, 3.5rem); }
.data-note-card { margin: 18px 0; border-color: rgba(255,207,85,.28); background: rgba(255,207,85,.055); }
.data-note-card p:last-child { color: var(--muted); line-height: 1.55; margin-bottom: 0; }

@media (min-width: 621px) and (max-width: 1100px) {
  .stats-mag-hero { grid-template-columns: 1fr; padding: 18px; }
  .stats-band { grid-template-columns: repeat(4, minmax(0,1fr)); }
  .stats-band .kpi-card { padding: 10px; }
  .stats-band .kpi-card strong { font-size: 1.8rem; }
  .stats-feature-grid,
  .stats-feature-grid.two-col,
  .stats-feature-grid.three-col { grid-template-columns: 1fr; }
  .stats-feature-grid .leader-card ol { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); column-gap: 18px; }
  .stats-section-title { display: block; }
}

@media (max-width: 620px) {
  .stats-mag-hero { grid-template-columns: 1fr; padding: 16px; }
  .stats-mini-ledger, .stats-band { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .stats-feature-grid,
  .stats-feature-grid.two-col,
  .stats-feature-grid.three-col { grid-template-columns: 1fr; }
  .stats-section-title { display: block; }
  .stats-section-title h2 { font-size: 2rem; }
  .stats-feature-grid .leader-card ol { display: block !important; }
}

/* Stats v4: ledger / music-magazine database page */
.stats-ledger-page {
  display: grid;
  gap: 18px;
}

.ledger-ticker {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(0,0,0,.18);
}
.ledger-ticker span {
  display: inline-flex;
  gap: 7px;
  align-items: baseline;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  color: var(--muted);
  font-size: .9rem;
}
.ledger-ticker b { color: var(--gold2); font-size: 1.12rem; }
.ledger-section,
.ledger-note {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,255,255,.035);
}
.ledger-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}
.ledger-section-head h3,
.ledger-note h3 {
  margin: 0;
  font-size: clamp(1.55rem, 3vw, 2.5rem);
  line-height: 1;
  letter-spacing: -.045em;
}
.score-table {
  display: grid;
  gap: 16px;
}
.score-row {
  position: relative;
  padding: 20px 24px;
  border-radius: 16px;
  background: rgba(0,0,0,.2);
  border: 1px solid rgba(255,255,255,.12);
  overflow: hidden;
}
.score-row::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: var(--bar-width, 0%);
  opacity: 0.15;
  transition: width 0.4s ease;
}
.score-row.steve::before { background: var(--blue); }
.score-row.windham::before { background: var(--red); }
.score-row.both::before { background: var(--green); }
.score-row-content {
  position: relative;
  display: grid;
  grid-template-columns: 140px 1fr 1fr;
  gap: 24px;
  align-items: center;
}
.score-row strong {
  font-size: 1.3rem;
  color: var(--ink);
}
.score-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.score-stat-value {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
}
.score-stat-label {
  font-size: 0.85rem;
  color: var(--dim);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.ledger-grid {
  display: grid;
  gap: 12px;
}
.ledger-grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.ledger-grid-wide {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}
.ledger-grid.two {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .ledger-grid-wide,
  .ledger-grid.two { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .stats-ledger-page { gap: 24px; }
  .ledger-section { padding: 28px; }
}
@media (min-width: 1100px) {
  .ledger-grid-wide { grid-template-columns: repeat(3, 1fr); }
}
.rank-table {
  padding: 13px;
  border-radius: 16px;
  background: rgba(0,0,0,.16);
  border: 1px solid rgba(255,255,255,.09);
}
.rank-table h4 {
  margin: 0 0 8px;
  color: var(--gold2);
  font-size: .88rem;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.rank-table ol {
  list-style: none;
  counter-reset: rank;
  padding: 0;
  margin: 0;
}
.rank-table li {
  counter-increment: rank;
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr) auto;
  gap: 9px;
  align-items: baseline;
  padding: 7px 0;
  border-top: 1px solid rgba(255,255,255,.07);
}
.rank-table li::before {
  content: counter(rank);
  color: var(--dim);
  font-weight: 900;
}
.rank-table li span {
  color: var(--ink);
  line-height: 1.2;
  overflow-wrap: anywhere;
}
.rank-table li b {
  color: var(--muted);
  font-size: .86rem;
  white-space: nowrap;
}
.ledger-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.ledger-tags span {
  padding: 7px 10px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  background: rgba(255,255,255,.055);
  color: var(--ink);
  font-weight: 850;
}
.ledger-tags b { color: var(--gold2); }
.ledger-note {
  border-color: rgba(255,207,85,.28);
  background: rgba(255,207,85,.055);
}
.ledger-note p:last-child {
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .ledger-grid.two,
  .ledger-grid-wide { grid-template-columns: 1fr; }
  .score-row-content { grid-template-columns: 1fr; gap: 12px; }
  .ledger-section { padding: 20px; }
  .stats-ledger-page { gap: 16px; }
  .ledger-ticker { padding: 12px; }
  .score-table { gap: 12px; }
}
@media (max-width: 620px) {
  .ledger-section-head { display: block; }
  .ledger-ticker { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); }
  .ledger-ticker span { border-radius: 12px; display: block; }
  .score-row { grid-template-columns: 1fr; }
  .rank-table li { grid-template-columns: 22px minmax(0,1fr); }
  .rank-table li b { grid-column: 2; justify-self: start; white-space: normal; margin-top: -3px; }
}

/* Stats v4.1: tile rankings properly on iPad/tablet */
@media (min-width: 700px) and (max-width: 1100px) {
  .ledger-grid.two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
  }
  .rank-table {
    min-width: 0;
  }
  .rank-table li {
    grid-template-columns: 22px minmax(0, 1fr);
    gap: 8px;
  }
  .rank-table li b {
    grid-column: 2;
    justify-self: start;
    white-space: normal;
    margin-top: -3px;
  }
  .score-row {
    grid-template-columns: 110px repeat(4, minmax(0, 1fr));
  }
  .score-row strong {
    grid-column: auto;
  }
}

/* Fan submission backend/admin pass */
.honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
button:disabled { opacity: .62; cursor: wait; transform: none; }
.admin-shell { margin-top: 24px; }
.admin-login, .admin-toolbar, .admin-card {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,255,255,.045);
  padding: 16px;
  margin: 14px 0;
}
.admin-login {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: end;
}
.admin-login label span { display: block; margin-bottom: 7px; font-weight: 900; }
.admin-login .form-note { grid-column: 1 / -1; }
.admin-toolbar { display: flex; gap: 10px; align-items: center; }
.admin-toolbar select { max-width: 220px; }
.admin-list { display: grid; gap: 14px; }
.admin-card-head { display: flex; justify-content: space-between; gap: 18px; align-items: start; }
.admin-card h3 { font-size: clamp(1.35rem, 2vw, 2rem); line-height: 1.05; margin-bottom: 0; }
.admin-card time, .submitter { color: var(--muted); }
.admin-card pre {
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  padding: 14px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.22);
  color: var(--ink);
  font: inherit;
  line-height: 1.45;
}
.admin-actions { display: flex; flex-wrap: wrap; gap: 10px; }
code { color: var(--gold2); }
@media (max-width: 620px) {
  .admin-login, .admin-card-head { display: block; }
  .admin-login button { margin-top: 10px; }
  .admin-toolbar { align-items: stretch; flex-direction: column; }
  .admin-toolbar select { max-width: none; }
}

/* Hero headline emphasis: make the show title the punchline */
.hero-statement {
  display: grid;
  gap: 5px;
  justify-items: center;
}
.hero-statement span,
.hero-statement strong {
  display: block;
}
.hero-statement span {
  max-width: 980px;
}
.hero-statement strong {
  color: var(--ink);
  font-size: clamp(2.85rem, 6.7vw, 6.8rem);
  line-height: .86;
  letter-spacing: -.065em;
  text-transform: none;
  text-shadow:
    0 0 22px rgba(255, 207, 85, .26),
    0 14px 44px rgba(255, 49, 86, .24);
  background: linear-gradient(92deg, #fff 0%, var(--gold2) 35%, #fff 62%, #ff8aa0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
@media (max-width: 620px) {
  .hero-statement { gap: 7px; }
  .hero-statement strong { font-size: clamp(2.45rem, 13vw, 4.1rem); }
}

/* Public vote result bars */
.vote-result-panel { margin-top: 12px; }
.vote-loading { color: var(--muted); margin: 8px 0 0; font-weight: 850; }
.vote-error { color: #e55; margin: 8px 0 0; font-size: 0.9rem; }
.vote-results-card {
  padding: 14px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 17px;
  background: rgba(0,0,0,.22);
}
.vote-results-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: baseline;
  margin-bottom: 10px;
}
.vote-results-head .eyebrow { margin: 0; }
.vote-results-head strong { color: var(--gold2); }
.vote-bar-row { display: grid; gap: 5px; margin: 10px 0; }
.vote-bar-label { display: flex; justify-content: space-between; gap: 12px; font-weight: 950; }
.vote-bar-label b { color: var(--gold2); }
.vote-bar-track { height: 16px; border-radius: 999px; background: rgba(255,255,255,.08); overflow: hidden; border: 1px solid rgba(255,255,255,.07); }
.vote-bar-track i { display: block; min-width: 3px; height: 100%; border-radius: inherit; transition: width .28s ease; }
.vote-bar-track i.steve { background: linear-gradient(90deg, var(--blue), var(--cyan)); }
.vote-bar-track i.windham { background: linear-gradient(90deg, var(--red), var(--magenta)); }
.vote-bar-track i.fan { background: linear-gradient(90deg, var(--green), var(--gold)); }
.vote-bar-row small { color: var(--dim); }
.vote-bar-row.picked .vote-bar-label span::after { content: " ✓"; color: var(--green); }
.vote-note { margin: 10px 0 0; color: var(--dim); font-size: .86rem; }

/* Inline song write-ins */
.inline-writein {
  display: none;
  margin-top: 12px;
  padding: 14px;
  border: 1px solid rgba(62,227,138,.24);
  border-radius: 17px;
  background: rgba(62,227,138,.06);
}
.inline-writein.visible { display: grid; gap: 10px; }
.inline-writein-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.inline-writein label span { display: block; margin-bottom: 6px; color: var(--ink); font-weight: 900; }
.inline-writein .ghost { justify-self: start; }
@media (max-width: 620px) {
  .inline-writein-grid { grid-template-columns: 1fr; }
}

/* Public write-in vote list */
.writein-results-list {
  margin-top: 13px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,.10);
}
.writein-results-list .eyebrow { margin-bottom: 7px; }
.writein-results-list ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 7px; }
.writein-results-list li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 8px 10px;
  border: 1px solid rgba(62,227,138,.18);
  border-radius: 12px;
  background: rgba(62,227,138,.055);
  color: var(--muted);
}
.writein-results-list strong { color: var(--ink); }
.writein-results-list b { color: var(--green); }

/* Voteable write-in challengers */
.fan-challenger {
  margin: 0 0 12px;
  padding: 10px 12px;
  border: 1px solid rgba(62,227,138,.38);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(62,227,138,.16), rgba(255,207,85,.08));
  color: var(--ink);
}
.fan-challenger strong { color: var(--green); }
.fan-challenger span { color: var(--gold2); font-weight: 950; }
.writein-results-list li {
  grid-template-columns: minmax(0, 1fr) auto auto;
}
.writein-results-list em {
  color: var(--green);
  font-style: normal;
  font-size: .78rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.vote-writein-choice {
  padding: 7px 10px;
  font-size: .82rem;
}
@media (max-width: 620px) {
  .writein-results-list li { grid-template-columns: minmax(0, 1fr) auto; }
  .vote-writein-choice { grid-column: 1 / -1; justify-self: start; }
}

/* Cover-art voting cards */
.song-choice.has-art {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 102px;
}
.song-cover {
  width: 74px;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 10px 22px rgba(0,0,0,.34);
}
.placeholder-cover {
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(255,49,86,.28), rgba(63,140,255,.26));
  color: var(--gold2);
  font-size: 2rem;
  font-weight: 1000;
}
.song-choice-copy { display: block; min-width: 0; }
.song-choice-copy strong,
.song-choice-copy span { overflow-wrap: anywhere; }
@media (max-width: 620px) {
  .song-choice.has-art { grid-template-columns: 66px minmax(0, 1fr); min-height: 92px; }
  .song-cover { width: 66px; border-radius: 10px; }
}

/* Cover art for auto-in and Final Cut/nominated songs */
.auto-song.has-art {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  justify-content: start;
  align-items: center;
}
.auto-song.has-art > span { display: block; min-width: 0; }
.auto-song.has-art > span > span { display: block; color: var(--muted); margin-top: 4px; }
.cover-song-list li {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 11px;
  align-items: center;
}
.cover-song-list .song-cover { width: 64px; border-radius: 10px; }
@media (max-width: 620px) {
  .auto-song.has-art { grid-template-columns: 66px minmax(0, 1fr); }
  .cover-song-list li { grid-template-columns: 58px minmax(0, 1fr); }
  .cover-song-list .song-cover { width: 58px; }
}

/* Visual-first voting pass: bigger covers, meters inside cards */
.song-choice.has-art,
.auto-song.has-art {
  position: relative;
  overflow: hidden;
  grid-template-columns: 1fr;
  gap: 10px;
  padding: 12px;
  min-height: 0;
}
.song-choice.has-art .song-cover,
.auto-song.has-art .song-cover {
  width: 100%;
  border-radius: 16px;
}
.auto-song.has-art {
  max-width: min(100%, 323px);
  align-items: stretch;
}
.auto-art-wrap {
  position: relative;
  display: block;
}
.auto-art-wrap .song-cover {
  display: block;
}
.auto-pas-stamp {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 2;
  width: clamp(168px, 57%, 225px);
  aspect-ratio: 1;
  transform: rotate(11deg);
  filter: drop-shadow(0 9px 15px rgba(0,0,0,.42));
  pointer-events: none;
}
.auto-pas-stamp .stamp-outer,
.auto-pas-stamp .stamp-inner {
  fill: rgba(255,49,86,.10);
  stroke: rgba(255,34,73,.98);
  stroke-width: 7;
}
.auto-pas-stamp .stamp-inner {
  fill: transparent;
  stroke-width: 2.5;
  stroke-opacity: .62;
}
.auto-pas-stamp text {
  fill: rgba(255,45,82,1);
  stroke: rgba(255,225,230,.30);
  stroke-width: .55px;
  paint-order: stroke;
  font-family: 'Arial Black', Impact, system-ui, sans-serif;
  font-weight: 1000;
  text-transform: uppercase;
  text-anchor: middle;
}
.auto-pas-stamp .stamp-arc {
  font-size: 14px;
  letter-spacing: .9px;
}
.auto-pas-stamp .stamp-main {
  font-size: 33px;
  letter-spacing: .8px;
}
.auto-pas-stamp .stamp-bottom {
  font-size: 11.2px;
  letter-spacing: .25px;
}
.auto-song.has-art > span {
  display: block;
  min-width: 0;
}
.auto-song.has-art strong {
  display: block;
  font-size: clamp(1.15rem, 1.7vw, 1.75rem);
  line-height: .98;
  margin-bottom: 5px;
}
.song-choice.has-art .song-choice-copy strong {
  font-size: clamp(1.15rem, 1.7vw, 1.75rem);
  line-height: .98;
}
.song-choice.has-art .song-choice-copy > span {
  font-size: .92rem;
}
.matchup-grid {
  grid-template-columns: minmax(0, 1fr) 42px minmax(0, 1fr) minmax(0, 1fr);
  align-items: stretch;
}
.vote-card-meter {
  position: relative;
  display: block;
  margin-top: 10px;
  padding: 8px 9px;
  border-radius: 12px;
  background: rgba(0,0,0,.28);
  border: 1px solid rgba(255,255,255,.10);
  overflow: hidden;
}
.vote-card-meter i {
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--vote-pct, 0%);
  opacity: .58;
  background: linear-gradient(90deg, var(--red), var(--blue));
}
.song-choice.steve .vote-card-meter i { background: linear-gradient(90deg, var(--blue), var(--cyan)); }
.song-choice.windham .vote-card-meter i { background: linear-gradient(90deg, var(--red), var(--magenta)); }
.song-choice.fan .vote-card-meter i { background: linear-gradient(90deg, var(--green), var(--gold)); }

.locked-pick {
  cursor: default;
}
.locked-pick:hover {
  border-color: inherit;
}
.auto-result {
  display: grid;
  place-items: stretch;
  align-content: start;
  gap: 10px;
  min-height: 0;
  padding: 12px;
  text-align: center;
  border-color: rgba(255,49,86,.62);
  background: radial-gradient(circle at 50% 38%, rgba(255,49,86,.18), rgba(255,255,255,.045) 58%, rgba(0,0,0,.16));
  cursor: default;
}
.auto-result .auto-art-wrap {
  width: 100%;
}
.auto-result .song-cover {
  width: 100%;
  border-radius: 16px;
}
.auto-result .auto-pas-stamp {
  top: 50%;
  left: 50%;
  right: auto;
  width: clamp(168px, 68%, 225px);
  max-width: 225px;
  transform: translate(-50%, -50%) rotate(-8deg);
  filter: drop-shadow(0 9px 15px rgba(0,0,0,.42));
}
.auto-result strong {
  color: var(--gold2);
  font-size: clamp(1.15rem, 1.7vw, 1.7rem);
  text-transform: uppercase;
  letter-spacing: .04em;
}
.auto-result span {
  color: var(--muted);
}

.vote-card-meter span {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 8px;
  align-items: center;
  color: white;
}
.vote-card-meter b { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.vote-card-meter em { font-style: normal; color: var(--gold2); font-weight: 1000; white-space: nowrap; }
.vote-results-card {
  padding: 10px 12px;
  background: rgba(0,0,0,.14);
}
.vote-results-head.compact { margin-bottom: 6px; }
.vote-results-head.compact + .writein-results-list { margin-top: 8px; }
@media (max-width: 980px) {
  .matchup-grid { grid-template-columns: 1fr; }
  .matchup-column-labels { display: none; }
}
@media (max-width: 620px) {
  .song-choice.has-art .song-cover { border-radius: 14px; }
  .song-choice.has-art .song-choice-copy strong { font-size: 1.28rem; }
}
/* Stats Page - Clean Redesign */
.stats-page-clean {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
  margin: 0 auto;
}

.stats-overview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
}

.stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 24px 20px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
}

.stat-value {
  font-size: 3rem;
  font-weight: 900;
  color: var(--gold2);
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.stats-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.stats-section h3 {
  font-size: 1.8rem;
  margin: 0;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.scoreboard {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.score-card {
  position: relative;
  padding: 24px;
  background: rgba(0,0,0,.3);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 16px;
  overflow: hidden;
}

.score-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: var(--bar, 0%);
  opacity: 0.2;
}

.score-card.steve::before { background: var(--blue); }
.score-card.windham::before { background: var(--red); }
.score-card.both::before { background: var(--green); }

.score-name {
  position: relative;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--ink);
}

.score-stats {
  position: relative;
  display: flex;
  gap: 24px;
}

.score-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.score-num {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--ink);
}

.score-lbl {
  font-size: 0.85rem;
  color: var(--dim);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
@media (min-width: 1400px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stats-table {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  padding: 0;
  overflow: hidden;
}

.stats-table.wide {
  grid-column: 1 / -1;
}

.stats-table h4 {
  margin: 0;
  padding: 16px 20px;
  font-size: 1rem;
  color: var(--gold2);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(0,0,0,.3);
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.stats-table table {
  width: 100%;
  border-collapse: collapse;
}

.stats-table tbody tr {
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.stats-table tbody tr:last-child {
  border-bottom: none;
}

.stats-table td {
  padding: 14px 20px;
  vertical-align: middle;
}

.stats-table .rank {
  width: 50px;
  font-weight: 900;
  color: var(--dim);
  font-size: 0.9rem;
  text-align: center;
}

.stats-table .name {
  color: var(--ink);
  font-size: 1rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 250px;
}

.stats-table .meta {
  color: var(--muted);
  font-size: 0.9rem;
  white-space: nowrap;
}

.stats-table .count {
  text-align: right;
  font-weight: 700;
  color: var(--gold2);
  white-space: nowrap;
  padding-right: 20px;
}

/* Mobile */
@media (max-width: 767px) {
  .stats-page-clean {
    gap: 24px;
  }
  
  .stats-overview {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .stat-value {
    font-size: 2.2rem;
  }
  
  .scoreboard {
    grid-template-columns: 1fr;
  }
  
  .score-stats {
    flex-direction: column;
    gap: 12px;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .stats-table td {
    padding: 12px 16px;
  }
  
  .stats-table h4 {
    padding: 14px 16px;
  }
  
  .stats-section h3 {
    font-size: 1.5rem;
  }
}

/* Listen Panel Compact Redesign */
.listen-panel-compact {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 16px 0;
}

.listen-panel-compact audio {
  width: 100%;
  accent-color: var(--blue);
}

.listen-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.platform-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.platform-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 12px;
  text-decoration: none;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
  flex: 1;
  min-width: 140px;
}

.platform-link:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,.1);
  border-color: rgba(55,216,255,.4);
}

.platform-link img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  flex-shrink: 0;
}

.platform-link span {
  color: var(--ink);
  font-weight: 600;
  font-size: 0.95rem;
}

.episode-playlists {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 4px;
}

.episode-playlists .eyebrow {
  margin: 0;
}

.playlist-platform-links {
  gap: 10px;
}

.playlist-link {
  min-width: 190px;
  background: linear-gradient(135deg, rgba(55,216,255,.12), rgba(255,43,108,.12));
}

.apple-music-playlist {
  border-color: rgba(255,43,108,.35);
}

.spotify-playlist {
  border-color: rgba(30,215,96,.35);
}

.photo-page-shell {
  padding-top: 96px;
}

.photo-page-head {
  max-width: 940px;
  margin: 28px 0 34px;
}

.photo-page-head h1 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 5.2rem);
  line-height: 0.95;
}

.photo-page-head > p:last-child {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.05rem;
}

.photo-event-grid,
.photo-feature-grid,
.photo-grid {
  display: grid;
  gap: 18px;
}

.photo-event-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.photo-feature-grid {
  grid-template-columns: 1.25fr .9fr .9fr;
  align-items: stretch;
  margin-bottom: 18px;
}

.photo-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.photo-card,
.photo-event-card {
  overflow: hidden;
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 8px;
}

.photo-event-card {
  display: block;
  color: inherit;
  text-decoration: none;
}

.photo-event-card:hover {
  border-color: rgba(255,207,85,.42);
  background: rgba(255,255,255,.075);
}

.photo-card.featured,
.photo-event-card.featured {
  min-height: 100%;
}

.photo-media {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  background: rgba(0,0,0,.3);
  color: inherit;
  text-decoration: none;
}

.photo-card.featured .photo-media,
.photo-event-card.featured .photo-media {
  aspect-ratio: 16 / 10;
}

.photo-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.photo-placeholder {
  display: grid;
  place-items: end start;
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(55,216,255,.18), rgba(255,43,108,.14)),
    radial-gradient(circle at 18% 18%, rgba(255,255,255,.16), transparent 30%),
    linear-gradient(160deg, rgba(5,8,12,.5), rgba(5,8,12,.92));
}

.photo-placeholder::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 6px;
}

.photo-placeholder span {
  position: relative;
  z-index: 1;
  max-width: 80%;
  color: var(--ink);
  font-weight: 800;
  font-size: clamp(1.3rem, 2.5vw, 2.2rem);
  line-height: 1;
}

.photo-card-copy {
  padding: 18px;
}

.photo-card-copy h2 {
  margin: 4px 0 8px;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  line-height: 1.05;
}

.photo-card-copy p {
  margin: 0;
  color: var(--muted);
}

.photo-card-copy .photo-meta {
  margin-bottom: 10px;
  color: var(--ink);
  font-weight: 650;
}

@media (max-width: 620px) {
  .platform-links {
    flex-direction: column;
  }
  
  .platform-link {
    width: 100%;
    justify-content: center;
  }

  .photo-page-shell {
    padding-top: 82px;
  }

  .photo-page-head h1 {
    font-size: clamp(2.1rem, 13vw, 3.6rem);
  }

  .photo-feature-grid,
  .photo-event-grid,
  .photo-grid {
    grid-template-columns: 1fr;
  }

  .photo-card.featured .photo-media,
  .photo-event-card.featured .photo-media,
  .photo-media {
    aspect-ratio: 4 / 3;
  }
}

/* Mobile voting compact - fit all 3 matchups on screen */
@media (max-width: 620px) {
  .vote-board-head {
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,.15);
  }
  
  .vote-board-head h3 {
    font-size: 1.1rem;
    line-height: 1.3;
    font-weight: 700;
  }
  
  .vote-board-head > p {
    display: none;
  }
  
  .matchup {
    padding: 10px;
    margin: 8px 0;
  }
  
  .slot-label {
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 700;
  }
  
  .song-choice {
    min-height: 60px;
    padding: 10px;
  }
  
  .song-choice strong {
    font-size: 0.95rem;
    margin-bottom: 3px;
    line-height: 1.1;
  }
  
  .song-choice span {
    font-size: 0.8rem;
    line-height: 1.2;
  }
  
  .song-choice.has-art {
    grid-template-columns: 50px minmax(0, 1fr);
    min-height: 65px;
  }
  
  .song-choice.has-art .song-cover {
    width: 50px;
    height: 50px;
  }
  
  .matchup-column-labels {
    margin-bottom: 6px;
  }
  
  .matchup-column-labels span {
    font-size: 0.75rem;
    padding: 4px 8px;
  }
  
  .vote-card-meter {
    padding: 8px 10px;
    margin-top: 8px;
  }
  
  .vote-card-meter span {
    font-size: 0.8rem;
  }
  
  .matchup-grid {
    gap: 8px;
  }
  
  .song-vote-board {
    padding: 12px;
  }
}

/* Pool Voting (Unstructured Episodes) */
.pool-voting-board {
  margin-top: 2rem;
}

.pool-voting-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  background: #f9fafb;
  border-radius: 12px;
  margin-bottom: 2rem;
  color: #050711;
}

.selection-counter {
  font-size: 1.1rem;
}

.selection-counter strong {
  font-size: 1.4rem;
  color: #3f8cff;
}

.pool-voting-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.pool-song-card {
  background: white;
  border: 3px solid #e5e7eb;
  border-radius: 12px;
  padding: 1rem;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
}

.pool-song-card:hover {
  border-color: #3f8cff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.pool-song-card.selected {
  border-color: #3f8cff;
  background: #f0f4ff;
  box-shadow: 0 4px 16px rgba(63, 140, 255, 0.2);
}

.pool-song-art {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 0.75rem;
}

.pool-song-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pool-song-art .placeholder-cover {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: #f9fafb;
  font-size: 3rem;
  color: #aaa;
}

.pool-selection-indicator {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  width: 32px;
  height: 32px;
  background: #3f8cff;
  color: white;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
}

.pool-song-card.selected .pool-selection-indicator {
  display: flex;
}

.pool-song-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.pool-song-info strong {
  font-size: 1rem;
  line-height: 1.3;
  color: #050711;
}

.pool-song-info span {
  font-size: 0.9rem;
  color: #666;
}

.pool-picked-badge {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  background: #f0f4ff;
  border-radius: 4px;
  font-size: 0.75rem !important;
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 0.25rem;
  color: #3f8cff !important;
}

.pool-writein-section {
  margin: 3rem 0;
  padding: 2rem;
  background: #f9fafb;
  border-radius: 12px;
  color: #050711;
}

.pool-writein-form {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.pool-writein-form input {
  flex: 1;
  padding: 0.75rem;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 1rem;
  color: #050711;
}

.pool-writein-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.pool-writein-card {
  border-style: dashed;
}

.pool-results {
  margin-top: 3rem;
  padding: 2rem;
  background: #f9fafb;
  border-radius: 12px;
  color: #050711;
}

.pool-results-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.pool-results-top6 h4 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.pool-result-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: white;
  border-radius: 8px;
  margin-bottom: 0.75rem;
}

.pool-result-card.user-picked {
  border: 2px solid #3f8cff;
}

.pool-rank {
  font-size: 1.5rem;
  font-weight: bold;
  color: #3f8cff;
  min-width: 40px;
}

.pool-result-card strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 0.25rem;
  color: #050711;
}

.pool-result-card span {
  font-size: 0.9rem;
  color: #666;
}

.pool-vote-stat {
  margin-left: auto;
  font-weight: 600;
  color: #3f8cff !important;
}

.pool-all-results {
  margin-top: 2rem;
}

.pool-all-results summary {
  cursor: pointer;
  font-weight: 600;
  padding: 0.75rem;
}

.pool-result-card.small {
  padding: 0.75rem;
}

@media (max-width: 768px) {
  .pool-voting-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
  }
  
  .pool-voting-controls {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .pool-writein-form {
    flex-direction: column;
  }
}
