:root {
  --bg: #fff7ef;
  --bg-strong: #fffdf8;
  --panel: rgba(255, 251, 245, 0.94);
  --panel-strong: #fffdf8;
  --text: #1d1633;
  --muted: #6d647f;
  --line: rgba(54, 92, 255, 0.16);
  --accent: #ff5c8a;
  --accent-deep: #365cff;
  --teal: #5dd39e;
  --coral: #ff7b6b;
  --red: #e63946;
  --gold: #ffbe3b;
  --orange: #ff7a18;
  --shadow: 0 28px 70px rgba(61, 49, 102, 0.16);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  background:
    radial-gradient(circle at 8% 8%, rgba(255, 92, 138, 0.18), transparent 24%),
    radial-gradient(circle at 82% 10%, rgba(54, 92, 255, 0.18), transparent 24%),
    radial-gradient(circle at 18% 82%, rgba(255, 123, 107, 0.18), transparent 24%),
    radial-gradient(circle at 92% 54%, rgba(230, 57, 70, 0.14), transparent 22%),
    radial-gradient(circle at 72% 76%, rgba(93, 211, 158, 0.16), transparent 26%),
    radial-gradient(circle at 54% 100%, rgba(255, 190, 59, 0.14), transparent 30%),
    linear-gradient(180deg, #fffdf8 0%, #fff3e7 48%, #fff9f2 100%);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.55;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(54, 92, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 92, 138, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.35), transparent 85%);
}

body.song-takeover-home {
  background:
    radial-gradient(circle at 8% 12%, color-mix(in srgb, var(--takeover-a, #365cff) 18%, transparent), transparent 24%),
    radial-gradient(circle at 88% 8%, color-mix(in srgb, var(--takeover-b, #5dd39e) 20%, transparent), transparent 24%),
    radial-gradient(circle at 82% 64%, color-mix(in srgb, var(--takeover-c, #e63946) 16%, transparent), transparent 24%),
    linear-gradient(180deg, #fffdf8 0%, #f8f4ff 22%, #eff8ff 54%, #fff8f1 100%);
}

.page-shell {
  width: min(1400px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 48px;
}

.hero {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 24px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  background:
    radial-gradient(circle at 0% 0%, rgba(255, 190, 59, 0.18), transparent 26%),
    radial-gradient(circle at 100% 0%, rgba(255, 92, 138, 0.24), transparent 30%),
    radial-gradient(circle at 66% 16%, rgba(230, 57, 70, 0.18), transparent 22%),
    radial-gradient(circle at 82% 80%, rgba(255, 123, 107, 0.22), transparent 30%),
    linear-gradient(135deg, rgba(20, 15, 45, 0.98), rgba(44, 23, 66, 0.97) 54%, rgba(24, 44, 93, 0.96) 78%, rgba(255, 123, 107, 0.34) 120%);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  width: 360px;
  height: 360px;
  top: -150px;
  right: -80px;
  background: radial-gradient(circle, rgba(255, 92, 138, 0.26), transparent 68%);
}

.hero-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.hero-brand img,
.brand-banner img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  border-radius: 14px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.32);
  background: rgba(2, 4, 12, 0.92);
  padding: 4px;
}

.brand-text {
  display: grid;
  gap: 2px;
}

.brand-name {
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: white;
}

.brand-tagline {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
}

.eyebrow,
.section-kicker,
.winner-label,
.winner-card-label,
.form-section-label {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  color: var(--accent-deep);
  margin: 0 0 10px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-family: "Instrument Serif", serif;
  font-size: clamp(3rem, 7vw, 5.4rem);
  line-height: 0.95;
  margin-bottom: 14px;
}

h2 {
  font-size: 1.45rem;
  margin-bottom: 0;
}

h3 {
  font-size: 1rem;
  margin-bottom: 0;
}

.hero-text,
.hint,
.team-meta,
.team-owner,
.snapshot-card p,
.activity-item p,
.team-card p,
.score-line,
.content-hero-meta,
.song-showcase-sub,
.game-card-meta {
  color: var(--muted);
}

.hero-copy,
.panel,
.snapshot-card,
.team-card,
.activity-item,
.result-card,
.song-showcase-card,
.weekly-slate-card,
.week-block,
.game-card {
  color: var(--text);
}

.hero-panel,
.snapshot-grid,
.list-columns,
.teams-grid,
.dashboard,
.activity-list,
.roster-list,
.pick-list,
.chip-list,
.draft-order,
.matchup-results,
.result-section {
  display: grid;
}

.hero-panel {
  grid-template-columns: 1fr;
  gap: 14px;
  position: relative;
  z-index: 1;
}

.stat,
.snapshot-card,
.team-card,
.activity-item,
.result-card,
.song-showcase-card,
.weekly-slate-card,
.week-block,
.game-card {
  border: 1px solid var(--line);
  background: var(--panel-strong);
  border-radius: 22px;
  box-shadow: 0 16px 34px rgba(61, 49, 102, 0.1);
}

.stat {
  padding: 18px;
}

.stat-label,
.snapshot-card span {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 8px;
}

.dashboard {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 22px;
}

.panel {
  padding: 22px;
  border-radius: 26px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.68), rgba(255, 248, 240, 0.92)),
    var(--panel);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.panel-wide {
  grid-column: 1 / -1;
}

.panel-heading,
.team-card-head,
.inline-actions,
.week-header,
.game-card-head,
.winner-card-meta,
.score-row {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 16px;
}

.panel-actions,
.page-nav,
.inline-button-row,
.team-stats-strip,
.week-badges,
.content-hero-songline,
.panel-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

#owner-team-quick-picks,
#category-style-picks {
  margin-top: 12px;
}

#owner-team-quick-picks .tab-button,
#category-style-picks .tab-button {
  width: auto;
  min-width: 140px;
  flex: 0 0 auto;
}

.panel-tabs {
  margin-top: 18px;
  margin-bottom: 18px;
}

#tunes-category-charts-panel,
#tunes-top-10-panel,
#tunes-music-box-panel {
  margin-top: 6px;
}

.music-box-shell {
  display: grid;
  gap: 18px;
}

.music-box-station {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255,255,255,0.98), rgba(248, 242, 255, 0.96));
  border: 1px solid rgba(54, 92, 255, 0.12);
}

.music-box-station-art {
  aspect-ratio: 1 / 1;
  border-radius: 20px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 18px 36px rgba(54, 92, 255, 0.16);
}

.music-box-list {
  display: grid;
  gap: 10px;
}

.music-box-row {
  display: grid;
  grid-template-columns: 50px 68px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(54, 92, 255, 0.1);
}

.music-box-row.is-active {
  border-color: rgba(230, 57, 70, 0.4);
  box-shadow: 0 14px 28px rgba(230, 57, 70, 0.12);
}

.music-box-rank {
  font-weight: 700;
  color: var(--accent-purple, #365cff);
  letter-spacing: 0.08em;
}

.music-box-thumb {
  width: 68px;
  height: 68px;
  border-radius: 16px;
  background-size: cover;
  background-position: center;
}

.music-box-copy strong,
.music-box-copy p,
.music-box-copy span {
  display: block;
}

.music-box-copy p,
.music-box-copy span {
  margin: 2px 0 0;
}

.snapshot-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

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

.snapshot-card,
.activity-item,
.result-card,
.song-showcase-card,
.weekly-slate-card,
.week-block,
.game-card,
.team-card {
  padding: 18px;
}

.weekly-slate-card {
  background:
    radial-gradient(circle at top right, rgba(54, 92, 255, 0.12), transparent 34%),
    radial-gradient(circle at bottom left, rgba(255, 92, 138, 0.14), transparent 36%),
    radial-gradient(circle at 80% 90%, rgba(255, 190, 59, 0.12), transparent 28%),
    var(--panel-strong);
}

.snapshot-card strong,
.team-record,
.score-row strong {
  font-size: 1.2rem;
}

form,
.stack-form,
.mini-form,
.matchup-form,
.form-section {
  display: grid;
  gap: 10px;
}

.stack-form,
.matchup-form {
  margin-top: 18px;
}

.inline-actions {
  margin-top: 16px;
  align-items: stretch;
}

.mini-form {
  flex: 1;
}

input,
select,
textarea,
button {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(54, 92, 255, 0.16);
  padding: 13px 14px;
  font: inherit;
}

input,
select,
textarea {
  background: #ffffff;
  color: var(--text);
}

select option {
  color: #1d1633;
  background: #ffffff;
}

.select-fallback-row {
  margin-top: 10px;
  display: grid;
  gap: 8px;
}

.select-fallback-controls,
.select-fallback-picks {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}

.select-fallback-button {
  width: auto;
  min-width: 96px;
  flex: 0 0 auto;
}

.select-fallback-status {
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(54, 92, 255, 0.12);
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
  font-weight: 600;
}

.select-fallback-status span {
  color: var(--muted);
  font-weight: 500;
}

.select-fallback-picks .tab-button {
  width: auto;
  min-width: 120px;
  flex: 0 0 auto;
}

input::placeholder,
textarea::placeholder {
  color: #6b6780;
}

button {
  background: linear-gradient(135deg, #365cff 0%, #ff5c8a 36%, #e63946 62%, #ff7b6b 82%, #ffbe3b 100%);
  color: white;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  box-shadow: 0 14px 28px rgba(54, 92, 255, 0.18);
}

button:hover {
  transform: translateY(-1px);
}

.ghost-button,
.ghost-action {
  width: auto;
  background: rgba(255, 255, 255, 0.88);
  color: var(--text);
  box-shadow: none;
}

.nav-link,
.cta-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(54, 92, 255, 0.12);
  background: rgba(255, 255, 255, 0.84);
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.nav-link:hover,
.cta-link:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 92, 138, 0.26);
  box-shadow: 0 12px 24px rgba(61, 49, 102, 0.1);
}

.nav-link.active {
  background: linear-gradient(135deg, #1f3d9f 0%, #365cff 18%, #ff5c8a 54%, #e63946 74%, #ff7b6b 88%, #ffbe3b 100%);
  color: white;
  border-color: transparent;
}

.small-action,
.ghost-action,
.song-chip-button,
.tab-button {
  width: auto;
  padding: 10px 14px;
  border-radius: 999px;
}

.tab-button {
  background: rgba(255, 255, 255, 0.88);
  color: var(--text);
  box-shadow: none;
  border: 1px solid rgba(54, 92, 255, 0.12);
}

.tab-button.is-active {
  background: linear-gradient(135deg, #1f3d9f 0%, #365cff 18%, #ff5c8a 54%, #e63946 74%, #ff7b6b 88%, #ffbe3b 100%);
  color: white;
  border-color: transparent;
  box-shadow: 0 14px 28px rgba(54, 92, 255, 0.18);
}

.viewer-switch,
.toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

.viewer-switch select,
.toggle input {
  width: auto;
}

.viewer-switch select {
  min-width: 150px;
}

.is-hidden,
.admin-only.is-hidden {
  display: none;
}

.is-disabled {
  opacity: 0.55;
}

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

.team-card-detailed,
.standings-row {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 246, 237, 0.96));
}

.team-card[data-team-href] {
  cursor: pointer;
  transition: transform 140ms ease, box-shadow 140ms ease, border-color 140ms ease;
}

.team-card[data-team-href]:hover,
.team-card[data-team-href]:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(61, 49, 102, 0.16);
  border-color: rgba(255, 92, 138, 0.28);
}

.owner-team-card {
  text-decoration: none;
  text-align: left;
  width: 100%;
}

.owner-team-card-active {
  border-color: rgba(54, 92, 255, 0.46) !important;
  box-shadow: 0 24px 42px rgba(54, 92, 255, 0.18) !important;
}

.team-record {
  color: var(--teal);
}

.roster-list,
.pick-list,
.chip-list,
.draft-order,
.activity-list,
.matchup-results {
  gap: 10px;
  margin-top: 14px;
}

.tag,
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  max-width: 100%;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(54, 92, 255, 0.08);
  color: var(--text);
  border: 1px solid rgba(54, 92, 255, 0.14);
  font-size: 0.92rem;
}

.tag.gold {
  background: rgba(255, 213, 103, 0.12);
  border-color: rgba(255, 213, 103, 0.22);
}

.tag.orange {
  background: rgba(255, 159, 67, 0.14);
  border-color: rgba(255, 159, 67, 0.26);
}

.draft-order {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.matchup-form {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.matchup-form button {
  grid-column: span 4;
}

.result-card.winner {
  border-color: rgba(255, 190, 59, 0.5);
  box-shadow: 0 18px 34px rgba(255, 190, 59, 0.14);
}

.score-line {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin: 6px 0;
}

.winner-hero {
  display: grid;
  grid-template-columns: 1.6fr 0.8fr;
  gap: 18px;
  margin-top: 18px;
  padding: 22px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(135deg, rgba(18, 21, 63, 0.96), rgba(54, 92, 255, 0.86) 34%, rgba(255, 92, 138, 0.88) 72%, rgba(255, 190, 59, 0.28) 120%);
  color: white;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
}

.winner-team {
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffe28c;
}

.winner-summary,
.winner-hero-score p {
  color: rgba(255, 255, 255, 0.82);
}

.winner-hero-score {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.winner-hero-score strong {
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  line-height: 1;
}

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

.winner-card {
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(54, 92, 255, 0.14);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 244, 236, 0.95));
  box-shadow: 0 16px 32px rgba(61, 49, 102, 0.1);
}

.winner-card strong {
  display: block;
  font-size: 1.2rem;
  margin: 8px 0 6px;
}

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

.winner-card-meta {
  color: var(--accent-deep);
  font-weight: 700;
}

.week-block {
  gap: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 246, 237, 0.94));
}

.week-badges {
  gap: 8px;
}

.team-artwork {
  height: 120px;
  border-radius: 18px;
  background-size: cover;
  background-position: center;
  margin: 12px 0;
  border: 1px solid rgba(54, 92, 255, 0.14);
}

.cover-art-frame {
  background-size: contain !important;
  background-repeat: no-repeat;
  background-position: center;
  background-color: rgba(8, 8, 14, 0.96);
}

.team-logo {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(54, 92, 255, 0.16);
  margin-bottom: 10px;
  box-shadow: 0 10px 22px rgba(54, 92, 255, 0.12);
}

.team-logo-large {
  width: 96px;
  height: 96px;
}

.artist-thumb {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(54, 92, 255, 0.16);
  flex-shrink: 0;
}

.artist-thumb-large {
  width: 160px;
  height: 160px;
}

.media-preview-grid {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.team-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 14px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(54, 92, 255, 0.14);
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
}

.team-release-strip {
  margin-top: 14px;
}

.team-release-label {
  margin: 0 0 8px;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.team-release-items {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.team-release-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255,255,255,0.96), rgba(255, 239, 233, 0.96));
  border: 1px solid rgba(230, 57, 70, 0.14);
  color: var(--text);
  font-weight: 700;
  font-size: 0.9rem;
}

.team-release-thumb {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  flex-shrink: 0;
}

.creator-dock {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 244, 236, 0.95));
  border: 1px solid rgba(54, 92, 255, 0.16);
  box-shadow: 0 16px 32px rgba(61, 49, 102, 0.14);
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
}

.creator-dock small {
  display: block;
  color: var(--muted);
  font-weight: 600;
}

.art-preview {
  margin-top: 14px;
}

.art-preview-card {
  height: 180px;
  border-radius: 22px;
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(54, 92, 255, 0.14);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.24);
}

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

.team-profile-shell {
  display: grid;
  gap: 22px;
}

.team-profile-hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 20px;
  padding: 24px;
  border-radius: 28px;
  border: 1px solid rgba(54, 92, 255, 0.14);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 243, 234, 0.96));
}

.team-profile-copy h2 {
  font-family: "Instrument Serif", serif;
  font-size: clamp(2.3rem, 5vw, 4rem);
  margin-top: 10px;
}

.team-profile-copy p {
  color: var(--muted);
}

.team-profile-art {
  min-height: 300px;
  border-radius: 24px;
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(54, 92, 255, 0.14);
}

.game-card-head {
  align-items: center;
}

.matchup-team-card {
  padding: 12px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 242, 233, 0.82));
  border: 1px solid rgba(54, 92, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.75);
}

.matchup-team-top,
.game-clash-head,
.game-team-badge {
  display: flex;
  align-items: center;
}

.matchup-team-top,
.game-team-badge {
  gap: 10px;
  margin-bottom: 12px;
}

.game-clash-head {
  gap: 12px;
  flex-wrap: wrap;
}

.game-team-badge {
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(54, 92, 255, 0.12);
  box-shadow: 0 10px 18px rgba(61, 49, 102, 0.08);
}

.game-team-badge span {
  font-weight: 700;
  font-size: 0.92rem;
}

.matchup-team-logo {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  box-shadow: 0 10px 18px rgba(57, 34, 95, 0.18);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.7rem;
  font-weight: 700;
}

.status-live {
  background: rgba(255, 92, 138, 0.12);
  color: #b22c59;
  border: 1px solid rgba(255, 92, 138, 0.22);
}

.status-final {
  background: rgba(255, 190, 59, 0.14);
  color: var(--gold);
  border: 1px solid rgba(255, 190, 59, 0.24);
}

.status-scheduled {
  background: rgba(17, 17, 17, 0.06);
  color: var(--text);
  border: 1px solid rgba(17, 17, 17, 0.1);
}

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

.game-theme-grid span {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 6px;
}

.game-theme-grid strong {
  font-size: 1rem;
}

.game-scoreboard {
  display: grid;
  gap: 8px;
  margin: 14px 0;
  padding: 12px;
  border-radius: 18px;
  background: rgba(54, 92, 255, 0.04);
  border: 1px solid rgba(54, 92, 255, 0.12);
}

.score-row {
  align-items: center;
}

.hero-stage {
  background:
    radial-gradient(circle at top left, rgba(93, 211, 158, 0.24), transparent 22%),
    radial-gradient(circle at 20% 78%, rgba(255, 123, 107, 0.24), transparent 18%),
    radial-gradient(circle at 88% 18%, rgba(255, 190, 59, 0.18), transparent 18%),
    radial-gradient(circle at 58% 10%, rgba(230, 57, 70, 0.18), transparent 18%),
    radial-gradient(circle at 80% 84%, rgba(255, 92, 138, 0.2), transparent 22%),
    linear-gradient(135deg, rgba(14, 20, 58, 0.98), rgba(26, 19, 50, 0.97) 36%, rgba(54, 92, 255, 0.74) 100%);
  color: white;
}

body.song-takeover-home .hero-stage {
  background:
    linear-gradient(180deg, rgba(6, 11, 30, 0.24), rgba(6, 11, 30, 0.48)),
    radial-gradient(circle at top left, color-mix(in srgb, var(--takeover-b, #5dd39e) 28%, transparent), transparent 22%),
    radial-gradient(circle at 82% 14%, color-mix(in srgb, var(--takeover-a, #365cff) 34%, transparent), transparent 24%),
    radial-gradient(circle at 62% 80%, color-mix(in srgb, var(--takeover-c, #e63946) 24%, transparent), transparent 22%),
    var(--takeover-cover, none) center/cover no-repeat,
    linear-gradient(135deg, rgba(14, 20, 58, 0.98), rgba(26, 19, 50, 0.97) 36%, rgba(54, 92, 255, 0.74) 100%);
}

.hero-stage .hero-text,
.hero-stage .eyebrow,
.hero-stage .hero-text-small {
  color: rgba(255, 255, 255, 0.86);
}

.hero-stage .nav-link {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.14);
  color: white;
}

.hero-stage .nav-link.active {
  background: linear-gradient(135deg, #365cff 0%, #ff5c8a 46%, #e63946 68%, #ff7b6b 84%, #ffbe3b 100%);
}

.hero-stage-panel .stage-stat {
  background: rgba(255, 255, 255, 0.12);
  color: white;
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: none;
}

.hero-stage-panel .stat-label {
  color: rgba(255, 255, 255, 0.74);
}

.hero-text-small {
  margin: 8px 0 0;
}

.now-playing-visualizer {
  display: flex;
  align-items: end;
  gap: 6px;
  height: 58px;
  margin-top: 14px;
  padding: 10px 12px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05)),
    rgba(10, 14, 34, 0.24);
  border: 1px solid rgba(255, 255, 255, 0.18);
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.visualizer-label {
  margin: 12px 0 0;
  color: rgba(255, 244, 214, 0.82);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
}

.visualizer-bar {
  flex: 1 1 0;
  min-width: 6px;
  height: 28%;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 226, 140, 0.96), rgba(255, 92, 138, 0.96) 58%, rgba(54, 92, 255, 0.96) 100%);
  box-shadow: 0 0 18px rgba(255, 190, 59, 0.22);
  transform-origin: bottom;
  transition: height 120ms linear, opacity 160ms ease;
  opacity: 0.78;
}

.now-playing-visualizer.is-active .visualizer-bar {
  opacity: 1;
}

.stage-dashboard {
  margin-top: 26px;
}

.stage-panel {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 244, 236, 0.96));
}

body.song-takeover-home .stage-panel {
  background:
    radial-gradient(circle at top right, color-mix(in srgb, var(--takeover-a, #365cff) 10%, transparent), transparent 28%),
    radial-gradient(circle at 0% 100%, color-mix(in srgb, var(--takeover-b, #5dd39e) 11%, transparent), transparent 24%),
    radial-gradient(circle at 78% 22%, color-mix(in srgb, var(--takeover-c, #e63946) 9%, transparent), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 244, 255, 0.96));
  border-color: color-mix(in srgb, var(--takeover-a, #365cff) 18%, rgba(54, 92, 255, 0.14));
}

.brand-banner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
  margin-top: 18px;
  padding: 18px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 92, 138, 0.12), rgba(230, 57, 70, 0.14), rgba(255, 123, 107, 0.14), rgba(255, 190, 59, 0.12));
  border: 1px solid rgba(255, 255, 255, 0.14);
}

body.song-takeover-home .brand-banner {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), color-mix(in srgb, var(--takeover-a, #365cff) 18%, transparent), color-mix(in srgb, var(--takeover-c, #e63946) 16%, transparent), color-mix(in srgb, var(--takeover-b, #5dd39e) 16%, transparent));
}

.brand-banner-copy strong {
  display: block;
  font-size: 1.15rem;
  color: var(--text);
}

.brand-banner-copy p {
  margin: 6px 0 0;
  color: var(--muted);
}

.hero-logo-card {
  display: grid;
  gap: 14px;
  padding: 18px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(54, 92, 255, 0.14), rgba(255, 92, 138, 0.16), rgba(230, 57, 70, 0.14), rgba(255, 123, 107, 0.16));
  border: 1px solid rgba(255, 255, 255, 0.16);
}

body.song-takeover-home .hero-logo-card {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), color-mix(in srgb, var(--takeover-a, #365cff) 20%, transparent), color-mix(in srgb, var(--takeover-c, #e63946) 18%, transparent), color-mix(in srgb, var(--takeover-b, #5dd39e) 18%, transparent));
}

.hero-logo-card img {
  width: 100%;
  max-width: 320px;
  border-radius: 24px;
  justify-self: center;
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.36);
  background: rgba(2, 4, 12, 0.92);
  object-fit: contain;
}

.hero-logo-card strong {
  font-size: 1.2rem;
  color: #ffe28c;
}

.hero-logo-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.content-hero {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 18px;
  margin-top: 18px;
  padding: 24px;
  border-radius: 28px;
  border: 1px solid rgba(54, 92, 255, 0.14);
  background:
    radial-gradient(circle at top right, rgba(54, 92, 255, 0.14), transparent 28%),
    radial-gradient(circle at 8% 92%, rgba(255, 92, 138, 0.12), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.99), rgba(255, 244, 236, 0.97));
}

body.song-takeover-home .content-hero {
  background:
    radial-gradient(circle at top right, color-mix(in srgb, var(--takeover-a, #365cff) 14%, transparent), transparent 28%),
    radial-gradient(circle at 8% 92%, color-mix(in srgb, var(--takeover-c, #e63946) 12%, transparent), transparent 28%),
    radial-gradient(circle at 86% 86%, color-mix(in srgb, var(--takeover-b, #5dd39e) 12%, transparent), transparent 24%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.99), rgba(244, 247, 255, 0.97));
}

.content-hero-main h2 {
  font-family: "Instrument Serif", serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  margin-top: 8px;
}

.content-hero-side {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(54, 92, 255, 0.12);
}

.content-hero strong,
.content-hero p,
.content-hero span,
.content-hero h2 {
  color: var(--text);
}

.content-hero-side strong {
  font-size: 3rem;
  line-height: 1;
}

.song-of-week-spotlight {
  display: grid;
  gap: 18px;
  margin-top: 18px;
  padding: 26px;
  border-radius: 30px;
  border: 1px solid rgba(255, 190, 59, 0.28);
  background:
    radial-gradient(circle at top left, rgba(255, 190, 59, 0.24), transparent 24%),
    radial-gradient(circle at 92% 12%, rgba(255, 92, 138, 0.16), transparent 24%),
    radial-gradient(circle at 62% 24%, rgba(230, 57, 70, 0.18), transparent 24%),
    radial-gradient(circle at 84% 84%, rgba(54, 92, 255, 0.2), transparent 28%),
    linear-gradient(135deg, rgba(35, 24, 62, 0.98), rgba(62, 37, 84, 0.96) 44%, rgba(25, 42, 91, 0.96) 100%);
  box-shadow: 0 28px 70px rgba(41, 31, 72, 0.28);
  overflow: hidden;
  position: relative;
}

body.song-takeover-home .song-of-week-spotlight {
  border-color: color-mix(in srgb, var(--takeover-b, #5dd39e) 36%, rgba(255, 190, 59, 0.28));
  background:
    radial-gradient(circle at top left, color-mix(in srgb, var(--takeover-b, #5dd39e) 24%, transparent), transparent 24%),
    radial-gradient(circle at 92% 12%, color-mix(in srgb, var(--takeover-a, #365cff) 18%, transparent), transparent 24%),
    radial-gradient(circle at 62% 24%, color-mix(in srgb, var(--takeover-c, #e63946) 20%, transparent), transparent 24%),
    radial-gradient(circle at 84% 84%, color-mix(in srgb, var(--takeover-a, #365cff) 22%, transparent), transparent 28%),
    linear-gradient(135deg, rgba(23, 28, 74, 0.98), rgba(42, 32, 76, 0.96) 44%, rgba(14, 68, 98, 0.94) 100%);
}

.song-of-week-spotlight::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, 0.12) 38%, transparent 48%),
    linear-gradient(transparent 0%, rgba(255, 255, 255, 0.02) 100%);
}

.song-award-marquee,
.song-award-actions,
.song-award-artist {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.song-award-marquee {
  position: relative;
  z-index: 1;
}

.song-award-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 245, 217, 0.96);
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
}

.song-award-grid {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: 22px;
  position: relative;
  z-index: 1;
}

.song-award-main h2,
.song-award-main .winner-label,
.song-award-main p,
.song-award-main strong,
.song-award-side p,
.song-award-side strong,
.song-award-side span {
  color: white;
}

.song-award-main h2 {
  font-family: "Instrument Serif", serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 0.94;
  margin: 8px 0 14px;
}

.song-award-subline {
  font-size: 1.1rem;
  color: rgba(255, 245, 217, 0.84);
  margin-bottom: 10px;
}

.song-award-quote {
  max-width: 640px;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 18px;
}

.song-award-cover-shell {
  position: relative;
  min-height: 420px;
  border-radius: 28px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.24);
}

.song-award-cover {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.song-award-cover-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 8, 18, 0.04), rgba(7, 8, 18, 0.42) 62%, rgba(7, 8, 18, 0.88) 100%);
}

.song-award-plaque {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 24px;
  background: rgba(14, 16, 34, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(14px);
}

.song-award-plaque strong {
  display: block;
  font-size: 1.08rem;
  margin-bottom: 4px;
}

.song-award-plaque p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.song-award-actions {
  margin-top: 18px;
}

.song-award-socials {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.song-award-social {
  padding: 14px 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.song-award-social span {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 231, 173, 0.84);
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
}

.song-award-social strong {
  display: block;
  font-size: 1.3rem;
  line-height: 1;
}

.song-award-community {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.song-award-comment-box {
  display: grid;
  gap: 10px;
}

.song-award-comment-box textarea {
  min-height: 92px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.song-award-comment-box textarea::placeholder {
  color: rgba(255, 255, 255, 0.56);
}

.song-award-comments {
  display: grid;
  gap: 10px;
}

.song-award-comment {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.song-award-comment strong {
  display: block;
  margin-bottom: 6px;
  font-size: 0.95rem;
}

.song-award-comment p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.song-award-side {
  display: grid;
  gap: 18px;
  align-content: start;
}

.song-award-artist {
  align-items: center;
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.song-award-artist strong {
  display: block;
  font-size: 1.4rem;
  margin-bottom: 6px;
}

.song-award-artist p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.song-award-stats {
  display: grid;
  gap: 14px;
}

.song-award-stat {
  padding: 18px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.song-award-stat span {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 231, 173, 0.86);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
}

.song-award-stat strong {
  display: block;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1;
  margin-bottom: 8px;
}

.song-award-stat p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
}

.content-song-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

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

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

.artist-playlist-item {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 16px;
  align-items: center;
}

.artist-playlist-cover {
  height: 120px;
  border-radius: 18px;
}

.artist-playlist-copy {
  display: grid;
  gap: 6px;
}

.featured-record-grid .cover-art-frame {
  height: 220px;
  border-radius: 22px;
}

.song-showcase-head {
  display: grid;
  gap: 8px;
}

.song-showcase-head strong,
.weekly-slate-card strong {
  font-size: 1.15rem;
}

.song-showcase-sub {
  min-height: 42px;
}

.weekly-slate-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.media-short-grid,
.media-live-grid {
  display: grid;
  gap: 18px;
  margin-top: 18px;
}

.media-spotlight-panel,
.media-feed-panel,
.media-live-rail-panel,
.media-composer-panel {
  position: relative;
  overflow: hidden;
}

.media-spotlight-panel::after,
.media-feed-panel::after,
.media-live-rail-panel::after,
.media-composer-panel::after {
  content: "";
  position: absolute;
  inset: auto -120px -140px auto;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 123, 107, 0.16), transparent 66%);
  pointer-events: none;
}

.media-featured-short {
  margin-top: 18px;
}

.media-featured-card {
  position: relative;
  overflow: hidden;
  min-height: 460px;
  border-radius: 30px;
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(54, 92, 255, 0.14);
  box-shadow: 0 28px 56px rgba(61, 49, 102, 0.18);
}

.media-featured-backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(8, 10, 28, 0.84), rgba(23, 18, 45, 0.5) 48%, rgba(8, 10, 28, 0.88) 100%),
    linear-gradient(180deg, rgba(255, 123, 107, 0.12), rgba(0, 0, 0, 0));
}

.media-featured-layout,
.media-featured-copy,
.media-featured-side,
.media-trending-strip,
.media-feed-summary,
.media-featured-actions,
.media-featured-audio,
.media-trending-card {
  display: grid;
}

.media-featured-layout {
  position: relative;
  z-index: 1;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 22px;
  min-height: 460px;
  padding: 26px;
  align-items: end;
}

.media-featured-copy,
.media-featured-side {
  gap: 16px;
}

.media-featured-copy {
  align-content: end;
}

.media-featured-copy h3,
.media-featured-copy p,
.media-featured-copy strong,
.media-featured-copy span,
.media-featured-audio strong,
.media-featured-audio p,
.media-featured-stat strong,
.media-featured-stat span,
.media-featured-stat p {
  color: white;
}

.media-featured-copy h3 {
  font-family: "Instrument Serif", serif;
  font-size: clamp(3rem, 6vw, 5.2rem);
  line-height: 0.92;
  margin: 0;
}

.media-featured-subline {
  margin: 0;
  font-size: 1.08rem;
  color: rgba(255, 235, 201, 0.9);
}

.media-featured-caption {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.media-featured-actions {
  grid-auto-flow: column;
  justify-content: start;
  gap: 10px;
}

.media-featured-side {
  align-content: end;
}

.media-featured-stat {
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
}

.media-featured-stat span {
  display: block;
  margin-bottom: 8px;
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 235, 201, 0.84);
}

.media-featured-stat strong {
  display: block;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1;
}

.media-featured-audio {
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.media-featured-audio p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.media-trending-strip {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.media-trending-card {
  grid-template-columns: auto auto 1fr;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border-radius: 24px;
  text-decoration: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 247, 241, 0.96));
  border: 1px solid rgba(54, 92, 255, 0.14);
  box-shadow: 0 18px 34px rgba(61, 49, 102, 0.1);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.media-trending-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 123, 107, 0.28);
  box-shadow: 0 22px 40px rgba(61, 49, 102, 0.14);
}

.media-trending-rank {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(54, 92, 255, 0.14), rgba(255, 123, 107, 0.2));
  color: var(--accent-deep);
  font-weight: 800;
}

.media-trending-copy strong {
  display: block;
}

.media-trending-copy p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.media-feed-summary {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.media-summary-card {
  padding: 16px 18px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 247, 241, 0.96));
  border: 1px solid rgba(54, 92, 255, 0.12);
}

.media-summary-card span {
  display: block;
  margin-bottom: 8px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
}

.media-summary-card strong {
  display: block;
  font-size: 1.7rem;
  line-height: 1;
  margin-bottom: 8px;
}

.media-summary-card p {
  margin: 0;
  color: var(--muted);
}

.media-summary-card-strong {
  background:
    radial-gradient(circle at top right, rgba(255, 123, 107, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 242, 233, 0.96));
}

.media-feed-stack {
  grid-template-columns: 1fr;
  max-width: 760px;
  margin-inline: auto;
}

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

.media-short-card,
.media-live-card {
  border-radius: 28px;
  border: 1px solid rgba(54, 92, 255, 0.14);
  box-shadow: 0 22px 44px rgba(61, 49, 102, 0.14);
}

.media-live-card {
  padding: 18px;
  background:
    radial-gradient(circle at top right, rgba(255, 190, 59, 0.14), transparent 28%),
    radial-gradient(circle at 0% 100%, rgba(255, 92, 138, 0.1), transparent 22%),
    radial-gradient(circle at 80% 12%, rgba(230, 57, 70, 0.1), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 244, 236, 0.95));
}

.media-live-card-top,
.media-live-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.media-live-card-top {
  align-items: center;
  margin-bottom: 12px;
}

.media-live-card-top strong {
  display: block;
  margin-top: 8px;
}

.media-live-meta {
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 0.92rem;
}

.media-live-meta span {
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(54, 92, 255, 0.06);
  border: 1px solid rgba(54, 92, 255, 0.1);
}

.media-short-card {
  padding: 14px;
  background:
    radial-gradient(circle at top right, rgba(255, 92, 138, 0.1), transparent 32%),
    radial-gradient(circle at bottom left, rgba(255, 123, 107, 0.1), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(255, 248, 241, 0.96));
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.media-short-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 123, 107, 0.28);
  box-shadow: 0 28px 56px rgba(61, 49, 102, 0.18);
}

.media-short-visual {
  position: relative;
  display: grid;
  align-content: space-between;
  min-height: 720px;
  padding: 18px;
  border-radius: 24px;
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(54, 92, 255, 0.12);
  overflow: hidden;
  box-shadow: inset 0 -120px 120px rgba(22, 22, 36, 0.34);
}

.media-short-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(14, 12, 32, 0.14), rgba(14, 12, 32, 0.12) 18%, rgba(14, 12, 32, 0.22) 48%, rgba(14, 12, 32, 0.88) 100%);
}

.media-short-topline,
.media-short-overlay,
.media-short-meta-bar,
.media-short-actions,
.media-short-audio-row,
.media-short-chip-row,
.media-short-side {
  position: relative;
  z-index: 1;
}

.media-short-topline,
.media-short-meta-bar,
.media-short-chip-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.media-short-topline {
  justify-content: space-between;
  align-items: start;
}

.media-short-posted {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}

.media-short-overlay {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: end;
}

.media-short-copy h3,
.media-short-copy p,
.media-short-copy strong,
.media-short-copy span,
.media-short-audio-row p {
  color: white;
}

.media-short-copy h3 {
  font-family: "Instrument Serif", serif;
  font-size: clamp(2.3rem, 5vw, 3.8rem);
  line-height: 0.94;
  margin: 12px 0 10px;
}

.media-short-subline {
  margin-bottom: 10px;
  color: rgba(255, 239, 202, 0.92);
  font-size: 1.05rem;
}

.media-short-caption {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.82);
}

.media-short-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 241, 207, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
}

.media-short-audio-row {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  padding: 12px 14px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(14px);
}

.media-short-audio-row strong {
  display: block;
  margin-bottom: 4px;
}

.media-short-audio-row p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.media-short-side {
  display: grid;
  gap: 12px;
  align-items: end;
}

.media-short-side-stat {
  min-width: 108px;
  padding: 12px 14px;
  border-radius: 20px;
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
}

.media-short-side-stat strong,
.media-short-side-stat span {
  display: block;
  color: white;
}

.media-short-side-stat strong {
  font-size: 1.2rem;
  margin-bottom: 4px;
}

.media-short-side-stat span {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 240, 205, 0.88);
}

.media-short-side-stat-strong {
  background: linear-gradient(180deg, rgba(255, 190, 59, 0.24), rgba(255, 123, 107, 0.2), rgba(255, 92, 138, 0.16));
}

.media-short-meta-bar {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.92rem;
}

.media-short-meta-bar span {
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(54, 92, 255, 0.06);
  border: 1px solid rgba(54, 92, 255, 0.1);
}

.media-short-actions {
  margin-top: 14px;
}

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

a {
  color: inherit;
}

.helper-text,
.mini-note {
  margin: 0;
  color: #4c4467;
  font-size: 0.92rem;
  line-height: 1.45;
}

@media (max-width: 980px) {
  .hero,
  .dashboard,
  .snapshot-grid,
  .list-columns,
  .matchup-form,
  .winner-hero,
  .winner-grid,
  .matchup-split,
  .weekly-games-grid,
  .game-theme-grid,
  .content-hero,
  .content-song-grid,
  .weekly-slate-grid,
  .media-short-grid,
  .media-live-grid,
  .snapshot-grid-compact,
  .brand-banner,
  .team-profile-hero {
    grid-template-columns: 1fr;
  }

  .artist-playlist-grid {
    grid-template-columns: 1fr;
  }

  .artist-playlist-item {
    grid-template-columns: 1fr;
  }

  .song-award-grid {
    grid-template-columns: 1fr;
  }

  .song-award-socials {
    grid-template-columns: 1fr;
  }

  .media-featured-layout,
  .media-trending-strip,
  .media-feed-summary {
    grid-template-columns: 1fr;
  }

  .song-award-cover-shell {
    min-height: 320px;
  }

  .media-short-visual {
    min-height: 560px;
  }

  .media-short-overlay {
    grid-template-columns: 1fr;
  }

  .media-short-side {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
  }

  .matchup-form button,
  .panel-wide {
    grid-column: auto;
  }

  .page-shell {
    width: min(100% - 20px, 1400px);
  }
}
