:root {
  --bg: #090909;
  --bg-elevated: #111111;
  --bg-panel: #161616;
  --bg-panel-2: #1d1d1d;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.18);
  --text: #f4eee2;
  --muted: #b8ae99;
  --gold: #d0b07c;
  --gold-bright: #f2d7a7;
  --ember: #ff9c4a;
  --live: #ff4a2f;
  --success: #e7c15b;
  --shadow: 0 30px 100px rgba(0, 0, 0, 0.55);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --max-width: 1220px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id],
.expand-panel[id] {
  scroll-margin-top: 3.25rem;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top center, rgba(255, 156, 74, 0.16), transparent 32%),
    linear-gradient(180deg, #111111 0%, #090909 38%, #080808 100%);
  color: var(--text);
  font-family: "Barlow", system-ui, sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(transparent, rgba(0, 0, 0, 0.18)),
    radial-gradient(circle at 50% -20%, rgba(255, 255, 255, 0.08), transparent 35%);
  opacity: 0.8;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

button,
input,
textarea,
select {
  font: inherit;
}

.page-shell {
  position: relative;
  z-index: 1;
}

.container {
  width: min(var(--max-width), calc(100vw - 32px));
  margin: 0 auto;
}

/* Match real ticker chrome while #ticker-root is empty (before JS runs). */
#ticker-root:empty {
  min-height: 45px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(90deg, rgba(255, 74, 47, 0.98), rgba(230, 82, 36, 0.98), rgba(255, 74, 47, 0.98));
}

.ticker {
  position: sticky;
  top: 0;
  z-index: 30;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(90deg, rgba(255, 74, 47, 0.98), rgba(230, 82, 36, 0.98), rgba(255, 74, 47, 0.98));
  color: #fff2e2;
}

.ticker-track {
  display: flex;
  width: max-content;
  gap: 24px;
  padding: 11px 0;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  animation: ticker-scroll 28s linear infinite;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
  flex-shrink: 0;
}

.ticker-item:hover .ticker-item__text {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.ticker-item:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.ticker-item::before {
  content: "LIVE";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  min-height: 24px;
  padding: 0 8px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.2);
  font-size: 11px;
  letter-spacing: 1px;
}

@keyframes ticker-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.hero {
  padding: 34px 0 24px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 24px;
  align-items: stretch;
}

.panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 16%),
    rgba(15, 15, 15, 0.88);
  box-shadow: var(--shadow);
}

.panel-inner {
  padding: 28px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 44px;
  height: 1px;
  background: rgba(208, 176, 124, 0.8);
}

.display-title,
.matchup-title,
.team-title,
.legal-title {
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 0.95;
}

.display-title {
  font-size: clamp(4rem, 10vw, 7.75rem);
}

.matchup-lockup {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 14px;
}

.matchup-vs {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.6rem, 5vw, 4rem);
  color: var(--gold-bright);
}

.subtitle {
  max-width: 38rem;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.55;
}

.meta-row,
.hero-actions,
.hero-stat-grid,
.cta-grid,
.schedule-grid,
.detail-grid,
.content-grid,
.masonry-grid,
.legal-grid {
  display: grid;
  gap: 16px;
}

.hero-actions {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  margin-top: 24px;
}

.button,
.button-link,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 14px;
  text-align: center;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 140ms ease, background 140ms ease, border-color 140ms ease, opacity 140ms ease;
}

.button:hover,
.button-link:hover,
.ghost-button:hover {
  transform: translateY(-1px);
}

.button {
  background: linear-gradient(180deg, #ff6947, #e5452e);
  color: #0d0d0d;
}

.button.secondary {
  background: linear-gradient(180deg, #e2c28a, #b99149);
}

.ghost-button {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}

.button[disabled],
.ghost-button[disabled],
.button-link.is-disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
  transform: none;
}

.hero-stat-grid {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  margin-top: 24px;
}

.stat-card,
.detail-card,
.schedule-card,
.mini-card,
.content-card,
.tweet-card,
.legal-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.025);
}

.stat-card,
.detail-card,
.schedule-card,
.mini-card,
.content-card,
.tweet-card,
.legal-card {
  padding: 18px;
}

.stat-label,
.card-label,
.mini-label,
.content-label {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.stat-value,
.card-value {
  margin-top: 8px;
  font-size: 1.3rem;
  font-weight: 800;
}

#public-view-card.is-muted #public-view-value {
  filter: blur(10px);
  user-select: none;
}

.poster-panel {
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  padding: 14px;
}

.poster-frame {
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  flex: 1;
  border-radius: calc(var(--radius-lg) - 6px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: #111111;
  container-type: inline-size;
}

.poster-visual {
  position: relative;
  flex: 1;
  min-height: 0;
}

.poster-visual::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.45));
  pointer-events: none;
}

.poster-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.poster-caption {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(14px);
}

.poster-caption__copy {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.poster-caption strong {
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1.2;
}

.poster-caption__sub {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 500;
  line-height: 1.35;
}

.poster-caption .status-pill {
  flex-shrink: 0;
}

@container (max-width: 360px) {
  .poster-caption {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .poster-caption .status-pill {
    align-self: flex-start;
  }
}

.section {
  padding: 16px 0 28px;
}

.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.section-title {
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.section-copy {
  max-width: 40rem;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.55;
}

.topics-table-wrap {
  overflow-x: auto;
  margin-bottom: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.02);
}

.topics-table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
  font-size: 0.94rem;
  line-height: 1.5;
}

.topics-table thead th {
  text-align: left;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.04);
}

.topics-table tbody th,
.topics-table tbody td {
  padding: 12px 14px;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
}

.topics-table tbody tr:last-child th,
.topics-table tbody tr:last-child td {
  border-bottom: none;
}

.topics-table tbody th {
  font-weight: 700;
  text-align: left;
  width: 22%;
  min-width: 10rem;
}

.topics-table tbody td {
  color: var(--muted);
}

.topics-table tbody td:last-child {
  color: var(--text);
  white-space: nowrap;
  width: 1%;
}

.topics-table tbody code {
  font-size: 0.88em;
  padding: 1px 5px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
}

@media (max-width: 540px) {
  .topics-table {
    font-size: 0.88rem;
  }
}

.live-top {
  padding-bottom: 8px;
}

.live-poll-section {
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.live-top .poster-panel {
  align-items: center;
}

.live-top .poster-frame {
  flex: 0 1 auto;
  width: 100%;
  max-width: min(100%, 380px);
  margin-inline: auto;
}

.live-top .poster-visual {
  flex: 0 1 auto;
}

.live-top .poster-visual img {
  height: auto;
  object-fit: contain;
  display: block;
}

.countdown-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.countdown-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  padding: 16px 14px;
  text-align: center;
}

.countdown-value {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 0.95;
}

.countdown-label {
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.poll-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
  gap: 22px;
}

.poll-form,
.results-panel,
.expand-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.025);
  padding: 20px;
}

.poll-step + .poll-step {
  margin-top: 18px;
}

.field-label {
  display: block;
  margin-bottom: 10px;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 700;
}

.field-help {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.choice-row,
.reason-grid,
.share-grid,
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.choice-input,
.reason-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choice-chip,
.reason-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 16px;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 140ms ease, background 140ms ease, color 140ms ease, transform 140ms ease;
}

.choice-chip:hover,
.reason-chip:hover {
  transform: translateY(-1px);
}

.choice-input:checked + .choice-chip,
.reason-input:checked + .reason-chip {
  border-color: rgba(255, 212, 154, 0.65);
  background: linear-gradient(180deg, rgba(255, 156, 74, 0.18), rgba(208, 176, 124, 0.18));
  color: var(--gold-bright);
}

.text-input,
.textarea-input {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}

.text-input {
  min-height: 54px;
  padding: 0 16px;
}

.textarea-input {
  min-height: 130px;
  padding: 14px 16px;
  resize: vertical;
}

.text-input::placeholder,
.textarea-input::placeholder {
  color: rgba(244, 238, 226, 0.36);
}

.turnstile-slot {
  margin-top: 16px;
}

.feedback {
  min-height: 24px;
  margin: 14px 0 0;
  color: var(--gold-bright);
  font-size: 0.95rem;
}

.feedback.is-error {
  color: #ff8c7c;
}

.feedback.is-success {
  color: #ffe0a2;
}

.results-locked-hint {
  margin: 0 0 14px;
  padding: 12px 14px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.results-locked-hint[hidden] {
  display: none;
}

.results-reveal {
  transition: filter 0.35s ease;
}

.results-reveal.is-locked {
  filter: blur(14px);
  user-select: none;
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .results-reveal {
    transition: none;
  }
}

.results-head {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 12px;
  margin-bottom: 18px;
}

.results-head h3,
.panel-title,
.mini-title,
.content-title {
  margin: 0;
}

.results-head h3 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.results-mode {
  color: var(--muted);
  font-size: 0.9rem;
}

.result-bar + .result-bar {
  margin-top: 16px;
}

.result-topline {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.result-name {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.result-number {
  color: var(--gold-bright);
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
  line-height: 1;
}

.result-track {
  overflow: hidden;
  width: 100%;
  height: 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.result-fill {
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(255, 165, 74, 0.75), rgba(255, 74, 47, 0.92));
}

.cta-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-top: 22px;
}

.expand-panel {
  margin-top: 18px;
}

.expand-panel[hidden] {
  display: none;
}

.panel-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.panel-subcopy {
  margin: 6px 0 16px;
  color: var(--muted);
  line-height: 1.55;
}

.panel-grid {
  display: grid;
  gap: 14px;
}

.split-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.share-grid {
  margin-top: 18px;
}

.share-grid .button,
.share-grid .ghost-button {
  flex: 1 1 180px;
}

.take-submit-panel {
  margin-top: 28px;
  padding: 20px 20px 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
}

.take-submit-panel .panel-subcopy {
  margin-bottom: 26px;
}

.take-form-fieldset {
  margin: 0;
  padding: 0;
  border: 0;
  min-width: 0;
}

.take-form-fieldset > .button {
  margin-top: 22px;
}

.take-form-fieldset:disabled .text-input,
.take-form-fieldset:disabled .button {
  opacity: 0.55;
  cursor: not-allowed;
}

.wall-disclaimer {
  margin-top: 16px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.02);
  color: var(--muted);
  line-height: 1.6;
}

.content-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.masonry-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.content-card,
.tweet-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.content-title {
  font-size: 1.26rem;
  font-weight: 800;
}

.content-copy {
  color: var(--muted);
  line-height: 1.55;
  flex: 1;
}

.content-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.content-tag {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  padding: 2px 8px;
  text-transform: uppercase;
}

.content-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.card-link {
  color: var(--gold-bright);
  font-size: 0.94rem;
  font-weight: 700;
  text-decoration: none;
}

.tweet-head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.tweet-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(255, 156, 74, 0.4), rgba(208, 176, 124, 0.18));
  color: var(--gold-bright);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.3rem;
  letter-spacing: 1px;
}

.tweet-name {
  font-weight: 800;
}

.tweet-handle {
  color: var(--muted);
  font-size: 0.92rem;
}

.tweet-quote {
  margin: 0;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.6;
}

.page-footer {
  padding: 24px 0 42px;
}

.footer-panel {
  display: grid;
  gap: 20px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.02);
}

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

.footer-links a,
.footer-link-button {
  color: var(--gold-bright);
  font-weight: 700;
  text-decoration: none;
}

.footer-copy {
  color: var(--muted);
  line-height: 1.6;
}

.team-layout,
.live-layout,
.legal-layout {
  display: grid;
  gap: 24px;
}

.team-layout {
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
}

.team-title {
  font-size: clamp(3.6rem, 8vw, 6.4rem);
}

.team-copy {
  color: var(--muted);
  line-height: 1.6;
}

.merch-band {
  margin-top: 10px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.merch-head {
  margin-bottom: 4px;
}

.merch-title {
  margin: 0 0 10px;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.2rem, 4.2vw, 3.5rem);
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 0.98;
}

.merch-lede {
  max-width: 42rem;
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.55;
}

.merch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 22px;
}

.merch-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 28%),
    rgba(15, 15, 15, 0.92);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}

.merch-card--pending {
  opacity: 0.92;
}

.merch-thumb {
  position: relative;
  aspect-ratio: 4 / 5;
  background: #0c0c0c;
  border-bottom: 1px solid var(--line);
}

.merch-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.merch-thumb--pending {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, #181818 0%, #0a0a0a 55%, #121212 100%);
}

.merch-thumb--pending::after {
  content: "Coming soon";
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: rgba(184, 174, 153, 0.55);
}

.merch-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 10px;
  padding: 18px;
}

.merch-name {
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.55rem;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  line-height: 1;
}

.merch-blurb {
  flex: 1;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.merch-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px 14px;
}

.merch-was {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: line-through;
  opacity: 0.55;
}

.merch-now {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold-bright);
}

.merch-cta {
  width: 100%;
  margin-top: 2px;
}

.merch-cta[disabled] {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.legal-title {
  font-size: clamp(3rem, 8vw, 5rem);
}

.legal-copy,
.legal-list {
  color: var(--muted);
  line-height: 1.7;
}

.legal-list {
  margin: 0;
  padding-left: 1.1rem;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 74, 47, 0.14);
  color: #ffb5a7;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.status-pill::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
}

#site-nav-root {
  margin: 0;
  padding: 0;
  border: 0;
}

.site-nav {
  --site-nav-grip: 28px;
  position: fixed;
  inset-inline-start: 0;
  inset-inline-end: auto;
  top: 50%;
  z-index: 35;
  transform: translateY(-50%);
  line-height: 1.3;
}

.site-nav__panel {
  display: flex;
  align-items: stretch;
  max-width: min(240px, 85vw);
  border: 1px solid var(--line-strong);
  border-left: none;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  background: rgba(22, 22, 22, 0.96);
  backdrop-filter: blur(14px);
  box-shadow:
    8px 0 0 0 rgba(255, 156, 74, 0.22),
    20px 0 48px rgba(0, 0, 0, 0.55);
  transition: transform 0.24s ease;
  transform: translateX(calc(var(--site-nav-grip) - 100%));
}

.site-nav__grip {
  flex: 0 0 var(--site-nav-grip);
  min-width: var(--site-nav-grip);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  font: inherit;
  color: inherit;
  background: linear-gradient(
    90deg,
    rgba(14, 14, 14, 0.99) 0%,
    rgba(26, 22, 18, 0.98) 55%,
    rgba(255, 156, 74, 0.2) 100%
  );
  border: none;
  border-left: 2px solid var(--ember);
  border-right: none;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  cursor: default;
}

.site-nav__grip-text {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold-bright);
  text-shadow: 0 0 12px rgba(242, 215, 167, 0.35);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  white-space: nowrap;
}

.site-nav__body {
  flex: 1;
  min-width: 0;
  padding: 12px 10px 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.site-nav__links,
.site-nav__section {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.site-nav__section {
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.site-nav__subhead {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}

.site-nav__link {
  display: block;
  padding: 7px 10px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
}

.site-nav__link:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--gold-bright);
}

.site-nav__link[aria-current="page"] {
  color: var(--gold);
  background: rgba(208, 176, 124, 0.12);
}

.site-nav__link:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

@media (hover: hover) and (pointer: fine) {
  .site-nav:hover .site-nav__panel,
  .site-nav:focus-within .site-nav__panel {
    transform: translateX(0);
  }
}

@media (hover: none), (pointer: coarse) {
  #site-nav-root {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-nav__panel,
  .site-nav__link {
    transition: none;
  }
}

.consent-banner {
  position: fixed;
  z-index: 200;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 16px;
  background: rgba(9, 9, 9, 0.96);
  border-top: 1px solid var(--line-strong);
  box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.45);
}

.consent-banner__text {
  margin: 0 0 12px;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--muted);
  max-width: 52rem;
}

.consent-banner__text a {
  color: var(--gold-bright);
  text-decoration: underline;
}

.consent-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.footer-link-button {
  background: none;
  border: none;
  padding: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  cursor: pointer;
  text-align: left;
}

.reminder-consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.9rem;
  line-height: 1.45;
  color: var(--muted);
}

.reminder-consent input {
  margin-top: 4px;
  flex-shrink: 0;
}

.hidden {
  display: none !important;
}

@media (max-width: 980px) {
  .hero-grid,
  .poll-layout,
  .team-layout {
    grid-template-columns: 1fr;
  }

  .poster-panel {
    min-height: auto;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(var(--max-width), calc(100vw - 20px));
  }

  .panel-inner,
  .poll-form,
  .results-panel,
  .expand-panel,
  .content-card,
  .tweet-card,
  .detail-card,
  .schedule-card,
  .stat-card,
  .legal-card,
  .footer-panel {
    padding: 18px;
  }

  .countdown-grid,
  .split-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .hero {
    padding-top: 22px;
  }

  .countdown-grid,
  .split-grid {
    grid-template-columns: 1fr 1fr;
  }

  .ticker-track {
    font-size: 12px;
  }

  .display-title {
    font-size: 3.5rem;
  }
}
