:root {
  --bg: #05050a;
  --bg-elev: #0f1021;
  --card: rgba(255, 255, 255, 0.05);
  --text: #fbfbff;
  --text-soft: #acaec8;
  --line: rgba(255, 255, 255, 0.12);
  --accent: #f8d628;
  --accent-2: #8f4cff;
  --accent-3: #25c8ff;
  --radius-lg: 26px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 85% 0%, rgba(143, 76, 255, 0.2), transparent 40%),
    radial-gradient(circle at 10% 35%, rgba(248, 214, 40, 0.12), transparent 45%),
    linear-gradient(180deg, #080814 0%, #06070f 35%, #04040a 100%);
  color: var(--text);
  font-family: "Manrope", sans-serif;
  scroll-behavior: smooth;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  width: 100%;
  height: auto;
  display: block;
}

.site-shell {
  width: 100%;
  margin: 0;
  padding: 0 0 60px;
}

.topbar {
  position: sticky;
  top: 14px;
  z-index: 15;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(4, 4, 12, 0.66);
  backdrop-filter: blur(12px);
  margin: 14px 18px 0;
}

.nav-hidden {
  display: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 0.9rem;
}

.brand-logo {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  object-fit: contain;
  border: none;
  background: transparent;
  filter: brightness(0) saturate(100%) invert(88%) sepia(81%) saturate(815%) hue-rotate(334deg)
    brightness(104%) contrast(95%);
}

.brand-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(248, 214, 40, 0.18);
}

.main-nav {
  display: inline-flex;
  gap: 18px;
}

.main-nav a {
  color: var(--text-soft);
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.main-nav a:hover {
  color: var(--text);
}

.live-banner {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.78rem;
  color: var(--text-soft);
}

.live-banner strong {
  color: var(--accent);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.live-banner span {
  white-space: nowrap;
}

.live-banner-chat {
  color: #d8dbef;
  font-size: 0.76rem;
  font-weight: 700;
}

.live-banner b {
  color: var(--text);
  font-size: 0.95rem;
}

.btn {
  border: none;
  border-radius: 999px;
  padding: 10px 18px;
  font-family: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary,
.btn-glow {
  color: #08080d;
  background: linear-gradient(120deg, var(--accent), #ffea72);
  box-shadow: 0 8px 24px rgba(248, 214, 40, 0.28);
}

.btn-ghost {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

main {
  display: grid;
  gap: 42px;
  margin-top: 18px;
  padding: 0 18px;
}

.radio-station {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  padding: clamp(12px, 3vw, 26px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.radio-station.active {
  opacity: 1;
  visibility: visible;
}

.radio-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 2, 7, 0.8);
  backdrop-filter: blur(8px);
}

.radio-panel {
  position: relative;
  z-index: 1;
  width: min(1140px, 100%);
  height: min(88vh, 820px);
  border-radius: 24px;
  border: 1px solid var(--line);
  padding: clamp(16px, 3vw, 28px);
  background:
    radial-gradient(circle at 20% 0%, rgba(143, 76, 255, 0.22), transparent 45%),
    radial-gradient(circle at 84% 10%, rgba(248, 214, 40, 0.2), transparent 44%),
    rgba(6, 6, 15, 0.95);
  box-shadow: var(--shadow);
  overflow: auto;
}

.radio-close {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  font: inherit;
  font-weight: 700;
  padding: 8px 14px;
  cursor: pointer;
  margin-left: auto;
  display: block;
}

.radio-panel h2 {
  font-size: clamp(1.7rem, 4vw, 3rem);
  max-width: 18ch;
}

.radio-panel p {
  color: #d4d8ef;
  max-width: 65ch;
  line-height: 1.6;
}

.live-chat-welcome {
  position: absolute;
  right: clamp(12px, 2.2vw, 20px);
  top: clamp(66px, 10vw, 94px);
  z-index: 3;
  width: min(340px, calc(100% - 24px));
  border: 1px solid rgba(248, 214, 40, 0.45);
  border-radius: 14px;
  padding: 12px;
  background:
    radial-gradient(circle at 100% 0%, rgba(248, 214, 40, 0.2), transparent 45%),
    rgba(8, 10, 20, 0.97);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.42);
}

.live-chat-welcome-kicker {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 800;
}

.live-chat-welcome h3 {
  margin-top: 5px;
  font-size: 1rem;
}

.live-chat-welcome p {
  margin: 6px 0 0;
  color: #d8dbef;
  font-size: 0.84rem;
  line-height: 1.45;
}

.live-chat-welcome button {
  margin-top: 10px;
  border: none;
  border-radius: 999px;
  color: #08080d;
  background: linear-gradient(120deg, var(--accent), #ffea72);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 800;
  padding: 8px 14px;
  cursor: pointer;
}

.live-chat-profile-form {
  margin-top: 10px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.live-chat-profile-form input {
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
  padding: 10px 12px;
  font: inherit;
}

.live-chat-profile-status {
  margin: 8px 0 0;
  color: #ffb8b8;
  font-size: 0.78rem;
  min-height: 1.1em;
}

.station-grid {
  margin-top: 12px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 14px;
}

.station-player,
.station-platforms,
.radio-link-slots {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
}

.station-player {
  padding: 14px;
}

.station-visual {
  height: 160px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 15% 20%, rgba(143, 76, 255, 0.45), transparent 38%),
    radial-gradient(circle at 80% 20%, rgba(248, 214, 40, 0.32), transparent 38%),
    rgba(6, 8, 16, 0.95);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 7px;
  padding: 18px;
}

.station-visual span {
  width: 7px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--accent-3), var(--accent));
  animation: radioEq 1.5s ease-in-out infinite;
  animation-play-state: paused;
}

.station-visual.is-playing span {
  animation-play-state: running;
}

.station-visual span:nth-child(3n) {
  animation-delay: 0.2s;
}

.station-visual span:nth-child(2n) {
  animation-delay: 0.4s;
}

@keyframes radioEq {
  0%,
  100% {
    height: 14px;
    opacity: 0.55;
  }
  50% {
    height: 82px;
    opacity: 1;
  }
}

.station-now-playing {
  margin-top: 12px;
}

.station-label {
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 0.72rem;
  color: var(--accent);
  margin: 0;
}

.station-now-playing h3 {
  margin-top: 6px;
  font-size: 1.3rem;
}

.station-now-playing p {
  margin-top: 6px;
  margin-bottom: 0;
  color: var(--text-soft);
}

.song-pair-grid {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.song-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  padding: 10px;
  min-height: 104px;
}

.song-card-label {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #c0c5df;
}

.song-card h4 {
  margin-top: 6px;
  margin-bottom: 5px;
  font-size: 0.92rem;
  line-height: 1.35;
  color: #f4f5ff;
}

.song-card p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.82rem;
}

.song-card-current {
  box-shadow: inset 0 0 0 1px rgba(248, 214, 40, 0.28);
}

.now-playing-card {
  margin-top: 10px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.03);
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

.now-playing-art {
  width: 108px;
  height: 108px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
}

.now-playing-meta {
  min-width: 0;
}

.now-playing-meta #now-playing-track {
  margin: 0;
  color: #f4f5ff;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.45;
}

.now-playing-timeline {
  margin-top: 10px;
}

.timeline-bar {
  width: 100%;
  height: 6px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
}

.timeline-bar span {
  display: block;
  height: 100%;
  width: 0%;
  border-radius: 999px;
  background: linear-gradient(120deg, var(--accent), #fff08f);
  transition: width 0.15s linear;
}

.timeline-time {
  margin-top: 7px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.76rem;
  color: #c7cbe4;
  font-weight: 700;
}

.station-playlist {
  margin-top: 12px;
  border-radius: 12px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.03);
}

.station-playlist-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.station-playlist h4 {
  margin: 0;
  font-size: 1rem;
  font-family: "Syne", sans-serif;
}

.station-playlist-head span {
  font-size: 0.82rem;
  color: var(--text-soft);
}

.radio-playlist {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
  display: grid;
  gap: 7px;
  max-height: 300px;
  overflow-y: auto;
  scroll-behavior: smooth;
}

.radio-playlist li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 10px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.02);
  cursor: pointer;
  transition: background 0.2s ease;
}

.radio-playlist li.active {
  background: rgba(248, 214, 40, 0.12);
}

.radio-playlist li.active .playlist-track {
  color: #fff8cc;
}

.radio-playlist li:focus-visible {
  outline: 2px solid rgba(248, 214, 40, 0.75);
  outline-offset: 2px;
}

.playlist-track {
  color: #f0f1fb;
  font-weight: 700;
}

.playlist-artist {
  color: var(--text-soft);
  font-size: 0.84rem;
}

@media (max-width: 720px) {
  .song-pair-grid {
    grid-template-columns: 1fr;
  }

  .now-playing-card {
    grid-template-columns: 80px minmax(0, 1fr);
    gap: 9px;
  }

  .now-playing-art {
    width: 80px;
    height: 80px;
  }

  .now-playing-meta #now-playing-track {
    font-size: 0.92rem;
  }
}

.radio-audio {
  display: none;
}

.radio-control-btn {
  margin-top: 12px;
  width: 100%;
  border: none;
  border-radius: 999px;
  padding: 12px 16px;
  font: inherit;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: #08080d;
  background: linear-gradient(120deg, var(--accent), #ffea72);
  box-shadow: 0 8px 24px rgba(248, 214, 40, 0.28);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.radio-control-btn:hover {
  transform: translateY(-1px);
}

.radio-control-btn:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.85);
  outline-offset: 2px;
}

.radio-hint {
  margin-top: 8px;
  margin-bottom: 0;
  color: #b6b9d5;
  font-size: 0.84rem;
}

.station-platforms {
  padding: 16px;
  display: grid;
  align-content: start;
  gap: 9px;
}

.station-platforms-playlist {
  margin-top: 14px;
}

.playlist-note {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.82rem;
}

.radio-live-playlist {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
  max-height: 420px;
  overflow-y: auto;
}

.live-playlist-item {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.02);
  padding: 8px 10px;
  display: grid;
  gap: 2px;
}

.live-playlist-item.active {
  border-color: rgba(248, 214, 40, 0.58);
  background: rgba(248, 214, 40, 0.12);
}

.live-playlist-title {
  color: #f1f2ff;
  font-size: 0.87rem;
  font-weight: 700;
  line-height: 1.34;
}

.live-playlist-artist {
  color: var(--text-soft);
  font-size: 0.79rem;
}

.station-platforms h3,
.radio-link-slots h3 {
  font-size: 1.1rem;
}

.platform-link {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 11px 12px;
  background: rgba(255, 255, 255, 0.04);
  color: #e6e8f8;
  font-weight: 700;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.platform-link:hover {
  transform: translateY(-1px);
  border-color: rgba(248, 214, 40, 0.65);
}

.radio-link-slots {
  margin-top: 12px;
  padding: 14px;
}

.radio-link-slots p {
  margin-top: 6px;
  margin-bottom: 10px;
  color: var(--text-soft);
}

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

.link-slot-grid article {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.02);
  display: grid;
  gap: 5px;
}

.link-slot-grid strong {
  font-size: 0.82rem;
  color: #eef0ff;
}

.link-slot-grid span {
  font-size: 0.8rem;
  color: #aeb2d0;
  overflow-wrap: anywhere;
}

.live-room-chat {
  display: grid;
  gap: 10px;
}

.live-room-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.live-room-head h3 {
  font-size: 1.08rem;
}

.live-chat-identity {
  margin: 0;
  color: #f0f2ff;
  font-size: 0.84rem;
  font-weight: 700;
}

.live-chat-rules {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.8rem;
}

.live-chat-status {
  margin: 0;
  color: #fbd971;
  font-size: 0.84rem;
  min-height: 1.2em;
}

.live-chat-status.is-danger {
  color: #ff9f9f;
}

.live-chat-messages {
  margin: 0;
  padding: 8px;
  list-style: none;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 12px;
  background: rgba(5, 7, 16, 0.85);
  display: grid;
  gap: 8px;
  max-height: 250px;
  overflow-y: auto;
}

.live-chat-message {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 7px 9px;
  background: rgba(255, 255, 255, 0.02);
  display: grid;
  gap: 3px;
}

.live-chat-message.me {
  border-color: rgba(248, 214, 40, 0.48);
  background: rgba(248, 214, 40, 0.11);
}

.live-chat-message-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.live-chat-name {
  font-size: 0.78rem;
  color: #f4f5ff;
  font-weight: 800;
}

.live-chat-time {
  font-size: 0.73rem;
  color: #aeb2d0;
}

.live-chat-text {
  margin: 0;
  color: #dde0f4;
  font-size: 0.86rem;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.live-chat-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}

.live-chat-form input {
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
  padding: 10px 13px;
  font: inherit;
}

.live-chat-form button {
  border: none;
  border-radius: 999px;
  color: #08080d;
  background: linear-gradient(120deg, var(--accent), #ffea72);
  font: inherit;
  font-weight: 800;
  padding: 0 16px;
  cursor: pointer;
}

.live-chat-form button:disabled,
.live-chat-form input:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

body.radio-open {
  overflow: hidden;
}

.hero {
  position: relative;
  min-height: 780px;
  border-radius: 0;
  overflow: hidden;
  border: none;
  box-shadow: var(--shadow);
}

.hero-background {
  position: absolute;
  inset: 0;
  background-image:
    url("uploads/ChatGPT Image Jun 14, 2026, 05_58_33 PM.png"),
    url("https://images.unsplash.com/photo-1492684223066-81342ee5ff30?auto=format&fit=crop&w=1800&q=80");
  background-size: cover;
  background-position: center center;
  filter: saturate(1.05) contrast(1.02);
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 24% 30%, rgba(143, 76, 255, 0.42), transparent 43%),
    radial-gradient(circle at 72% 45%, rgba(248, 214, 40, 0.36), transparent 45%),
    linear-gradient(180deg, rgba(6, 7, 14, 0.46), rgba(3, 3, 9, 0.93));
}

.hero-content {
  position: absolute;
  z-index: 1;
  max-width: none;
  width: 100%;
  min-height: 100%;
  padding: 0 36px 40px;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hero-watermark {
  position: absolute;
  left: 36px;
  right: 36px;
  bottom: 26px;
  z-index: 0;
  max-width: 760px;
  opacity: 0.9;
  pointer-events: none;
}

.hero-watermark .wave {
  margin-top: 14px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  font-size: 0.69rem;
  font-weight: 800;
  margin-bottom: 12px;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Syne", sans-serif;
  line-height: 1.08;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 4.7rem);
  margin-bottom: 12px;
}

h1 span {
  color: var(--accent-2);
}

.hero-copy {
  max-width: 56ch;
  color: #d0d2e6;
  font-size: 1.02rem;
  line-height: 1.7;
}

.hero-actions {
  margin-top: 0;
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.stats-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 540px;
}

.stat-card {
  background: rgba(7, 9, 20, 0.78);
  border-radius: var(--radius-sm);
  border: none;
  padding: 14px;
}

.stat-card h3 {
  font-size: 1.15rem;
}

.stat-card p {
  margin: 6px 0 0;
  font-size: 0.84rem;
  color: var(--text-soft);
}

.wave {
  margin-top: 34px;
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 36px;
}

.wave span {
  width: 5px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--accent-3), var(--accent));
  animation: pulse 1.35s ease-in-out infinite;
}

.wave span:nth-child(3n) {
  animation-delay: 0.25s;
}

.wave span:nth-child(2n) {
  animation-delay: 0.45s;
}

@keyframes pulse {
  0%,
  100% {
    height: 8px;
    opacity: 0.6;
  }
  50% {
    height: 100%;
    opacity: 1;
  }
}

.section {
  display: grid;
  gap: 22px;
  padding: 6px 0;
}

.is-hidden {
  display: none;
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.section h2 {
  font-size: clamp(1.7rem, 4vw, 2.6rem);
}

.pill-row {
  display: inline-flex;
  gap: 8px;
}

.pill {
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-soft);
  padding: 8px 14px;
  font-size: 0.8rem;
  font-weight: 700;
}

.pill.active {
  color: #09090f;
  background: linear-gradient(120deg, var(--accent), #ffe461);
}

.cards {
  display: grid;
  gap: 16px;
}

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

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

.mix-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: none;
  min-height: 250px;
}

.mix-loading {
  opacity: 0.9;
}

.mix-card img {
  height: 100%;
  object-fit: cover;
}

.mix-overlay {
  position: absolute;
  inset: auto 0 0;
  padding: 14px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.72));
}

.mix-overlay h3 {
  font-size: 1.07rem;
}

.mix-overlay p {
  margin: 4px 0 0;
  color: #dcdef0;
  font-size: 0.84rem;
}

.mixes-subhead {
  margin-top: 10px;
}

.mixes-subhead h3 {
  font-size: 1.3rem;
}

.mixes-subhead p {
  margin: 6px 0 0;
  color: var(--text-soft);
  font-size: 0.9rem;
}

.mix-card-empty {
  min-height: 160px;
  display: grid;
  place-items: center;
  padding: 16px;
  background: rgba(255, 255, 255, 0.03);
}

.mix-card-empty p {
  margin: 0;
  text-align: center;
  color: var(--text-soft);
}

.split {
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 26px;
}

.portrait-card {
  position: relative;
  border-radius: var(--radius-lg);
  border: none;
  overflow: hidden;
  min-height: 430px;
}

.portrait-card img {
  height: 100%;
  object-fit: cover;
}

.portrait-chip {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: min(240px, 70%);
  border-radius: var(--radius-sm);
  padding: 14px;
  background: linear-gradient(140deg, rgba(143, 76, 255, 0.35), rgba(4, 7, 15, 0.78));
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.portrait-chip strong {
  font-size: 1.8rem;
  font-family: "Syne", sans-serif;
}

.portrait-chip p {
  margin: 4px 0 0;
  color: #d7daf0;
  font-size: 0.86rem;
}

.split-copy p {
  color: #d8daee;
  line-height: 1.72;
}

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

.mini-grid article {
  border: none;
  border-radius: var(--radius-sm);
  padding: 12px;
  background: rgba(255, 255, 255, 0.03);
}

.mini-grid h3 {
  font-size: 0.98rem;
}

.mini-grid p {
  margin: 5px 0 0;
  font-size: 0.82rem;
  color: var(--text-soft);
}

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

.product-card {
  border-radius: var(--radius-sm);
  border: none;
  background: rgba(255, 255, 255, 0.03);
  padding: 10px;
  display: grid;
  gap: 12px;
}

.product-card img {
  border-radius: 10px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.product-card h3 {
  font-size: 1rem;
}

.product-card p {
  margin: 3px 0 0;
  color: var(--text-soft);
  font-size: 0.82rem;
}

.chip {
  justify-self: flex-end;
  border: 1px solid rgba(143, 76, 255, 0.6);
  background: rgba(143, 76, 255, 0.16);
  color: #e8ddff;
  border-radius: 999px;
  padding: 6px 11px;
  font-size: 0.74rem;
  font-weight: 700;
}

.quote {
  border: none;
  border-radius: var(--radius-lg);
  padding: 34px 24px;
  background:
    radial-gradient(circle at 50% 40%, rgba(248, 214, 40, 0.15), transparent 55%),
    rgba(7, 9, 18, 0.84);
  display: grid;
  gap: 16px;
}

.quote-carousel {
  position: relative;
  min-height: 170px;
}

.quote-slide {
  display: none;
  text-align: center;
}

.quote-slide.is-active {
  display: block;
}

.quote-kicker {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
  color: var(--accent);
}

.quote-slide h3 {
  margin: 8px 0 6px;
  font-size: clamp(1.2rem, 3vw, 1.9rem);
  font-family: "Syne", sans-serif;
}

.quote-slide p {
  margin: 0;
  max-width: 66ch;
  margin-inline: auto;
  color: var(--text-soft);
}

.quote-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.quote-nav {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  padding: 8px 14px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.quote-dots {
  display: inline-flex;
  gap: 6px;
}

.quote-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.25);
}

.quote-dot.is-active {
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(248, 214, 40, 0.18);
}

.quote-footnote {
  margin: 0;
  text-align: center;
  color: var(--text-soft);
  font-size: 0.9rem;
}

.event-card {
  display: grid;
  border: none;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
}

.station-player,
.station-platforms,
.radio-link-slots {
  border: none;
}

.event-card img {
  height: 180px;
  object-fit: cover;
}

.event-card div {
  padding: 13px;
  display: grid;
  gap: 10px;
}

.event-card h3 {
  font-size: 1.05rem;
}

.event-card p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.84rem;
}

.gallery-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 150px;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  border: none;
}

.gallery-grid img:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-grid img:nth-child(5) {
  grid-column: span 2;
}

.newsletter {
  margin-top: 6px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px 20px;
  background:
    radial-gradient(circle at 30% 10%, rgba(143, 76, 255, 0.18), transparent 45%),
    rgba(8, 9, 19, 0.86);
}

.newsletter p {
  color: var(--text-soft);
  max-width: 60ch;
  margin: 8px auto;
}

.newsletter-form {
  margin-top: 18px;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.newsletter-form input {
  min-width: 280px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
  padding: 11px 15px;
  font: inherit;
}

.footer {
  margin-top: 42px;
  border-top: 1px solid var(--line);
  padding: 24px 18px 0;
}

.footer-top h2 {
  text-align: center;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 16px;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.social-grid a {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px;
  text-align: center;
  color: var(--text-soft);
  background: rgba(255, 255, 255, 0.03);
  transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.social-grid a:hover {
  color: var(--text);
  transform: translateY(-1px);
  border-color: rgba(248, 214, 40, 0.6);
}

.footer-bottom {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--text-soft);
  font-size: 0.9rem;
}

.footer-links {
  display: inline-flex;
  gap: 14px;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }

  .live-banner {
    margin-left: auto;
  }

  .split,
  .three-up,
  .product-grid,
  .social-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .link-slot-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }

  .gallery-grid img:nth-child(1),
  .gallery-grid img:nth-child(5) {
    grid-column: span 1;
    grid-row: span 1;
  }
}

@media (max-width: 720px) {
  .site-shell {
    padding: 0 0 40px;
  }

  .topbar {
    border-radius: 16px;
    position: static;
    margin: 10px 12px 0;
    justify-content: center;
  }

  .live-banner {
    width: 100%;
    justify-content: center;
    order: 3;
  }

  .brand-logo {
    width: 36px;
    height: 36px;
  }

  main {
    padding: 0 12px;
  }

  .footer {
    padding: 24px 12px 0;
  }

  .hero {
    min-height: 660px;
    border-radius: 22px;
  }

  .hero-content {
    padding: 34px 18px 24px;
  }

  .stats-grid,
  .two-up,
  .split,
  .mini-grid,
  .three-up,
  .product-grid,
  .social-grid,
  .footer-bottom {
    grid-template-columns: 1fr;
    display: grid;
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn {
    width: fit-content;
  }

  .newsletter-form input {
    min-width: 100%;
  }

  .quote {
    padding: 24px 16px;
  }

  .quote-carousel {
    min-height: auto;
  }

  .quote-controls {
    flex-wrap: wrap;
  }

  .live-chat-form {
    grid-template-columns: 1fr;
  }

  .live-chat-welcome {
    position: static;
    width: 100%;
    margin-top: 8px;
    margin-bottom: 10px;
  }
}
