/* ============================================================
   RUN 013 — dark / orange radio UI  (2002 redesign)
   ============================================================ */

:root {
  --orange: #d8d8d8;
  --orange-bright: #ffffff;
  --acid-green: #B6FF2E;
  --hot-red: #8f1018;
  --bg: #050505;
  --panel: #0b0b0b;
  --card: #111111;
  --card-hi: #191919;
  --border: #292929;
  --text: #f7f7f7;
  --muted: #b4b4b4;
  --muted-dim: #808080;

  --display: "Baloo 2", system-ui, sans-serif;   /* bubbly headline font */
  --body: "Inter", system-ui, sans-serif;
}

.ticker-group span {
  text-shadow:
    0 0 7px rgba(255,255,255,0.28),
    1px 1px 0 #000;
}

.col-center .art-frame {
  border: 4px solid #080808;
  background: #000;
  box-shadow:
    inset 0 0 0 2px rgba(216,216,216,0.34),
    inset 0 0 26px rgba(143,16,24,0.2),
    0 0 0 1px #353535,
    0 12px 34px rgba(0,0,0,0.68),
    0 0 24px rgba(143,16,24,0.25);
}

.col-center .art-frame::after {
  background: linear-gradient(
    90deg,
    transparent,
    #555,
    var(--hot-red),
    #d8d8d8,
    transparent
  );
  box-shadow: 0 -5px 18px rgba(143,16,24,0.34);
}

.col-center .art-img {
  filter: invert(1);
}

.col-center .art-frame {
  background: #000;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scrollbar-width: none;
}

::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.custom-scrollbar {
  position: fixed;
  z-index: 9999;
  top: 0;
  right: 0;
  width: 16px;
  height: 100vh;
  opacity: 0;
  transition: opacity 120ms ease;
}

.custom-scrollbar:hover,
.custom-scrollbar.is-dragging {
  opacity: 1;
}

.custom-scrollbar__thumb {
  position: absolute;
  top: 0;
  right: 2px;
  width: 8px;
  height: 48px;
  background-color: #F47B2A;
  border-radius: 2px;
  cursor: grab;
}

.custom-scrollbar__thumb:hover {
  background-color: #ff8c3c;
}

.custom-scrollbar.is-dragging .custom-scrollbar__thumb {
  cursor: grabbing;
}

html, body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  min-height: 100%;
}

body {
  display: flex;
  justify-content: center;
  padding: 16px 22px;
  transition: background-color 0.45s ease, color 0.45s ease;
}

.shell {
  width: 100%;
  max-width: 1500px;
  min-height: calc(100vh - 32px);
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* ===================== MASTHEAD ===================== */
.masthead {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 0 8px 16px;
  flex-wrap: wrap;
}

.brand-title {
  font-family: var(--display);
  font-weight: 800;
  font-size: 52px;
  line-height: 0.9;
  letter-spacing: 1px;
  color: #F47B2A;
}
.brand-title span { color: #F47B2A; }
.brand-tag {
  font-family: var(--display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 4px;
  color: var(--muted);
  margin-top: 2px;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--panel);
  color: var(--orange);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  transition: background 0.12s ease, border-color 0.12s ease;
}
.nav-toggle:hover {
  background: var(--card-hi);
  border-color: #444;
}
.nav-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--orange);
  transition: transform 0.16s ease, opacity 0.16s ease;
}
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* socials */
.socials {
  display: flex;
  justify-content: center;
  gap: 30px;
}
.social {
  text-decoration: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: transform 0.14s ease;
}
.social:hover { transform: translateY(-3px); }

.social-icon {
  max-width: 56px; max-height: 56px;
  border-radius: 12px;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,0.45));
  padding : 4px;
}

.social-label {
  font-family: var(--display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  color: var(--text);
}

/* ===================== TAB STRIP ===================== */
.tabstrip {
  flex: 1 1 720px;
  display: flex;
  justify-content: flex-end;
  align-self: flex-end;
}

.tabs {
  display: flex;
  justify-content: flex-end;
  width: min(100%, 980px);
  border-bottom: 2px solid var(--border);
}
.tab {
  flex: 1 1 0;
  min-width: 0;
  text-decoration: none;
  font-family: var(--display);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.5px;
  color: var(--text);
  padding: 15px 20px;
  border-right: 1px solid var(--border);
  display: flex;
  align-items: baseline;
  gap: 12px;
  white-space: nowrap;
  transition: background 0.15s ease, color 0.15s ease;
}
.tab:first-child { border-left: 1px solid var(--border); }
.tab .tab-num { color: #F47B2A; font-size: 20px; }
.tab-num { display: none; }
.tab:hover { background: var(--panel); }
.tab.active {
  background: var(--panel);
  color: #fff;
  box-shadow: inset 0 3px 0 #F47B2A;
}
.tab-soon {
  color: var(--muted);
  cursor: not-allowed;
  opacity: 0.72;
  pointer-events: none;
}
.tab-soon:hover { background: transparent; }
.tab-soon-label {
  margin-left: auto;
  padding: 2px 7px;
  border: 1px solid rgba(244,123,42,0.45);
  border-radius: 999px;
  color: var(--orange);
  font-family: var(--body);
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.8px;
}

/* ===================== BROADCAST TICKER ===================== */
.ticker {
  position: relative;
  margin: 0 0 18px;
  background: #060606;
  border: 2px solid #000;
  border-top-color: #4a4a4a;
  border-left-color: #333;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.12),
    inset 0 -8px 16px rgba(244,123,42,0.08),
    0 4px 0 #000;
  overflow: hidden;
}
.ticker::before,
.ticker::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  width: 42px;
  pointer-events: none;
}
.ticker::before {
  left: 0;
  background: linear-gradient(90deg, #060606, rgba(6,6,6,0));
}
.ticker::after {
  right: 0;
  background: linear-gradient(270deg, #060606, rgba(6,6,6,0));
}
.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker-scroll 28.8s linear infinite;
}
.ticker-group {
  display: flex;
  flex: 0 0 auto;
}
.ticker-group span {
  flex: 0 0 auto;
  padding: 8px 18px;
  color: var(--orange);
  font-family: var(--display);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 1.4px;
  white-space: nowrap;
  text-shadow:
    0 0 7px rgba(255, 103, 48, 0.65),
    1px 1px 0 #000;
}
.show-announcement {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: -6px 0 18px;
  padding: 9px 14px;
  border: 1px solid #45151a;
  border-left: 4px solid #8f1018;
  background: linear-gradient(90deg, #10090a, #080808 72%);
  color: var(--text);
  font-family: var(--body);
  font-size: 12px;
  letter-spacing: 1.1px;
  box-shadow: inset 0 0 18px rgba(143,16,24,0.09);
}
.show-announcement[hidden] { display: none; }
.show-announcement-state {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #ff5360;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.4px;
}
.show-announcement-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #8f1018;
  box-shadow: 0 0 8px rgba(255,48,79,0.5);
}
.show-announcement strong {
  color: var(--text);
  font-family: var(--display);
  font-size: 15px;
  letter-spacing: 1.3px;
}
.show-announcement-time { color: var(--muted); }
.show-announcement-station {
  margin-left: auto;
  color: var(--muted-dim);
  font-size: 10px;
  font-weight: 700;
}
.show-announcement.is-live {
  border-color: #8f1018;
  box-shadow: inset 0 0 24px rgba(143,16,24,0.16), 0 0 14px rgba(143,16,24,0.12);
}
.show-announcement.is-live .show-announcement-dot {
  background: var(--hot-red);
  animation: live-dot-pulse 1.2s ease-in-out infinite;
}
@media (max-width: 620px) {
  .show-announcement {
    flex-wrap: wrap;
    gap: 5px 10px;
  }
  .show-announcement-station {
    width: 100%;
    margin-left: 0;
  }
}
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .ticker-track { animation: none; }
  .player-cover::before { animation: none; }
}

/* ===================== LAYOUT ===================== */
.layout {
  flex: 1 1 auto;       /* grow to fill the remaining viewport height */
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(230px, 270px) minmax(420px, 1fr) minmax(260px, 320px);
  align-items: start;   /* don't stretch columns to the tallest one */
  gap: 22px;
}
.col { min-width: 0; }

.col-title {
  font-family: var(--display);
  font-weight: 800;
  font-size: 24px;
  letter-spacing: 0.5px;
  color: #F47B2A;
  margin-bottom: 12px;
}
.col-left > .col-title,
.col-right > .col-title {
  color: #F47B2A;
}

/* ---- release list (left) ---- */
.release-list, .sets-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }

.release {
  display: flex;
  align-items: center;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0;
  cursor: pointer;
  transition: transform 0.12s ease, border-color 0.12s ease, background 0.12s ease;
  overflow: hidden;
}
.release:hover {
  transform: translateX(4px);
  border-color: var(--orange);
  background: var(--orange);
}
.release:hover .rel-cover { border-color: rgba(26,26,26,0.35); }
.release:hover .rel-name { color: #1a1a1a; }
.release:hover .rel-artist { color: #3b2108; }

.rel-link {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px;
  color: inherit;
  text-decoration: none;
}

.rel-cover {
  width: 58px;
  height: 58px;
  display: block;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.12);
  background: #111;
  flex-shrink: 0;
}
.rel-text {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  line-height: 1.1;
}
.rel-name {
  font-family: var(--display);
  font-weight: 700;
  font-size: 18px;
  color: var(--orange);
  letter-spacing: 0.5px;
  overflow-wrap: anywhere;
}
.rel-artist {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.4px;
  color: var(--muted);
  overflow-wrap: anywhere;
}

/* active release => solid orange */
.release.active {
  background: var(--orange);
  border-color: var(--orange);
}
.release.active .rel-cover { border-color: rgba(26,26,26,0.35); }
.release.active .rel-name { color: #1a1a1a; }
.release.active .rel-artist { color: #3b2108; }

/* ---- center column ---- */
.col-center { display: flex; flex-direction: column; gap: 14px; min-height: 0; }

.art-frame {
  --bass-image-scale: 1;
  position: relative;
  isolation: isolate;
  background: #ffffff;
  border: 4px solid #000;
  border-radius: 8px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    inset 0 0 0 2px rgba(244,123,42,0.55),
    inset 0 0 22px rgba(244,123,42,0.16),
    0 10px 30px rgba(0,0,0,0.5),
    0 0 0 1px rgba(244,123,42,0.22);
  overflow: hidden;
  overflow: clip;
  clip-path: inset(0 round 8px);
  contain: paint;
}
.art-image-clip {
  position: relative;
  z-index: 1;
  width: 100%;
  overflow: hidden;
  overflow: clip;
  border-radius: 3px;
  contain: paint;
  line-height: 0;
}
.art-img {
  position: relative;
  display: block;
  width: 100%;
  /* Keep the radio player in the initial desktop viewport. */
  height: clamp(220px, calc(100vh - 530px), 340px);
  object-fit: contain;
  scale: var(--bass-image-scale);
  transition: scale 55ms cubic-bezier(0.2, 0.8, 0.2, 1);
  animation: art-drift 16s ease-in-out infinite alternate;
}
.art-frame::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
  opacity: 0.045;
  background-image:
    repeating-linear-gradient(0deg, rgba(0,0,0,0.2) 0 1px, transparent 1px 5px);
  mix-blend-mode: multiply;
  animation: art-grain 0.8s steps(2) infinite;
}
.art-frame::after {
  content: "";
  position: absolute;
  z-index: 3;
  inset: auto 0 0;
  height: 3px;
  pointer-events: none;
  opacity: 0.35;
  background: linear-gradient(90deg, transparent, var(--orange), var(--hot-red), var(--orange), transparent);
  box-shadow: 0 -5px 16px rgba(255,48,79,0.18);
  transform: scaleX(0.35);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.art-frame.is-playing::after {
  opacity: 1;
  transform: scaleX(1);
  animation: art-glow 1.1s ease-in-out infinite alternate;
}
.art-equalizer {
  position: absolute;
  z-index: 2;
  left: 2%;
  right: 2%;
  bottom: 0;
  height: 42%;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: clamp(1px, 0.25vw, 4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  mask-image: linear-gradient(to top, #000 15%, transparent 100%);
  background:
    radial-gradient(ellipse at 50% 100%, rgba(255,48,79,0.16), transparent 52%),
    linear-gradient(to top, rgba(244,123,42,0.08), transparent 70%);
}
.art-equalizer::after {
  content: "";
  position: absolute;
  left: 4%;
  right: 4%;
  bottom: 5px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--orange), var(--hot-red), var(--orange), transparent);
  box-shadow: 0 0 12px var(--hot-red);
  opacity: 0.7;
}
.art-equalizer span {
  flex: 1 1 0;
  min-width: 2px;
  max-width: 8px;
  height: 3%;
  border-radius: 999px 999px 2px 2px;
  background: linear-gradient(to top, var(--orange) 0 48%, var(--hot-red) 100%);
  box-shadow:
    0 0 5px rgba(244,123,42,0.42),
    0 0 12px rgba(255,48,79,0.18);
  transform-origin: bottom;
  transition: height 55ms linear, opacity 90ms linear;
}
.art-equalizer span:nth-child(3n) {
  background: linear-gradient(to top, var(--hot-red), var(--orange-bright));
}
.art-frame.is-playing .art-equalizer { opacity: 0.32; }
@keyframes art-drift {
  from { transform: scale(1.005) translate3d(-0.2%, 0, 0); }
  to { transform: scale(1.035) translate3d(0.35%, -0.3%, 0); }
}
@keyframes art-grain {
  0% { transform: translate(0, 0); }
  25% { transform: translate(-1%, 1%); }
  50% { transform: translate(1%, -1%); }
  75% { transform: translate(1%, 1%); }
  100% { transform: translate(-1%, -1%); }
}
@keyframes art-glow {
  to { filter: brightness(1.25); box-shadow: 0 -8px 22px rgba(255,48,79,0.38); }
}
@keyframes equalizer-bounce {
  from { height: 18%; }
  to { height: 100%; }
}
@media (prefers-reduced-motion: reduce) {
  .art-img,
  .art-frame::before,
  .art-frame.is-playing::after,
  .art-frame.is-playing .art-equalizer span { animation: none; }
}

/* ---- player ---- */
.player {
  display: grid;
  grid-template-columns: 96px 1fr auto;
  gap: 18px;
  align-items: center;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 22px;
}
.player-cover {
  position: relative;
  isolation: isolate;
  width: 96px;
  height: 96px;
  flex: 0 0 96px;
  margin: 0;
  border-radius: 8px;
  background: linear-gradient(135deg, #3a2a1a, #1d1206);
  border: 0;
  background: #1d1206;
  padding: 2px;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  font-size: 38px;
  color: var(--orange);
}
.player-cover::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -55%;
  background: conic-gradient(
    from 0deg,
    #333 0deg,
    #333 260deg,
    rgba(244,123,42,0.55) 315deg,
    #ffe0c2 338deg,
    rgba(244,123,42,0.55) 352deg,
    #333 360deg
  );
  animation: player-cover-shine 8s linear infinite;
}
@keyframes player-cover-shine {
  to { transform: rotate(1turn); }
}
@media (prefers-reduced-motion: reduce) {
  .player-cover::before { animation: none; }
}
.player-cover img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  background: #080808;
  border-radius: inherit;
}
.player-info { display: flex; flex-direction: column; gap: 9px; min-width: 0; }
.playback-status {
  margin-top: 2px;
  padding: 8px 10px;
  border: 1px solid rgba(255,48,79,0.42);
  border-radius: 7px;
  background: rgba(255,48,79,0.08);
  color: #ff8b9b;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.2px;
}
.playback-status[hidden] { display: none; }
.player.needs-interaction .mini-play {
  outline: 3px solid rgba(255,48,79,0.32);
  outline-offset: 4px;
  animation: playback-action-pulse 1.1s ease-in-out infinite alternate;
}
@keyframes playback-action-pulse {
  to {
    outline-color: rgba(244,123,42,0.7);
    box-shadow: 0 0 22px rgba(244,123,42,0.34);
  }
}
@media (prefers-reduced-motion: reduce) {
  .player.needs-interaction .mini-play { animation: none; }
}
.pi-row { font-size: 15px; font-weight: 600; letter-spacing: 0.5px; }
.pi-now {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  min-width: 0;
}
.pi-key { color: var(--muted); margin-right: 8px; }
.pi-val { color: var(--orange); font-weight: 700; }
.pi-artist {
  color: var(--muted);
  flex-shrink: 0;
  font-size: 13px;
  text-align: right;
}

.pi-scrub { display: flex; align-items: center; gap: 12px; }
.pi-scrub::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--hot-red);
  box-shadow: 0 0 9px rgba(255,48,79,0.9);
  flex-shrink: 0;
}
.mini-play {
  width: 30px; height: 30px;
  border: none; border-radius: 50%;
  background: #F47B2A;
  color: #1a1a1a;
  font-size: 13px;
  cursor: pointer;
  flex-shrink: 0;
  opacity: 0.86;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.1s ease, background 0.1s ease, opacity 0.1s ease;
}
.mini-play:hover { background: #ff8c3c; opacity: 1; transform: scale(1.08); }
.pi-time {
  font-family: var(--body);
  font-variant-numeric: tabular-nums;
  font-size: 14px;
  font-weight: 600;
  color: var(--hot-red);
  text-shadow: 0 0 7px rgba(255,48,79,0.52);
  flex-shrink: 0;
}
.pi-time.live-indicator {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #ff304f;
  font-weight: 800;
  opacity: 1;
  text-shadow:
    0 0 4px rgba(255,48,79,1),
    0 0 10px rgba(255,48,79,0.8);
}
.live-dot {
  position: relative;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #8f1018;
  box-shadow: 0 0 7px rgba(143,16,24,0.6);
  opacity: 0.72;
  animation: player-live-dot-pulse 1.6s ease-in-out infinite;
}
.live-dot::after {
  content: "";
  position: absolute;
  inset: -1px;
  border: 1px solid #8f1018;
  border-radius: inherit;
  animation: live-dot-ring 1.6s ease-out infinite;
}
@keyframes live-dot-pulse {
  0%, 100% { transform: scale(0.88); opacity: 1; }
  50% { transform: scale(1); opacity: 1; }
}
@keyframes player-live-dot-pulse {
  0%, 100% { transform: scale(0.88); opacity: 0.55; }
  50% { transform: scale(1); opacity: 0.78; }
}
@keyframes live-dot-ring {
  0% { transform: scale(1); opacity: 0.7; }
  75%, 100% { transform: scale(2.25); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .show-announcement.is-live .show-announcement-dot,
  .live-dot,
  .live-dot::after { animation: none; }
}
.progress-track {
  flex: 1;
  height: 8px;
  background: #333;
  border-radius: 5px;
  overflow: hidden;
  cursor: pointer;
}
.progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--orange), var(--hot-red));
  border-radius: 5px;
  transition: width 0.2s linear;
}

.player-controls { display: flex; gap: 10px; margin-top: 2px; }
.ctrl {
  min-width: 56px;
  padding: 11px 0;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--card);
  color: var(--text);
  font-size: 15px;
  cursor: pointer;
  transition: background 0.1s ease, transform 0.07s ease, color 0.1s ease;
}
.ctrl:hover { background: var(--card-hi); }
.ctrl:active { transform: translateY(2px); }
.ctrl.lit { background: var(--orange); color: #1a1a1a; border-color: var(--orange); }

.player-badge {
  font-family: var(--display);
  font-weight: 800;
  font-size: 34px;
  color: var(--orange);
  letter-spacing: 1px;
  align-self: flex-start;
  white-space: nowrap;
}

/* ---- artist schedule ---- */
.artist-schedule {
  grid-column: 1 / -1;
  position: relative;
  margin-top: 2px;
  padding: 20px 0 18px 18px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--panel);
  overflow: hidden;
}
.artist-schedule-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
  padding-right: 18px;
}
.artist-schedule-kicker {
  margin-bottom: 2px;
  color: #F47B2A;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.8px;
}
.artist-schedule h2 {
  color: #fff;
  font-family: var(--display);
  font-size: 24px;
  line-height: 1;
  letter-spacing: 0.6px;
}
.artist-schedule h2::after {
  content: "";
  width: 42px;
  height: 2px;
  display: block;
  margin-top: 7px;
  background: #F47B2A;
  border-radius: 999px;
}
.artist-schedule-note {
  padding: 5px 8px;
  border: 1px solid rgba(244,123,42,0.4);
  border-radius: 4px;
  color: #F47B2A;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1px;
  white-space: nowrap;
}
.artist-schedule-actions {
  display: flex;
  align-items: center;
  gap: 7px;
}
.artist-schedule-count {
  min-width: 51px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  letter-spacing: 1px;
  text-align: center;
}
.schedule-scroll-button {
  width: 36px;
  height: 36px;
  display: inline-grid;
  place-items: center;
  border: 1px solid #454545;
  border-radius: 50%;
  background: #292929;
  color: #fff;
  font: 300 24px/1 Arial, sans-serif;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.28);
  transition:
    color 120ms ease,
    border-color 120ms ease,
    background 120ms ease,
    transform 120ms ease,
    opacity 120ms ease;
}
.schedule-scroll-button:hover:not(:disabled) {
  border-color: var(--orange);
  background: var(--orange);
  color: #151515;
  transform: translateY(-1px);
}
.schedule-scroll-button:active:not(:disabled) {
  transform: translateY(1px);
}
.schedule-scroll-button:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}
.schedule-scroll-button:disabled {
  opacity: 0.3;
  cursor: default;
}
.schedule-scroll-next,
.schedule-scroll-prev {
  position: absolute;
  z-index: 6;
  top: 55%;
  width: 48px;
  height: 48px;
  border-color: rgba(255,255,255,0.32);
  background: rgba(12,12,12,0.58);
  font-size: 28px;
  opacity: 0.72;
  box-shadow:
    0 5px 18px rgba(0,0,0,0.5),
    inset 0 0 0 1px rgba(255,255,255,0.08);
  backdrop-filter: blur(5px);
  transform: translateY(-50%);
}
.schedule-scroll-button span {
  display: block;
  margin-top: -2px;
}
.schedule-scroll-next { right: 18px; }
.schedule-scroll-prev { left: 18px; }
.schedule-scroll-next:hover:not(:disabled),
.schedule-scroll-next:focus-visible,
.schedule-scroll-prev:hover:not(:disabled),
.schedule-scroll-prev:focus-visible {
  border-color: var(--orange);
  background: rgba(244,123,42,0.88);
  color: #151515;
  opacity: 1;
  transform: translateY(-50%) scale(1.06);
}
.schedule-scroll-next:active:not(:disabled),
.schedule-scroll-prev:active:not(:disabled) {
  transform: translateY(-50%) scale(0.96);
}
.schedule-scroll-next:disabled,
.schedule-scroll-prev:disabled {
  opacity: 0;
  pointer-events: none;
}
.artist-schedule-grid {
  display: flex;
  gap: 16px;
  padding: 0 18px 8px 0;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  cursor: grab;
  user-select: none;
  opacity: 1;
  transition: opacity 900ms ease-in-out;
}
.artist-schedule-grid.is-loop-resetting {
  opacity: 0.12;
}
.artist-schedule-grid.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
  scroll-behavior: auto;
}
.artist-schedule-grid::-webkit-scrollbar {
  display: none;
}
.artist-schedule::after {
  content: "";
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 18px;
  width: 58px;
  height: calc(100% - 92px);
  background: linear-gradient(to right, transparent, var(--panel));
  pointer-events: none;
  transition: opacity 160ms ease;
}
.artist-schedule::before {
  content: "";
  position: absolute;
  z-index: 4;
  left: 0;
  bottom: 18px;
  width: 58px;
  height: calc(100% - 92px);
  background: linear-gradient(to left, transparent, var(--panel));
  pointer-events: none;
  transition: opacity 160ms ease;
}
.artist-schedule.is-at-start::before {
  opacity: 0;
}
.artist-schedule.is-at-end::after {
  opacity: 0;
}
.artist-schedule-progress {
  height: 3px;
  margin: 5px 18px 0 0;
  overflow: hidden;
  border-radius: 999px;
  background: #303030;
}
.artist-schedule-progress span {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: inherit;
  background: linear-gradient(90deg, #F47B2A, #ff9a58);
  transform: scaleX(0.08);
  transform-origin: left;
  transition: transform 100ms linear;
}
.artist-slot {
  --card-cut: 22px;
  position: relative;
  isolation: isolate;
  flex: 0 0 clamp(230px, 43%, 280px);
  min-width: 0;
  padding: 3px 3px 0;
  border: 0;
  background: transparent;
  scroll-snap-align: start;
  transition: transform 180ms ease, opacity 180ms ease;
}
.artist-slot::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0 0 27px;
  clip-path: polygon(0 0, calc(100% - var(--card-cut)) 0, 100% var(--card-cut), 100% 100%, var(--card-cut) 100%, 0 calc(100% - var(--card-cut)));
  background:
    linear-gradient(135deg, var(--orange), transparent 25%),
    linear-gradient(315deg, var(--hot-red), #292929 30%);
  opacity: 0.78;
  transform: translate(3px, 3px);
  transition: opacity 180ms ease, transform 180ms ease;
}
.artist-slot:hover {
  transform: translateY(-3px);
}
.artist-slot:hover::before {
  opacity: 1;
  transform: translate(5px, 5px);
}
.artist-slot-photo-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  clip-path: polygon(0 0, calc(100% - var(--card-cut)) 0, 100% var(--card-cut), 100% 100%, var(--card-cut) 100%, 0 calc(100% - var(--card-cut)));
  background: #090909;
}
.artist-slot-photo-wrap::before {
  content: "013";
  position: absolute;
  z-index: 2;
  top: 9px;
  right: 8px;
  padding: 4px 6px;
  border-left: 2px solid var(--hot-red);
  background: rgba(0,0,0,0.66);
  color: #fff;
  font-family: var(--display);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
}
.artist-slot-photo-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.08) 42%, rgba(0,0,0,0.9) 100%);
  pointer-events: none;
}
.artist-slot-photo {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform 180ms ease, filter 180ms ease;
}
.artist-slot:hover .artist-slot-photo {
  transform: scale(1.035);
  filter: brightness(1.08);
}
.artist-slot-details {
  position: absolute;
  z-index: 2;
  inset: 0 0 auto;
  aspect-ratio: 1 / 1;
  padding: 14px 15px;
  pointer-events: none;
}
.artist-slot-day {
  display: block;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.2px;
  text-shadow: 0 1px 5px rgba(0,0,0,0.9);
}
.artist-slot-title-stack {
  position: absolute;
  right: 15px;
  bottom: 14px;
  left: 15px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 6px;
}
.artist-slot-name {
  position: relative;
  overflow: hidden;
  margin: 0;
  color: #fff;
  font-family: var(--body);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.08;
  text-shadow: 0 2px 8px rgba(0,0,0,0.9);
}
.artist-slot-name::before {
  content: "";
  width: 30px;
  height: 3px;
  display: block;
  margin-bottom: 7px;
  background: linear-gradient(90deg, #F47B2A, rgba(244,123,42,0.18));
}
.artist-slot-time {
  width: fit-content;
  display: block;
  margin: 0;
  padding: 5px 10px 5px 12px;
  border-left: 3px solid #F47B2A;
  background: linear-gradient(90deg, rgba(244,123,42,0.12), transparent);
  color: #d2d2d2;
  font-size: 12px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.1px;
}
.artist-slot-meta {
  min-height: 35px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  margin-top: 9px;
  padding-right: 2px;
}
.artist-slot-show {
  position: relative;
  z-index: 3;
  align-self: flex-end;
  max-width: 68%;
  overflow: hidden;
  padding: 4px 7px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 4px;
  background: rgba(20,20,20,0.7);
  color: #c8c8c8;
  font-size: 8px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.7px;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow:
    0 2px 7px rgba(0,0,0,0.22),
    inset 0 1px 0 rgba(255,255,255,0.06);
}
.artist-slot.is-live {
  border-color: transparent;
  box-shadow: none;
}
.artist-slot.is-live .artist-slot-photo-wrap {
  box-shadow: 0 0 0 2px var(--hot-red), 0 0 20px rgba(255,48,79,0.2);
}
.artist-slot.is-live .artist-slot-photo-wrap::before {
  display: none;
}
.artist-slot-live {
  position: absolute;
  z-index: 3;
  top: 12px;
  right: 12px;
  padding: 5px 7px;
  border-radius: 999px;
  background: var(--hot-red);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.8px;
}
.artist-schedule-empty {
  grid-column: 1 / -1;
  padding: 16px;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

/* ---- hot sets (right) ---- */
.sets-list { gap: 16px; }

.set {
  position: relative;
  display: flex;
  align-items: center;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0;
  cursor: pointer;
  transition: transform 0.12s ease, border-color 0.12s ease, background 0.12s ease;
  overflow: hidden;
}
.set:hover { transform: translateX(-4px); border-color: #444; background: var(--card-hi); }
.set-link {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 14px 16px;
  color: inherit;
  text-decoration: none;
  position: relative;
  z-index: 1;
}
.set-text { display: flex; flex-direction: column; gap: 5px; line-height: 1.15; z-index: 1; min-width: 0; }
.set-name {
  font-family: var(--display);
  font-weight: 700;
  font-size: 18px;
  color: var(--orange);
  letter-spacing: 0.5px;
  overflow-wrap: anywhere;
}
.set-venue {
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
  font-weight: 600;
  letter-spacing: 0.2px;
}
.set-date {
  width: fit-content;
  margin-top: 2px;
  padding: 3px 8px;
  border: 1px solid rgba(244,123,42,0.38);
  border-radius: 999px;
  font-size: 10px;
  color: var(--orange);
  font-weight: 800;
  letter-spacing: 1px;
  background: rgba(244,123,42,0.08);
}
.set-soon { cursor: default; }
.set-soon:hover { border-color: rgba(244,123,42,0.65); }

/* ===================== ABOUT PAGE ===================== */
.about {
  flex: 1 1 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: 22px;
  align-items: start;
}

.about-panel {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(244,123,42,0.1), transparent 34%),
    repeating-linear-gradient(90deg, transparent 0 47px, rgba(255,255,255,0.018) 48px),
    var(--panel);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding:
    clamp(26px, 3vw, 42px)
    clamp(30px, 4vw, 52px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.035),
    0 14px 34px rgba(0,0,0,0.34);
}
.about-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--hot-red), transparent 78%);
}
.about-panel::after {
  content: "013";
  position: absolute;
  right: -18px;
  bottom: -56px;
  color: transparent;
  font-family: var(--display);
  font-size: clamp(150px, 20vw, 270px);
  font-weight: 800;
  line-height: 1;
  -webkit-text-stroke: 1px rgba(244,123,42,0.055);
  pointer-events: none;
}
.about-panel > * {
  position: relative;
  z-index: 1;
}

.about-hero {
  font-family: var(--display);
  font-weight: 800;
  max-width: 720px;
  font-size: clamp(29px, 3.5vw, 42px);
  line-height: 0.98;
  letter-spacing: 0.2px;
  color: var(--orange);
  margin-bottom: 24px;
  padding: 0 0 20px;
  border-bottom: 1px solid var(--border);
  text-wrap: balance;
  text-shadow: 0 5px 20px rgba(244,123,42,0.12);
}

.about-lead {
  max-width: 76ch;
  font-size: clamp(17px, 1.35vw, 19px);
  line-height: 1.65;
  color: var(--text);
  margin-bottom: 24px;
  padding: 18px 20px;
  border-left: 4px solid var(--orange);
  border-radius: 0 10px 10px 0;
  background:
    linear-gradient(90deg, rgba(244,123,42,0.12), rgba(244,123,42,0.025) 68%, transparent);
}
.about-text {
  max-width: 76ch;
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.75;
  letter-spacing: 0.08px;
  color: var(--text);
  margin-bottom: 0;
  padding: 18px 8px 18px 20px;
  border-left: 1px solid rgba(244,123,42,0.28);
}
.about-text + .about-text {
  border-top: 1px dashed rgba(255,255,255,0.1);
}
.about-lead .hl, .about-text .hl {
  color: var(--orange);
  font-weight: 700;
}
.about-lead em, .about-text em { color: #fff; font-style: italic; }

/* genre tags */
.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0;
}
.tag {
  font-family: var(--display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  color: var(--orange);
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 6px 13px;
  transition: background 0.12s ease, color 0.12s ease, transform 0.12s ease;
  cursor: default;
}
.tag:hover { background: var(--orange); color: #1a1a1a; transform: translateY(-2px); }

/* call-to-action buttons */
.about-cta { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.cta {
  font-family: var(--display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.5px;
  text-decoration: none;
  color: var(--text);
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 11px 16px;
  transition: background 0.12s ease, transform 0.1s ease, border-color 0.12s ease;
}
.cta:hover { background: var(--card-hi); transform: translateY(-2px); border-color: #444; }
.cta-primary {
  background: var(--orange);
  border-color: var(--orange);
  color: #1a1a1a;
}
.cta-primary:hover { background: var(--orange-bright); border-color: var(--orange-bright); }

/* side art */
.about-side {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 12px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 10px 26px rgba(0,0,0,0.28);
}
.about-art {
  padding: 8px;
  border: 3px solid transparent;
  clip-path: none;
  background:
    linear-gradient(#060606, #060606) padding-box,
    linear-gradient(135deg, var(--orange) 0 28%, var(--hot-red) 52%, #ff9b4d 78%, var(--orange)) border-box;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.12),
    inset 0 0 24px rgba(244,123,42,0.18),
    0 0 0 1px rgba(0,0,0,0.9),
    0 10px 30px rgba(0,0,0,0.55),
    0 0 20px rgba(255,48,79,0.2);
  animation: about-border-pulse 2.8s ease-in-out infinite alternate;
}
.about-art .art-img {
  max-height: none;
  min-height: 0;
  filter: invert(1);
}
@keyframes about-border-pulse {
  to {
    box-shadow:
      inset 0 0 0 1px rgba(255,255,255,0.18),
      inset 0 0 30px rgba(255,48,79,0.2),
      0 0 0 1px rgba(0,0,0,0.9),
      0 12px 34px rgba(0,0,0,0.6),
      0 0 28px rgba(244,123,42,0.34);
  }
}
@media (prefers-reduced-motion: reduce) {
  .about-art { animation: none; }
}
.about-side-note {
  font-family: var(--display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 2px;
  color: var(--muted);
  text-align: center;
  padding: 2px 6px 4px;
}

/* live signal card */
.signal-card {
  position: relative;
  overflow: hidden;
  padding: 18px;
  border: 1px solid rgba(244,123,42,0.32);
  border-radius: 11px;
  background:
    radial-gradient(circle at 100% 0, rgba(255,48,79,0.12), transparent 42%),
    linear-gradient(155deg, #18120e, #0b0b0b 72%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.045),
    0 8px 20px rgba(0,0,0,0.28);
}
.signal-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.14;
  background: repeating-linear-gradient(0deg, transparent 0 4px, rgba(255,255,255,0.035) 5px);
}
.signal-card > * { position: relative; z-index: 1; }
.signal-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.signal-kicker {
  margin-bottom: 2px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.8px;
}
.signal-head h3 {
  color: var(--orange);
  font-family: var(--display);
  font-size: 24px;
  line-height: 1;
  letter-spacing: 0.8px;
}
.signal-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 8px;
  border: 1px solid rgba(255,48,79,0.42);
  border-radius: 999px;
  color: #ff667b;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1px;
}
.signal-status span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--hot-red);
  box-shadow: 0 0 8px rgba(255,48,79,0.9);
  animation: signal-dot 1.3s ease-in-out infinite alternate;
}
.signal-eq {
  height: 46px;
  margin: 17px 0 14px;
  display: flex;
  align-items: flex-end;
  gap: 5px;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(244,123,42,0.28);
}
.signal-eq i {
  flex: 1;
  height: 28%;
  border-radius: 2px 2px 0 0;
  background: linear-gradient(to top, var(--orange), var(--hot-red));
  box-shadow: 0 0 7px rgba(244,123,42,0.2);
  transform-origin: bottom;
  animation: signal-bars 0.8s ease-in-out infinite alternate;
}
.signal-eq i:nth-child(2n) { animation-duration: 1.05s; }
.signal-eq i:nth-child(3n) { animation-duration: 0.65s; }
.signal-eq i:nth-child(4n) { animation-delay: -0.45s; }
.signal-details { display: grid; gap: 0; }
.signal-details div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,0.065);
}
.signal-details dt {
  color: var(--muted-dim);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.2px;
}
.signal-details dd {
  color: var(--text);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-align: right;
}
.signal-listen {
  margin-top: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 11px 14px;
  border-radius: 8px;
  background: var(--orange);
  color: #15100c;
  font-family: var(--display);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-decoration: none;
  transition: transform 0.12s ease, background 0.12s ease, box-shadow 0.12s ease;
}
.signal-listen:hover {
  transform: translateY(-2px);
  background: var(--orange-bright);
  box-shadow: 0 8px 18px rgba(244,123,42,0.22);
}
@keyframes signal-bars {
  from { height: 18%; opacity: 0.72; }
  to { height: 96%; opacity: 1; }
}
@keyframes signal-dot {
  to { opacity: 0.45; transform: scale(0.78); }
}
@media (prefers-reduced-motion: reduce) {
  .signal-status span,
  .signal-eq i { animation: none; }
  .signal-eq i:nth-child(3n) { height: 72%; }
  .signal-eq i:nth-child(4n) { height: 48%; }
}

/* ===================== FOOTER ===================== */
.footer {
  margin-top: 14px;
  padding: 10px 6px 0;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.footer p {
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--muted-dim);
  font-weight: 600;
}
.footer .socials {
  order: 2;
  margin-left: auto;
  gap: 18px;
}
.footer .social {
  position: relative;
  flex-direction: row;
  gap: 6px;
}
.footer .social + .social::before {
  content: "";
  width: 1px;
  height: 18px;
  margin-right: 12px;
  background: var(--border);
}
.footer .social-icon {
  max-width: 26px;
  max-height: 26px;
  border-radius: 6px;
  padding: 3px;
}
.footer .social-label {
  font-size: 11px;
  color: var(--muted);
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1100px) {
  .layout {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "left center"
      "right center";
  }
  .col-left   { grid-area: left; }
  .col-center { grid-area: center; }
  .col-right  { grid-area: right; }
  /* tabs go full-width on narrower screens */
  .tabstrip { display: flex; }
  .tabs { grid-column: auto; }
}
@media (max-width: 900px) {
  .about { grid-template-columns: 1fr; }
  .about-side { order: -1; max-width: 420px; margin: 0 auto; }
}
@media (max-width: 820px) {
  .layout {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas: "center" "left" "right";
    width: 100%;
    max-width: 100%;
  }
  .col,
  .col-center { width: 100%; max-width: 100%; min-width: 0; }
  .masthead { align-items: center; justify-content: space-between; text-align: left; }
  .nav-toggle {
    display: flex;
    position: relative;
    z-index: 31;
  }
  .tabstrip {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(82vw, 320px);
    padding: 88px 18px 18px;
    background: rgba(18,18,18,0.98);
    border-left: 1px solid var(--border);
    box-shadow: -18px 0 40px rgba(0,0,0,0.55);
    justify-content: flex-start;
    align-self: auto;
    transform: translateX(100%);
    transition: transform 0.18s ease;
    z-index: 30;
  }
  body.nav-open .tabstrip { transform: translateX(0); }
  .tabs {
    width: 100%;
    flex-direction: column;
    justify-content: flex-start;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  .tab {
    flex: 0 0 auto;
    justify-content: center;
    padding: 12px 10px;
    font-size: 15px;
    gap: 8px;
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  .tab:first-child { border-left: 1px solid var(--border); }
  .tab .tab-num { font-size: 17px; }
  .tab-soon-label {
    margin-left: 0;
    font-size: 9px;
    padding: 2px 6px;
  }
  .player { grid-template-columns: 72px 1fr; }
  .player-badge { display: none; }
}
@media (max-width: 680px) {
  .artist-slot { flex-basis: min(76vw, 265px); }
}
@media (max-width: 520px) {
  body { padding: 12px; }
  .layout {
    grid-template-areas:
      "center"
      "schedule"
      "left"
      "right";
  }
  .artist-schedule { grid-area: schedule; }
  .art-frame { display: none; }
  .about { gap: 12px; }
  .about-panel {
    padding: 20px 16px 18px;
    border-radius: 12px;
  }
  .about-hero {
    font-size: 24px;
    margin-bottom: 15px;
    padding-bottom: 12px;
  }
  .about-lead {
    font-size: 16px;
    line-height: 1.62;
    padding: 15px 14px;
  }
  .about-text {
    font-size: 15px;
    line-height: 1.7;
    padding: 15px 4px 15px 14px;
  }
  .about-tags { gap: 7px; margin: 18px 0; }
  .tag { font-size: 12px; padding: 6px 10px; }
  .about-cta { display: grid; margin-top: 18px; }
  .cta { width: 100%; padding: 11px 14px; text-align: center; }
  .about-side {
    width: 100%;
    max-width: none;
    padding: 10px;
    border-radius: 12px;
  }
  .about-side-note { font-size: 12px; }
  .brand-title { font-size: 44px; }
  .masthead { gap: 12px; padding-bottom: 12px; }
  .brand-tag { font-size: 18px; letter-spacing: 3px; }
  .tabstrip {
    width: min(86vw, 300px);
    padding-top: 82px;
  }
  .tab {
    justify-content: center;
    padding: 11px 12px;
    font-size: 14px;
  }
  .tab-soon-label { margin-left: 0; }
  .socials { gap: 10px; }
  .player {
    position: relative;
    grid-template-columns: 1fr;
    width: min(100%, 350px);
    margin: 4px auto 0;
    padding: 38px 18px 24px;
    gap: 18px;
    text-align: center;
    border: 2px solid #3a3a3a;
    border-radius: 32px;
    background:
      radial-gradient(circle at 50% 0, rgba(244,123,42,0.16), transparent 38%),
      linear-gradient(165deg, #242424 0%, #111 78%);
    box-shadow:
      inset 0 0 0 4px #090909,
      0 18px 42px rgba(0,0,0,0.55),
      0 0 24px rgba(244,123,42,0.1);
  }
  .artist-schedule {
    width: 100%;
    margin: 64px 0 0;
    padding: 16px 0 14px 14px;
  }
  .artist-schedule-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
  .artist-schedule-actions {
    width: 100%;
    padding-right: 14px;
  }
  .artist-schedule-note { margin-right: auto; }
  .schedule-scroll-next {
    top: 58%;
    right: 10px;
    width: 44px;
    height: 44px;
  }
  .schedule-scroll-prev {
    top: 58%;
    left: 10px;
    width: 44px;
    height: 44px;
  }
  .artist-schedule-grid {
    gap: 12px;
    padding-right: 14px;
  }
  .player::before {
    content: "";
    position: absolute;
    top: 14px;
    left: 50%;
    width: 58px;
    height: 5px;
    border-radius: 999px;
    background: #050505;
    box-shadow: inset 0 1px 1px rgba(255,255,255,0.1);
    transform: translateX(-50%);
  }
  .player-cover {
    width: min(100%, 260px);
    /* Explicit height is the fallback for Safari before aspect-ratio support. */
    height: min(calc(100vw - 64px), 260px);
    aspect-ratio: 1;
    margin: 0 auto;
    border: 0;
    border-radius: 22px;
    box-shadow: 0 12px 28px rgba(0,0,0,0.48);
  }
  .player-info { gap: 16px; }
  .pi-now {
    flex-direction: column;
    align-items: center;
    gap: 5px;
  }
  .pi-now .pi-val:not(.pi-artist) {
    max-width: 100%;
    overflow-wrap: break-word;
    word-break: break-word;
    font-family: var(--display);
    font-size: clamp(20px, 6vw, 26px);
    line-height: 1.15;
  }
  .pi-artist {
    max-width: 100%;
    overflow-wrap: break-word;
    font-size: 11px;
    letter-spacing: 2px;
    text-align: center;
    text-transform: uppercase;
  }
  .pi-scrub {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 10px 14px;
    align-items: center;
    text-align: left;
  }
  .pi-scrub::before { display: none; }
  .mini-play {
    grid-row: 1 / span 2;
    width: 56px;
    height: 56px;
    font-size: 18px;
    box-shadow: 0 8px 20px rgba(244,123,42,0.28);
  }
  .pi-time {
    grid-column: 2;
    font-size: 12px;
    letter-spacing: 1px;
  }
  .progress-track {
    grid-column: 2;
    height: 6px;
  }
  .player-controls { display: none; }
  .footer {
    justify-content: center;
    text-align: center;
    gap: 12px;
  }
  .footer .socials {
    width: 100%;
    order: 1;
    margin-left: 0;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 4px;
  }
  .footer .social {
    flex: 1 1 0;
    min-width: 0;
    flex-direction: column;
    justify-content: center;
    gap: 2px;
    padding: 6px 2px;
  }
  .footer .social-icon {
    width: 24px;
    height: 24px;
  }
  .footer .social-label {
    max-width: 100%;
    font-size: 9px;
    letter-spacing: 0.35px;
    white-space: nowrap;
  }
  .footer .social + .social::before {
    display: none;
  }
  .footer p {
    width: 100%;
    order: 2;
  }
}

@media (max-width: 360px) {
  body { padding: 8px; }
  .player {
    width: 100%;
    padding: 34px 12px 18px;
    gap: 14px;
    border-radius: 24px;
  }
  .player-cover {
    width: min(100%, 260px);
    height: min(calc(100vw - 44px), 260px);
    border-radius: 17px;
  }
  .player-info { gap: 12px; }
  .pi-scrub {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 8px 10px;
  }
  .mini-play {
    width: 48px;
    height: 48px;
  }
  .playback-status {
    padding: 7px 8px;
    overflow-wrap: break-word;
  }
}

/* Wide early-2000s car-radio player on tablet and desktop */
@media (min-width: 521px) {
  .player {
    position: relative;
    grid-template-columns: 150px minmax(0, 1fr);
    width: 100%;
    margin: 4px 0 0;
    padding: 18px 20px;
    gap: 18px;
    align-items: stretch;
    text-align: left;
    border: 2px solid #454545;
    border-radius: 12px;
    background:
      linear-gradient(180deg, rgba(255,255,255,0.07), transparent 18%),
      repeating-linear-gradient(90deg, transparent 0 22px, rgba(255,255,255,0.012) 23px),
      linear-gradient(165deg, #303030 0%, #151515 52%, #242424 100%);
    box-shadow:
      inset 0 0 0 4px #0a0a0a,
      inset 0 1px 0 rgba(255,255,255,0.15),
      0 12px 28px rgba(0,0,0,0.5);
  }
  .player::before {
    content: "RUN 013 • FM STEREO";
    position: absolute;
    top: 5px;
    left: 20px;
    color: #777;
    font: 700 7px/1 var(--body);
    letter-spacing: 1.7px;
  }
  .player-cover {
    width: 150px;
    height: 150px;
    min-height: 0;
    aspect-ratio: 1;
    align-self: center;
    margin: 0;
    border-radius: 7px;
    box-shadow:
      0 0 0 4px #080808,
      0 0 0 5px #454545,
      0 5px 12px rgba(0,0,0,0.5);
  }
  .player-info {
    justify-content: center;
    gap: 16px;
    padding: 13px 15px;
    border: 1px solid #080808;
    border-radius: 6px;
    background: linear-gradient(180deg, #17120d, #090806);
    box-shadow:
      inset 0 0 15px rgba(244,123,42,0.08),
      0 0 0 2px #3c3c3c;
  }
  .pi-now {
    flex-direction: row;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
  }
  .pi-now .pi-val:not(.pi-artist) {
    display: block;
    flex: 1 1 auto;
    width: auto;
    max-width: none;
    min-width: 0;
    overflow: hidden;
    color: var(--orange);
    font-family: var(--display);
    font-size: clamp(20px, 2vw, 27px);
    line-height: 1.15;
    letter-spacing: 0.5px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .pi-artist {
    display: block;
    flex: 0 1 auto;
    width: auto;
    max-width: 42%;
    min-width: 0;
    color: var(--muted);
    font-family: var(--body);
    font-size: 11px;
    letter-spacing: 2px;
    overflow: hidden;
    text-align: right;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
  }
  .pi-scrub {
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 10px 14px;
    align-items: center;
    text-align: left;
  }
  .pi-scrub::before { display: none; }
  .mini-play {
    grid-row: 1 / span 2;
    width: 56px;
    height: 56px;
    border: 0;
    background: #F47B2A;
    color: #1a1a1a;
    font-size: 18px;
    box-shadow: 0 8px 20px rgba(244,123,42,0.28);
  }
  .mini-play:hover { background: #ff8c3c; opacity: 1; }
  .pi-time {
    grid-column: 2;
    color: var(--hot-red);
    font-family: var(--body);
    font-size: 12px;
    letter-spacing: 1px;
  }
  .progress-track {
    grid-column: 2;
    height: 6px;
    background: #333;
  }
  .player-controls { display: none; }
  .player-badge { display: none; }
}

/* ===================== 404 / UNMATCHED PATH ===================== */
.error-page { min-height: 100vh; }
.error-shell { min-height: calc(100vh - 32px); }
.error-brand {
  color: inherit;
  text-decoration: none;
}
.error-brand .brand-title,
.error-brand .brand-tag { display: block; }
.error-header-code {
  color: var(--hot-red);
  font-family: var(--body);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
}
.error-main {
  flex: 1 1 auto;
  display: grid;
  place-items: center;
  padding: clamp(28px, 7vh, 88px) 0;
}
.error-panel {
  width: min(100%, 880px);
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(220px, 0.85fr);
  align-items: center;
  gap: clamp(22px, 5vw, 64px);
  padding: clamp(24px, 5vw, 56px);
  border: 1px solid var(--border);
  border-radius: 18px;
  background: linear-gradient(155deg, #181818, #080808 72%);
  box-shadow: inset 0 0 0 4px #050505, 0 18px 50px rgba(0,0,0,0.52);
}
.error-kicker {
  margin-bottom: 8px;
  color: var(--hot-red);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2.5px;
}
.error-copy h1 {
  color: var(--text);
  font-family: var(--display);
  font-size: clamp(38px, 6vw, 72px);
  line-height: 0.95;
}
.error-copy h1 span { color: #F47B2A; }
.error-copy > p:not(.error-kicker) {
  max-width: 480px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}
.error-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}
.error-art {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  min-height: 220px;
  border: 1px solid #3b3b3b;
  border-radius: 14px;
  background: #fff;
}
.error-art img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: invert(1);
  opacity: 0.34;
}
.error-art-code {
  position: absolute;
  z-index: 1;
  right: 10px;
  bottom: -18px;
  color: #080808;
  font-family: var(--display);
  font-size: clamp(82px, 14vw, 150px);
  font-weight: 800;
  line-height: 1;
}
@media (max-width: 680px) {
  .error-page { padding: 12px; }
  .error-shell { min-height: calc(100vh - 24px); }
  .error-header-code { font-size: 10px; letter-spacing: 1px; }
  .error-main { padding: 24px 0; }
  .error-panel { grid-template-columns: minmax(0, 1fr); padding: 24px 18px; }
  .error-copy { text-align: center; }
  .error-copy > p:not(.error-kicker) { margin-right: auto; margin-left: auto; }
  .error-actions { display: grid; }
  .error-art { display: none; }
}
