:root {
  --bg: #050505;
  --bg-secondary: #111111;
  --bg-tertiary: rgba(255, 255, 255, 0.04);
  --text: #ffffff;
  --text-secondary: #aaaaaa;
  --accent: #d6ff2f;
  --accent-soft: rgba(214, 255, 47, 0.16);
  --live: #ff3b1f;
  --live-soft: rgba(255, 59, 31, 0.18);
  --border: rgba(255, 255, 255, 0.08);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  --radius-lg: 28px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --max-width: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Space Grotesk", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(214, 255, 47, 0.09), transparent 30%),
    radial-gradient(circle at top right, rgba(255, 59, 31, 0.1), transparent 24%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.88), rgba(5, 5, 5, 0.97)),
    var(--bg);
  color: var(--text);
}

button,
a {
  font: inherit;
}

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

.app-shell {
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
}

.background-atmosphere {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(180deg, rgba(5, 5, 5, 0.32), rgba(5, 5, 5, 0.88)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 1080'%3E%3Cdefs%3E%3ClinearGradient id='g' x1='0' y1='0' x2='0' y2='1'%3E%3Cstop offset='0%25' stop-color='%23d9d9d9' stop-opacity='.22'/%3E%3Cstop offset='100%25' stop-color='%23ffffff' stop-opacity='.08'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cg fill='url(%23g)'%3E%3Cpath d='M80 780h170V520l-26-22-59 48v-81l-35-22-50 34z'/%3E%3Cpath d='M290 780h220V470l-38-26-50 36v-90l-40-25-92 70z'/%3E%3Cpath d='M540 780h205V540l-28-24-42 34v-70l-45-30-90 67z'/%3E%3Cpath d='M770 780h250V450l-36-31-61 49v-112l-45-31-108 83z'/%3E%3Cpath d='M1040 780h250V510l-34-28-50 40v-78l-42-29-124 95z'/%3E%3Crect x='0' y='770' width='1440' height='310' opacity='.55'/%3E%3C/g%3E%3Cg stroke='%23ffffff' stroke-opacity='.18' stroke-width='4' fill='none'%3E%3Cpath d='M134 780V572h60v208M340 780V530h66v250M596 780V573h64v207M845 780V481h70v299M1116 780V548h70v232'/%3E%3C/g%3E%3C/svg%3E");
  background-size: cover;
  background-position: center bottom;
  opacity: 0.12;
  filter: blur(5px) saturate(0.6);
  transform: scale(1.05);
  pointer-events: none;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  max-width: var(--max-width);
  margin: 0 auto 0.65rem;
  padding: 1.05rem 1rem 0.9rem;
  background:
    linear-gradient(135deg, rgba(214, 255, 47, 0.08), transparent 30%),
    radial-gradient(circle at 14% 30%, rgba(255, 59, 31, 0.14), transparent 20%),
    linear-gradient(180deg, rgba(10, 10, 10, 0.96), rgba(8, 8, 8, 0.88));
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

.topbar h1,
.hero-brand h2,
.detail-hero h2,
.section-header h2 {
  margin: 0;
  font-family: "Fraunces", serif;
  letter-spacing: -0.03em;
}

.brand-lockup {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.15rem;
}

.brand-lockup::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 50%;
  width: 230px;
  height: 230px;
  transform: translateY(-50%);
  background: radial-gradient(circle, rgba(214, 255, 47, 0.14), transparent 60%);
  filter: blur(10px);
  pointer-events: none;
}

.brand-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.45rem;
  max-width: 21rem;
}

.site-logo {
  position: relative;
  z-index: 1;
  width: 196px;
  height: 196px;
  object-fit: contain;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(214, 255, 47, 0.16);
  padding: 0.6rem;
  box-shadow:
    0 22px 55px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(214, 255, 47, 0.08);
}

.brand-lockup .eyebrow {
  margin-bottom: 0;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
}

.brand-subtitle {
  margin: 0;
  color: var(--text);
  font-family: "Fraunces", serif;
  font-size: clamp(1rem, 1.8vw, 1.45rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.eyebrow,
.section-kicker,
.detail-meta,
.fact-caption {
  margin: 0 0 0.35rem;
  color: var(--accent);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.topbar-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.header-socials {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.about-socials {
  margin-top: 1rem;
  margin-bottom: 0.75rem;
}

.social-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  padding: 0;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  text-decoration: none;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.social-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.social-button svg {
  width: 22px;
  height: 22px;
  display: block;
  fill: currentColor;
}

.social-button-facebook {
  background: #1877f2;
  border-color: #1877f2;
  color: #ffffff;
}

.social-button-facebook:hover {
  background: #0f6ae5;
  border-color: #0f6ae5;
  color: #ffffff;
}

.social-button-instagram {
  background: linear-gradient(135deg, #f58529, #feda77 18%, #dd2a7b 52%, #8134af 76%, #515bd4);
  border-color: #dd2a7b;
  color: #ffffff;
}

.social-button-instagram:hover {
  background: linear-gradient(135deg, #e07a25, #f7c95f 18%, #c8246d 52%, #712b9e 76%, #4650bf);
  border-color: #c8246d;
  color: #ffffff;
}

.updated-badge,
.current-date,
.pill,
.story-tag,
.card-tag,
.sponsor-chip,
.status-pill {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.5rem 0.85rem;
  font-size: 0.85rem;
  line-height: 1;
  background: rgba(255, 255, 255, 0.04);
}

.updated-badge {
  background: var(--accent-soft);
  border-color: rgba(214, 255, 47, 0.24);
  color: var(--accent);
}

.app {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1rem 7rem;
}

.top-nav {
  position: sticky;
  top: 0;
  z-index: 19;
  display: flex;
  gap: 0.6rem;
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto 1rem;
  padding: 0.7rem;
  overflow-x: auto;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  background: rgba(12, 12, 12, 0.82);
  backdrop-filter: blur(16px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
}

.page {
  display: grid;
  gap: 1.1rem;
  padding-bottom: 1rem;
}

.hero {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 34px;
  padding: 1.6rem;
  background:
    radial-gradient(circle at 18% 20%, rgba(214, 255, 47, 0.24), transparent 28%),
    radial-gradient(circle at 82% 0%, rgba(255, 59, 31, 0.24), transparent 24%),
    linear-gradient(135deg, rgba(22, 22, 22, 0.98), rgba(8, 8, 8, 0.92));
  box-shadow: var(--shadow);
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto auto -40px -30px;
  width: 230px;
  height: 230px;
  background: radial-gradient(circle, rgba(214, 255, 47, 0.18), transparent 65%);
  filter: blur(8px);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 33px;
  border: 1px solid rgba(214, 255, 47, 0.08);
  pointer-events: none;
}

.hero-grid,
.detail-layout,
.page-grid,
.about-grid,
.sponsor-grid {
  display: grid;
  gap: 1rem;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.85fr);
  align-items: stretch;
}

.hero-brand {
  position: relative;
  display: grid;
  gap: 1rem;
  padding: 0.4rem;
  min-width: 0;
}

.hero-title-row {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.hero-brand h2 {
  font-size: clamp(2.2rem, 5vw, 4.8rem);
  line-height: 0.92;
  max-width: 9ch;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero-copy {
  max-width: 56ch;
  color: #d7d7d7;
  font-size: 1.08rem;
  line-height: 1.6;
  min-width: 0;
}

.hero-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(214, 255, 47, 0.16);
  background: rgba(214, 255, 47, 0.12);
  color: var(--accent);
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-badge-soft {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.08);
  color: #f2f2f2;
}

.hero-cta-panel {
  display: grid;
  gap: 0.9rem;
  max-width: 38rem;
  padding: 1rem;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    radial-gradient(circle at left center, rgba(214, 255, 47, 0.12), transparent 55%);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
  min-width: 0;
}

.hero-tease {
  padding: 0;
  border-radius: 18px;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.hero-tease strong {
  display: block;
  color: #ffffff;
  font-size: 1.14rem;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  width: fit-content;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  background: var(--live-soft);
  border: 1px solid rgba(255, 59, 31, 0.26);
  color: #ffd4cb;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.live-dot {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 999px;
  background: var(--live);
  box-shadow: 0 0 0 0 rgba(255, 59, 31, 0.62);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 59, 31, 0.55);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(255, 59, 31, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 59, 31, 0);
  }
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: stretch;
}

.hero-play-button {
  min-width: 240px;
  min-height: 64px;
  font-size: 1.06rem;
  justify-content: center;
}

.hero-play-button .equalizer {
  flex: 0 0 auto;
}

.hero-play-button [data-player-action] {
  display: inline-flex;
  justify-content: center;
  min-width: 8.5rem;
  text-align: center;
}

.hero-secondary-button {
  min-height: 64px;
}

.button,
.card-hitarea,
.nav-button,
.list-button,
.inline-link {
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.65rem;
  min-height: 56px;
  padding: 0.95rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 18px;
  text-decoration: none;
  color: var(--text);
  background: rgba(255, 255, 255, 0.07);
  cursor: pointer;
}

.button-with-eq {
  position: relative;
}

.button-with-eq .equalizer {
  position: absolute;
  left: 1.1rem;
}

.button-label {
  display: inline-block;
  width: 100%;
  text-align: center;
}

.button:hover,
.card-hitarea:hover,
.nav-button:hover,
.list-button:hover,
.inline-link:hover {
  transform: translateY(-2px);
}

.button:active,
.card-hitarea:active,
.nav-button:active,
.list-button:active,
.inline-link:active {
  transform: translateY(0);
}

.button-primary {
  background: linear-gradient(135deg, #d6ff2f, #bde112);
  color: #071000;
  font-weight: 700;
  box-shadow:
    0 0 0 1px rgba(214, 255, 47, 0.22),
    0 18px 42px rgba(214, 255, 47, 0.22),
    0 0 48px rgba(214, 255, 47, 0.12);
}

.button-secondary {
  border-color: var(--border);
}

.hero-side,
.panel,
.content-card,
.detail-card,
.story-panel,
.fact-panel,
.footer-panel {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(20, 20, 20, 0.88), rgba(10, 10, 10, 0.96));
  box-shadow: var(--shadow);
}

.hero-side {
  padding: 1rem;
  display: grid;
  gap: 0.95rem;
  min-width: 0;
}

.status-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.status-card {
  padding: 1rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
  min-height: 138px;
}

.status-card h3,
.section-header h2,
.detail-card h3,
.footer-panel h3,
.story-panel h3,
.fact-panel h3 {
  margin: 0 0 0.5rem;
}

.status-card p,
.section-intro,
.panel-copy,
.detail-copy,
.footer-copy,
.info-list,
.story-panel p,
.fact-panel p {
  color: var(--text-secondary);
  line-height: 1.55;
}

.equalizer {
  display: inline-flex;
  align-items: flex-end;
  gap: 0.2rem;
  height: 1.2rem;
}

.equalizer span {
  display: block;
  width: 4px;
  border-radius: 999px;
  background: var(--accent);
  animation: bounce 1.1s ease-in-out infinite;
}

.equalizer span:nth-child(1) {
  height: 35%;
}

.equalizer span:nth-child(2) {
  height: 90%;
  animation-delay: 0.1s;
}

.equalizer span:nth-child(3) {
  height: 55%;
  animation-delay: 0.2s;
}

.equalizer span:nth-child(4) {
  height: 100%;
  animation-delay: 0.3s;
}

.equalizer span:nth-child(5) {
  height: 48%;
  animation-delay: 0.4s;
}

@keyframes bounce {
  0%,
  100% {
    transform: scaleY(0.55);
    opacity: 0.55;
  }
  50% {
    transform: scaleY(1);
    opacity: 1;
  }
}

.panel {
  padding: 1rem;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 1rem;
  margin-bottom: 0.9rem;
}

.section-link,
.inline-link {
  color: var(--accent);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  text-decoration: none;
}

.section-note {
  margin-bottom: 1rem;
  padding: 0.9rem 1rem;
  border-radius: 18px;
  border: 1px solid rgba(214, 255, 47, 0.14);
  background: rgba(214, 255, 47, 0.08);
  color: #eef8c1;
  line-height: 1.55;
}

.cards-grid,
.story-grid,
.news-grid,
.sponsor-gallery {
  display: grid;
  gap: 1rem;
}

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

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

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

.content-card {
  overflow: hidden;
}

.card-hitarea {
  width: 100%;
  border: 0;
  padding: 0;
  text-align: left;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.card-image-wrap,
.detail-image,
.feature-image,
.sponsor-hero-image {
  position: relative;
  overflow: hidden;
}

.card-image-wrap {
  aspect-ratio: 16 / 10;
}

.card-image,
.detail-image img,
.feature-image img,
.sponsor-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-image-wrap::after,
.detail-image::after,
.feature-image::after,
.sponsor-hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, 0.68));
}

.card-tag {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 1;
  background: rgba(5, 5, 5, 0.78);
}

.card-body {
  padding: 1rem 1rem 1.1rem;
}

.card-title {
  margin: 0 0 0.45rem;
  font-size: 1.06rem;
}

.card-summary {
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.55;
}

.briefing-list,
.info-list,
.track-list,
.contact-list {
  display: grid;
  gap: 0.7rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.briefing-list li,
.track-list li,
.contact-list li {
  display: flex;
  align-items: start;
  gap: 0.7rem;
  color: var(--text-secondary);
}

.bullet {
  flex: 0 0 auto;
  width: 0.5rem;
  height: 0.5rem;
  margin-top: 0.45rem;
  border-radius: 999px;
  background: var(--accent);
}

.track-list li {
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.track-list li:last-child {
  border-bottom: 0;
}

.track-meta {
  color: var(--text-secondary);
  white-space: nowrap;
}

.feature-card,
.sponsor-highlight,
.about-panel {
  display: grid;
  gap: 1rem;
  padding: 1rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: linear-gradient(160deg, rgba(20, 20, 20, 0.92), rgba(9, 9, 9, 0.96));
  box-shadow: var(--shadow);
}

.support-highlight .hero-actions {
  margin-top: 0.35rem;
}

.media-highlight {
  grid-template-columns: minmax(0, 1fr) 190px;
  align-items: center;
}

.media-highlight-copy {
  min-width: 0;
}

.media-highlight-thumb {
  position: relative;
  overflow: hidden;
  min-height: 154px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.2);
}

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

.media-highlight-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.28));
}

.media-highlight-label {
  position: absolute;
  left: 0.8rem;
  bottom: 0.8rem;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: rgba(5, 5, 5, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.feature-card {
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.82fr);
}


.feature-copy h3,
.sponsor-highlight h3,
.about-panel h3 {
  margin: 0 0 0.6rem;
  font-size: 1.55rem;
}

.entity-title {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.entity-logo-wrap {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.entity-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.35rem;
  background: rgba(255, 255, 255, 0.98);
}

.entity-fallback {
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.feature-copy p,
.sponsor-highlight p,
.about-panel p {
  margin: 0 0 0.8rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.feature-meta {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 0.85rem;
}

.detail-hero {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 32px;
  min-height: 340px;
  box-shadow: var(--shadow);
}

.detail-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.76));
}

.detail-hero-content {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  padding: 1.4rem;
}

.detail-hero h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.02;
  max-width: 14ch;
}

.detail-layout,
.page-grid,
.about-grid,
.sponsor-grid {
  grid-template-columns: minmax(0, 1fr) 320px;
}

.detail-card,
.story-panel,
.fact-panel,
.footer-panel,
.about-panel {
  padding: 1rem;
}

.detail-copy {
  margin: 0 0 1rem;
}

.back-button {
  width: fit-content;
}

.list-button {
  width: 100%;
  text-align: left;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 0.9rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  cursor: pointer;
}

.list-button strong {
  display: block;
  margin-bottom: 0.35rem;
}

.sponsor-banner {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  width: fit-content;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  color: inherit;
  text-decoration: none;
}

.sponsor-banner-top {
  margin-top: 0.35rem;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(214, 255, 47, 0.18);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.18);
}

.sponsor-banner strong {
  color: var(--accent);
}

.sponsor-grid .sponsor-hero-image {
  border-radius: var(--radius-lg);
  min-height: 420px;
}

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

.gallery-tile {
  overflow: hidden;
  min-height: 132px;
  border-radius: 18px;
  border: 1px solid var(--border);
}

.gallery-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer-panel {
  margin-bottom: 0.5rem;
}

.bottom-nav {
  position: fixed;
  left: 50%;
  bottom: 1rem;
  z-index: 25;
  display: flex;
  gap: 0.6rem;
  width: min(calc(100% - 1rem), 980px);
  padding: 0.7rem;
  transform: translateX(-50%);
  overflow-x: auto;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 26px;
  background: rgba(12, 12, 12, 0.88);
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.42);
}

.nav-button {
  flex: 1 0 auto;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.55rem;
  min-height: 52px;
  padding: 0.85rem 1rem;
  border: 1px solid transparent;
  border-radius: 18px;
  color: var(--text-secondary);
  background: transparent;
  cursor: pointer;
}

.nav-button.active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(214, 255, 47, 0.28);
  box-shadow: inset 0 0 0 1px rgba(214, 255, 47, 0.08);
}

.nav-accent {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: currentColor;
}

.muted {
  color: var(--text-secondary);
}

.marquee {
  white-space: nowrap;
  overflow: hidden;
  position: relative;
}

.marquee span {
  display: inline-block;
  padding-left: 100%;
  animation: marquee 16s linear infinite;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .feature-card,
  .detail-layout,
  .page-grid,
  .about-grid,
  .sponsor-grid,
  .media-highlight {
    grid-template-columns: 1fr;
  }

  .cards-grid,
  .story-grid,
  .news-grid,
  .sponsor-gallery {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .topbar {
    position: static;
    align-items: start;
    flex-direction: column;
    gap: 0.8rem;
    padding: 0.8rem 0.8rem 0.7rem;
  }

  .brand-lockup {
    align-items: flex-start;
    gap: 0.8rem;
  }

  .brand-lockup::before {
    width: 160px;
    height: 160px;
    left: 0;
  }

  .brand-copy {
    max-width: none;
    gap: 0.35rem;
  }

  .site-logo {
    width: 92px;
    height: 92px;
    padding: 0.35rem;
    border-radius: 18px;
  }

  .brand-subtitle {
    font-size: 0.98rem;
    line-height: 1.18;
  }

  .sponsor-banner-top {
    width: 100%;
    justify-content: center;
    text-align: center;
    padding: 0.8rem 1rem;
  }

  .topbar-meta {
    width: 100%;
    justify-content: space-between;
    gap: 0.55rem;
  }

  .header-socials {
    order: 3;
  }

  .social-button {
    width: 44px;
    height: 44px;
  }

  .top-nav {
    position: static;
    width: calc(100% - 0.8rem);
    margin-bottom: 0.85rem;
    padding: 0.55rem;
  }

  .hero {
    padding: 1.25rem;
    border-radius: 28px;
  }

  .hero-brand h2 {
    max-width: 12ch;
  }

  .hero-copy {
    font-size: 1rem;
    max-width: 100%;
  }

  .hero-cta-panel {
    padding: 0.85rem;
    border-radius: 20px;
  }

  .hero-tease strong {
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-play-button,
  .hero-secondary-button,
  .hero-actions .button {
    width: 100%;
    min-width: 0;
  }

  .status-grid {
    grid-template-columns: 1fr;
  }

  .app {
    padding-bottom: 2rem;
  }
}

@media (max-width: 520px) {
  body {
    overflow-x: hidden;
  }

  .topbar {
    margin-bottom: 0.45rem;
    padding: 0.7rem 0.7rem 0.6rem;
  }

  .brand-lockup {
    width: 100%;
    align-items: flex-start;
    gap: 0.7rem;
  }

  .site-logo {
    width: 64px;
    height: 64px;
    padding: 0.25rem;
  }

  .brand-copy {
    flex: 1 1 auto;
    gap: 0.3rem;
  }

  .brand-lockup .eyebrow {
    font-size: 0.72rem;
  }

  .brand-subtitle {
    font-size: 0.84rem;
    line-height: 1.15;
  }

  .sponsor-banner-top {
    width: 100%;
    justify-content: center;
    text-align: center;
    padding: 0.72rem 0.85rem;
    font-size: 0.95rem;
  }

  .topbar-meta {
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
    gap: 0.45rem;
  }

  .updated-badge,
  .current-date {
    font-size: 0.72rem;
    padding: 0.42rem 0.62rem;
  }

  .top-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.4rem;
    padding: 0.45rem;
    border-radius: 18px;
    overflow: visible;
  }

  .nav-button {
    min-height: 40px;
    min-width: 0;
    width: 100%;
    padding: 0.58rem 0.65rem;
    font-size: 0.82rem;
    border-radius: 14px;
  }

  .hero {
    padding: 0.9rem;
    border-radius: 22px;
  }

  .hero-brand {
    gap: 0.75rem;
    padding: 0;
  }

  .hero-title-row,
  .hero-badge-row {
    gap: 0.5rem;
  }

  .hero-title-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-brand h2 {
    font-size: clamp(1.65rem, 8vw, 2.15rem);
    max-width: 9ch;
  }

  .hero-badge,
  .live-pill {
    font-size: 0.68rem;
    padding: 0.45rem 0.65rem;
  }

  .hero-badge-row {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-badge {
    max-width: 100%;
  }

  .hero-copy,
  .panel-copy {
    font-size: 0.88rem;
    line-height: 1.45;
  }

  .hero-cta-panel {
    max-width: 100%;
    padding: 0.7rem;
    border-radius: 18px;
  }

  .hero-tease strong {
    font-size: 0.92rem;
  }

  .section-header {
    flex-direction: column;
  }

  .hero-play-button,
  .hero-secondary-button,
  .hero-actions .button {
    min-height: 54px;
  }

  .hero-play-button [data-player-action] {
    min-width: 0;
  }

  .status-card {
    min-height: 118px;
    padding: 0.85rem;
    border-radius: 18px;
  }

  .status-card h3 {
    font-size: 1.05rem;
    line-height: 1.2;
  }

  .status-card p {
    font-size: 0.88rem;
    line-height: 1.45;
  }

  .hero-side {
    padding: 0.85rem;
  }

  .hero-side .panel {
    padding: 0.85rem;
  }

  .track-list li {
    gap: 0.7rem;
    padding: 0.7rem 0;
    align-items: flex-start;
  }

  .track-list li strong {
    display: block;
    font-size: 0.95rem;
    line-height: 1.25;
  }

  .track-meta {
    font-size: 0.78rem;
    white-space: normal;
    text-align: right;
  }

  .marquee {
    white-space: normal;
    overflow: visible;
  }

  .marquee span {
    display: block;
    padding-left: 0;
    animation: none;
  }

  .media-highlight-thumb {
    min-height: 120px;
  }

  .entity-logo-wrap {
    width: 46px;
    height: 46px;
  }
}

@media (max-width: 390px) {
  .app {
    padding-left: 0.7rem;
    padding-right: 0.7rem;
  }

  .topbar,
  .top-nav {
    width: calc(100% - 0.7rem);
  }

  .site-logo {
    width: 56px;
    height: 56px;
  }

  .brand-subtitle {
    font-size: 0.8rem;
  }

  .header-socials {
    gap: 0.4rem;
  }

  .social-button {
    width: 40px;
    height: 40px;
  }

  .hero-brand h2 {
    font-size: clamp(1.5rem, 7.8vw, 1.95rem);
  }

  .hero-copy,
  .panel-copy {
    font-size: 0.84rem;
  }
}
