/* ── Pink Radio — Single Show ── */

.pss-hero,
.pss-content {
  --pss-pink:   #e8005a;
  --pss-bg:     #0d0d0d;
  --pss-muted:  #888;
  --pss-dim:    #444;
  --pss-border: #1c1c1c;
}

/* Cover theme animated background */
.single-show .dhrk-ajax-content,
.single-show .qw-content-wrapper {
  background: var(--pss-bg);
}

/* Pink accent line at nav bottom */
.single-show #qwFixedHeader { overflow: visible; }
.single-show #qwFixedHeader::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--pss-pink) 0%, rgba(232, 0, 90, 0.3) 50%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

/* ── HERO ── */
.pss-hero {
  position: relative;
  width: 100%;
  padding: 130px 40px 56px;
  background-color: var(--pss-bg);
  background-size: cover;
  background-position: center;
  overflow: hidden;
  -webkit-font-smoothing: antialiased;
}
.pss-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 60% at 15% 20%, rgba(232, 0, 90, 0.12) 0%, transparent 65%),
    linear-gradient(180deg, rgba(13, 13, 13, 0.35) 0%, rgba(13, 13, 13, 0.65) 55%, var(--pss-bg) 100%);
}
.pss-hero:not(.pss-hero--has-image)::before {
  background:
    radial-gradient(ellipse 55% 60% at 15% 20%, rgba(232, 0, 90, 0.12) 0%, transparent 65%),
    radial-gradient(ellipse 35% 60% at 90% 10%, rgba(232, 0, 90, 0.06) 0%, transparent 60%);
}
.pss-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
}

.pss-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--pss-muted);
  text-decoration: none;
  margin-bottom: 1.75rem;
  transition: color .2s;
}
.pss-back:hover {
  color: var(--pss-pink);
}

.pss-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: .75rem;
}
.pss-eyebrow__label {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--pss-pink);
}
.pss-live {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  padding: 4px 10px;
  border: 1px solid rgba(232, 0, 90, .35);
  border-radius: 4px;
  background: rgba(232, 0, 90, .12);
}
.pss-live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--pss-pink);
  flex-shrink: 0;
  animation: pss-blink 1.2s ease-in-out infinite;
}
@keyframes pss-blink {
  0%, 100% { opacity: 1; }
  50%      { opacity: .25; }
}

.pss-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 9vw, 110px) !important;
  letter-spacing: 6px;
  line-height: .95;
  margin: 0 0 1.25rem;
  text-transform: uppercase;
  background: linear-gradient(95deg, #ffffff 30%, var(--pss-pink) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pss-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}
.pss-pill {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 12px;
  border-radius: 6px;
  background: rgba(232, 0, 90, .12);
  border: 1px solid rgba(232, 0, 90, .3);
  color: var(--pss-pink);
}
.pss-meta__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: var(--pss-muted);
}
.pss-meta__item svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  flex-shrink: 0;
}
.pss-hosts {
  padding-left: 4px;
}
.pss-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #1e1e1e;
  border: 1px solid rgba(255, 255, 255, .08);
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 600;
  color: #f0f0f0;
  margin-right: -8px;
}
.pss-hosts .pss-avatar:last-of-type {
  margin-right: 10px;
}

/* ── DESCRIPTION ── */
.pss-content {
  background: var(--pss-bg);
  padding: 3rem 0 5rem;
}
.pss-description {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: #aaa;
}
.pss-description p {
  margin: 0 0 1.25rem;
}
.pss-description a {
  color: var(--pss-pink);
  text-decoration: underline;
}
.pss-description h1,
.pss-description h2,
.pss-description h3,
.pss-description h4 {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #f0f0f0;
  margin: 0 0 1rem;
}

@media (max-width: 640px) {
  .pss-hero {
    padding: 100px 20px 40px;
  }
  .pss-title {
    letter-spacing: 3px;
  }
}
