:root {
  --p48-ink: #15131d;
  --p48-muted: #686174;
  --p48-line: rgba(21, 19, 29, 0.12);
  --p48-paper: #fffdf9;
  --p48-soft: #f4f0f8;
  --p48-night: #0c0916;
  --p48-deep: #19122b;
  --p48-red: #ee4655;
  --p48-orange: #ff9b3d;
  --p48-gold: #ffc857;
  --p48-green: #39c777;
  --p48-cyan: #25b7d3;
  --p48-blue: #4f66ff;
  --p48-violet: #7c4dff;
  --p48-pink: #ed4aa5;
  --p48-radius: 8px;
  --p48-max: 1180px;
  --p48-shadow: 0 24px 70px rgba(17, 11, 34, 0.22);
}

* {
  box-sizing: border-box;
}

body.pride48-live-theme {
  margin: 0;
  background:
    linear-gradient(180deg, #fffdf9 0%, #f7f1ff 46rem, #fffdf9 100%);
  color: var(--p48-ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

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

.p48-main {
  min-height: 70vh;
}

.p48-site-header {
  background: rgba(255, 253, 249, 0.9);
  border-bottom: 1px solid rgba(21, 19, 29, 0.1);
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(20px);
}

.p48-site-header::before {
  background: linear-gradient(90deg, var(--p48-red), var(--p48-orange), var(--p48-gold), var(--p48-green), var(--p48-cyan), var(--p48-blue), var(--p48-violet), var(--p48-pink));
  content: "";
  display: block;
  height: 6px;
}

.p48-site-header__inner {
  align-items: center;
  display: grid;
  gap: 22px;
  grid-template-columns: auto 1fr auto;
  margin: 0 auto;
  max-width: var(--p48-max);
  min-height: 78px;
  padding: 0 22px;
}

.p48-brand,
.p48-footer-brand {
  align-items: center;
  color: var(--p48-ink);
  display: inline-flex;
  line-height: 1;
  text-decoration: none;
}

.p48-brand__logo,
.p48-brand .custom-logo {
  height: auto;
  max-height: 54px;
  max-width: 230px;
  width: auto;
}

.p48-footer-brand .p48-brand__logo {
  filter: brightness(0) invert(1);
  max-height: 48px;
  max-width: 200px;
}

.p48-primary-nav,
.p48-primary-nav__list,
.p48-footer-nav,
.p48-footer-nav__list {
  align-items: center;
  display: flex;
  gap: 16px;
  justify-content: flex-end;
  list-style: none;
  margin: 0;
  padding: 0;
}

.p48-primary-nav a,
.p48-footer-nav a {
  color: var(--p48-ink);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.p48-primary-nav a:hover,
.p48-footer-nav a:hover {
  color: var(--p48-pink);
}

.p48-header-cta,
.p48-button {
  align-items: center;
  border-radius: var(--p48-radius);
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.p48-header-cta,
.p48-button--primary {
  background: var(--p48-ink);
  color: #fff;
  box-shadow: 0 12px 28px rgba(21, 19, 29, 0.18);
}

.p48-button--secondary {
  background: var(--p48-gold);
  color: #2c210a;
}

.p48-button--ghost {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.32);
  color: #fff;
}

.p48-button:hover,
.p48-header-cta:hover {
  transform: translateY(-2px);
}

.p48-menu-toggle {
  align-items: center;
  background: transparent;
  border: 0;
  color: var(--p48-ink);
  display: none;
  font-weight: 900;
  gap: 6px;
  padding: 10px;
}

.p48-menu-toggle span {
  background: currentColor;
  border-radius: 99px;
  display: block;
  height: 2px;
  width: 16px;
}

.p48-live-stage {
  background:
    linear-gradient(115deg, rgba(12, 9, 22, 0.96) 0%, rgba(25, 18, 43, 0.92) 47%, rgba(9, 8, 18, 0.98) 100%);
  color: #fff;
  overflow: hidden;
  padding: 72px 22px 76px;
  position: relative;
}

.p48-live-stage::before {
  background:
    linear-gradient(100deg, transparent 0 24%, rgba(238, 70, 85, 0.28) 24% 31%, transparent 31% 40%, rgba(37, 183, 211, 0.24) 40% 47%, transparent 47% 56%, rgba(124, 77, 255, 0.26) 56% 63%, transparent 63% 100%);
  content: "";
  inset: 0;
  opacity: 0.75;
  pointer-events: none;
  position: absolute;
}

.p48-live-stage::after {
  background:
    linear-gradient(90deg, var(--p48-red), var(--p48-orange), var(--p48-gold), var(--p48-green), var(--p48-cyan), var(--p48-blue), var(--p48-violet), var(--p48-pink));
  bottom: 0;
  content: "";
  height: 8px;
  left: 0;
  position: absolute;
  right: 0;
}

.p48-live-stage__glow {
  background:
    linear-gradient(135deg, rgba(255, 200, 87, 0.16), transparent 38%),
    linear-gradient(315deg, rgba(237, 74, 165, 0.18), transparent 42%);
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.p48-live-stage__inner {
  align-items: center;
  display: grid;
  gap: 42px;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.8fr);
  margin: 0 auto;
  max-width: var(--p48-max);
  position: relative;
  z-index: 1;
}

.p48-live-stage__copy {
  max-width: 760px;
}

.p48-on-air {
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  display: inline-flex;
  font-size: 13px;
  font-weight: 900;
  gap: 10px;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
  padding: 8px 12px;
  text-transform: uppercase;
}

.p48-on-air::before {
  background: var(--p48-red);
  border-radius: 50%;
  box-shadow: 0 0 18px rgba(238, 70, 85, 0.95);
  content: "";
  height: 10px;
  width: 10px;
}

.p48-live-stage h1,
.p48-page-hero h1,
.p48-single-show h1 {
  font-size: clamp(48px, 8vw, 92px);
  line-height: 0.93;
  margin: 0 0 22px;
  max-width: 900px;
}

.p48-live-stage p,
.p48-page-hero p,
.p48-section__heading p,
.p48-band p,
.p48-player p {
  color: inherit;
  font-size: 19px;
  margin: 0;
  max-width: 680px;
  opacity: 0.82;
}

.p48-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.p48-now-card {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--p48-radius);
  box-shadow: var(--p48-shadow);
  overflow: hidden;
  backdrop-filter: blur(18px);
}

.p48-now-card__top {
  background:
    linear-gradient(90deg, rgba(238, 70, 85, 0.24), rgba(37, 183, 211, 0.18)),
    rgba(255, 255, 255, 0.08);
  padding: 24px 26px 18px;
}

.p48-now-card__top span,
.p48-kicker {
  color: var(--p48-gold);
  display: inline-block;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.p48-now-card__top strong {
  display: block;
  font-size: 34px;
  line-height: 1;
}

.p48-wave {
  align-items: end;
  background: rgba(9, 8, 18, 0.62);
  display: flex;
  gap: 6px;
  height: 72px;
  padding: 16px 26px;
}

.p48-wave span {
  background: linear-gradient(180deg, var(--p48-pink), var(--p48-cyan));
  border-radius: 999px;
  display: block;
  flex: 1;
  min-width: 10px;
}

.p48-wave span:nth-child(1) { height: 34%; }
.p48-wave span:nth-child(2) { height: 62%; }
.p48-wave span:nth-child(3) { height: 44%; }
.p48-wave span:nth-child(4) { height: 76%; }
.p48-wave span:nth-child(5) { height: 56%; }
.p48-wave span:nth-child(6) { height: 86%; }
.p48-wave span:nth-child(7) { height: 48%; }
.p48-wave span:nth-child(8) { height: 68%; }

.p48-player {
  background: #0b0912;
  color: #fff;
  margin: 0;
  max-width: none;
  overflow: hidden;
  width: 100%;
}

.p48-player__meta {
  padding: 24px 26px 14px;
}

.p48-now-card .p48-player__meta {
  display: none;
}

.p48-player__meta h2 {
  color: #fff;
  font-size: 30px;
  line-height: 1;
  margin: 0 0 8px;
}

.p48-player__embed {
  background: #050409;
  min-height: 176px;
}

.p48-player iframe {
  border: 0;
  display: block;
  min-height: 176px;
  width: 100%;
}

.p48-player--compact {
  border-radius: var(--p48-radius);
  box-shadow: var(--p48-shadow);
  max-width: 520px;
}

.p48-player--compact .p48-player__meta {
  display: block;
  padding: 18px;
}

.p48-section,
.p48-shows-browser,
.p48-content,
.p48-single-show {
  margin-left: auto;
  margin-right: auto;
  max-width: var(--p48-max);
  padding: 72px 22px;
  width: 100%;
}

.p48-section--tight {
  padding-top: 66px;
}

.p48-section__heading {
  margin-bottom: 32px;
}

.p48-section__heading h2,
.p48-band h2 {
  font-size: clamp(32px, 4.8vw, 56px);
  line-height: 1;
  margin: 0 0 14px;
  max-width: 880px;
}

.p48-show-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
}

.p48-show-grid--featured {
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}

.p48-show-card {
  background: var(--p48-paper);
  border: 1px solid rgba(21, 19, 29, 0.1);
  border-radius: var(--p48-radius);
  box-shadow: 0 16px 38px rgba(21, 19, 29, 0.09);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
}

.p48-show-card[hidden] {
  display: none;
}

.p48-show-card__art {
  aspect-ratio: 1 / 1;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0)),
    linear-gradient(135deg, #20143a, #682f8e 48%, #c33c9a);
  display: grid;
  overflow: hidden;
  place-items: center;
  position: relative;
  text-decoration: none;
}

.p48-show-card__art::after {
  background: linear-gradient(90deg, var(--p48-red), var(--p48-gold), var(--p48-green), var(--p48-cyan), var(--p48-violet), var(--p48-pink));
  bottom: 0;
  content: "";
  height: 7px;
  left: 0;
  position: absolute;
  right: 0;
}

.p48-show-card__art img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.p48-show-card__fallback,
.p48-single-show__art span {
  color: #fff;
  font-size: 68px;
  font-weight: 900;
}

.p48-show-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 18px;
}

.p48-show-card__topline,
.p48-show-card__tags,
.p48-show-card__links {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.p48-show-card h3 {
  font-size: 21px;
  line-height: 1.14;
  margin: 12px 0 8px;
}

.p48-show-card h3 a {
  color: var(--p48-ink);
  text-decoration: none;
}

.p48-show-card p {
  color: var(--p48-muted);
  font-size: 14px;
  margin: 0 0 14px;
}

.p48-status,
.p48-pill,
.p48-show-card__tags span {
  border-radius: 999px;
  display: inline-flex;
  font-size: 12px;
  font-weight: 850;
  line-height: 1;
  padding: 7px 9px;
}

.p48-status.is-current {
  background: rgba(57, 199, 119, 0.14);
  color: #126d3b;
}

.p48-status.is-archived {
  background: rgba(104, 97, 116, 0.14);
  color: #504a5c;
}

.p48-pill,
.p48-show-card__tags span {
  background: rgba(124, 77, 255, 0.12);
  color: var(--p48-violet);
}

.p48-show-card__links {
  margin-top: auto;
  padding-top: 16px;
}

.p48-show-card__links a,
.p48-link-arrow {
  color: var(--p48-violet);
  font-weight: 850;
  text-decoration: none;
}

.p48-section__footer {
  margin-top: 28px;
}

.p48-band {
  align-items: center;
  background:
    linear-gradient(90deg, rgba(238, 70, 85, 0.17), rgba(255, 200, 87, 0.17), rgba(37, 183, 211, 0.16)),
    #fff;
  border-block: 1px solid rgba(21, 19, 29, 0.1);
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr auto;
  margin: 0 auto;
  max-width: none;
  padding: 54px max(22px, calc((100vw - var(--p48-max)) / 2 + 22px));
}

.p48-band .p48-button--primary {
  background: var(--p48-deep);
}

.p48-section--archive {
  padding-bottom: 84px;
}

.p48-archive-links {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.p48-archive-links a {
  background: #fff;
  border: 1px solid rgba(21, 19, 29, 0.1);
  border-radius: var(--p48-radius);
  box-shadow: 0 12px 28px rgba(21, 19, 29, 0.07);
  color: var(--p48-ink);
  font-weight: 850;
  padding: 18px;
  text-decoration: none;
}

.p48-page-hero {
  align-items: center;
  background:
    linear-gradient(120deg, rgba(12, 9, 22, 0.97), rgba(40, 25, 74, 0.94)),
    var(--p48-night);
  color: #fff;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  padding: 64px max(22px, calc((100vw - var(--p48-max)) / 2 + 22px));
}

.p48-page-hero--simple {
  display: block;
}

.p48-show-tools {
  align-items: end;
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(240px, 1fr) auto;
  margin-bottom: 28px;
}

.p48-show-tools label span {
  display: block;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.p48-show-tools input {
  border: 1px solid rgba(21, 19, 29, 0.14);
  border-radius: var(--p48-radius);
  font: inherit;
  min-height: 50px;
  padding: 12px 14px;
  width: 100%;
}

.p48-segments {
  background: #fff;
  border: 1px solid rgba(21, 19, 29, 0.12);
  border-radius: var(--p48-radius);
  display: flex;
  padding: 4px;
}

.p48-segments button {
  background: transparent;
  border: 0;
  border-radius: 6px;
  color: var(--p48-muted);
  cursor: pointer;
  font: inherit;
  font-weight: 850;
  min-height: 40px;
  padding: 8px 14px;
}

.p48-segments button.is-active {
  background: var(--p48-ink);
  color: #fff;
}

.p48-single-show__hero {
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(240px, 360px) minmax(0, 1fr);
}

.p48-single-show__art {
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, #20143a, #682f8e 48%, #c33c9a);
  border-radius: var(--p48-radius);
  display: grid;
  overflow: hidden;
  place-items: center;
}

.p48-single-show__art img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.p48-single-show__copy {
  align-self: center;
}

.p48-single-show__copy p {
  color: var(--p48-muted);
  font-size: 19px;
  margin: 0;
}

.p48-content {
  background: #fff;
  border-radius: var(--p48-radius);
  box-shadow: 0 12px 34px rgba(21, 19, 29, 0.08);
  max-width: 960px;
}

.p48-post-summary {
  border-bottom: 1px solid var(--p48-line);
  padding: 24px 0;
}

.p48-site-footer {
  background: var(--p48-night);
  color: #fff;
}

.p48-site-footer::before {
  background: linear-gradient(90deg, var(--p48-red), var(--p48-orange), var(--p48-gold), var(--p48-green), var(--p48-cyan), var(--p48-blue), var(--p48-violet), var(--p48-pink));
  content: "";
  display: block;
  height: 6px;
}

.p48-site-footer__inner {
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr auto;
  margin: 0 auto;
  max-width: var(--p48-max);
  padding: 46px 22px;
}

.p48-footer-brand,
.p48-site-footer a {
  color: #fff;
}

.p48-site-footer p,
.p48-site-footer__meta {
  color: rgba(255, 255, 255, 0.68);
  margin: 8px 0 0;
}

.p48-site-footer__meta {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  max-width: var(--p48-max);
  padding: 18px 22px;
}

.p48-empty {
  color: var(--p48-muted);
  font-weight: 850;
}

@media (max-width: 900px) {
  .p48-site-header__inner {
    grid-template-columns: auto auto 1fr;
  }

  .p48-menu-toggle {
    display: inline-flex;
  }

  .p48-primary-nav {
    background: var(--p48-paper);
    border-bottom: 1px solid var(--p48-line);
    display: none;
    grid-column: 1 / -1;
    justify-content: start;
    padding: 0 0 18px;
  }

  .p48-primary-nav.is-open,
  .p48-primary-nav__list {
    align-items: start;
    display: grid;
    gap: 12px;
  }

  .p48-header-cta {
    justify-self: end;
  }

  .p48-live-stage__inner,
  .p48-page-hero,
  .p48-band,
  .p48-show-tools,
  .p48-single-show__hero,
  .p48-site-footer__inner {
    grid-template-columns: 1fr;
  }

  .p48-live-stage h1,
  .p48-page-hero h1,
  .p48-single-show h1 {
    font-size: 46px;
  }

  .p48-segments {
    overflow-x: auto;
  }

  .p48-site-footer__meta {
    display: grid;
    gap: 8px;
  }
}

@media (max-width: 560px) {
  .p48-site-header__inner,
  .p48-live-stage,
  .p48-page-hero,
  .p48-section,
  .p48-shows-browser,
  .p48-content,
  .p48-single-show {
    padding-left: 16px;
    padding-right: 16px;
  }

  .p48-brand {
    max-width: 170px;
  }

  .p48-brand__logo,
  .p48-brand .custom-logo {
    max-height: 42px;
    max-width: 170px;
  }

  .p48-actions,
  .p48-band {
    display: grid;
  }

  .p48-button,
  .p48-header-cta {
    width: 100%;
  }
}
