.radio-main { min-height: calc(100vh - 80px); padding: 130px 0 80px; }
.radio-shell { display: grid; gap: 24px; }
.radio-heading { display: flex; align-items: end; justify-content: space-between; gap: 40px; padding-bottom: 12px; }
.radio-heading h1 { max-width: 900px; margin: 0; font-size: clamp(3.7rem, 8vw, 7rem); line-height: .88; letter-spacing: -.065em; font-weight: 500; }
.radio-heading h1 em { color: var(--green-bright); font-weight: 500; }
.radio-heading > div > p:last-child { margin: 21px 0 0; color: var(--ink); font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.3rem, 2.3vw, 1.9rem); }
.live-status { display: inline-flex; align-items: center; gap: 9px; flex: 0 0 auto; margin-bottom: 8px; padding: 10px 14px; border: 1px solid rgba(182,240,213,.34); border-radius: 999px; background: rgba(119,201,166,.1); color: var(--green-bright); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; }
.live-status span { width: 8px; height: 8px; border-radius: 50%; background: var(--green-bright); box-shadow: 0 0 0 6px rgba(182,240,213,.1), 0 0 18px rgba(182,240,213,.72); }
.live-status.offline { border-color: rgba(255,255,255,.16); background: rgba(255,255,255,.04); color: var(--ink); }
.live-status.offline span { background: #8d9b95; box-shadow: none; }

.radio-player { display: grid; grid-template-columns: .92fr 1.08fr; gap: 58px; align-items: center; padding: 36px; border: 1px solid var(--line); border-radius: 32px; background: linear-gradient(145deg, rgba(24,36,31,.97), rgba(13,20,17,.97)); box-shadow: var(--shadow); }
.radio-cover-frame { padding: 8px; border: 1px solid rgba(182,240,213,.28); border-radius: 24px; background: linear-gradient(145deg, rgba(182,240,213,.13), rgba(255,255,255,.025)); transition: border-color .25s ease, opacity .25s ease; }
.radio-cover-frame img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 18px; transition: opacity .25s ease, filter .25s ease; }
.radio-cover-frame.is-station-break img { opacity: .78; filter: saturate(.78); }
.radio-track h2 { max-width: 650px; margin: 18px 0 8px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(3rem, 6vw, 5.5rem); font-weight: 500; line-height: .94; letter-spacing: -.055em; }
.radio-artist { margin: 0; color: var(--ink); font-weight: 750; }
.radio-controls { display: flex; align-items: center; gap: 21px; margin-top: 32px; }
.radio-play { display: grid; place-items: center; width: 64px; height: 64px; flex: 0 0 auto; border: 0; border-radius: 50%; background: linear-gradient(110deg, #b7eed6, #70bd9d); color: #07100c; box-shadow: 0 15px 40px rgba(82,164,130,.24); cursor: pointer; transition: transform .2s ease, opacity .2s ease; }
.radio-play:hover { transform: translateY(-2px); }
.radio-play:disabled { opacity: .55; cursor: wait; transform: none; }
.radio-play svg { width: 27px; height: 27px; fill: currentColor; }
.volume-control { display: flex; align-items: center; gap: 12px; width: min(310px, 100%); color: var(--ink); }
.volume-control svg { width: 21px; height: 21px; fill: currentColor; }
.volume-control input { width: 100%; accent-color: var(--green-bright); cursor: pointer; }
.volume-control span { min-width: 25px; color: var(--ink); font-size: .74rem; font-weight: 850; }
.player-message { margin: 16px 0 0; color: var(--ink); font-size: .82rem; }

.lyrics-panel { padding: 30px 36px 34px; border: 1px solid var(--line); border-radius: 28px; background: rgba(17,25,22,.88); }
.lyrics-heading { display: flex; align-items: center; justify-content: space-between; gap: 25px; }
.lyrics-heading .eyebrow { margin: 0; }
.lyrics-heading span { color: var(--green-bright); font-size: .7rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.lyrics-window { display: grid; align-content: center; min-height: 160px; padding-top: 14px; text-align: center; }
.lyrics-line { margin: 7px 0; color: var(--ink); transition: opacity .18s ease; }
.lyrics-previous, .lyrics-next { opacity: .55; font-size: .94rem; }
.lyrics-current { font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.35rem, 3vw, 2.2rem); font-weight: 700; line-height: 1.3; }
.radio-main + footer { margin-top: 0; }
.nav-links a[aria-current="page"] { color: var(--green-bright); }

@media (max-width: 900px) {
  .radio-main { padding-top: 112px; }
  .radio-heading { display: block; text-align: center; }
  .radio-heading .eyebrow { margin-inline: auto; }
  .live-status { margin-top: 24px; }
  .radio-player { grid-template-columns: 1fr; gap: 36px; }
  .radio-cover-frame { width: min(520px, 100%); margin: 0 auto; }
  .radio-track { text-align: center; }
  .radio-track .eyebrow { margin-inline: auto; }
  .radio-controls { justify-content: center; }
}

@media (max-width: 560px) {
  .radio-main { padding: 101px 0 58px; }
  .radio-heading h1 { font-size: clamp(3.4rem, 18vw, 5.2rem); }
  .radio-player { padding: 16px; border-radius: 24px; }
  .radio-track { padding: 4px 6px 14px; }
  .radio-track h2 { font-size: clamp(2.7rem, 14vw, 4.2rem); }
  .radio-controls { align-items: flex-start; gap: 16px; }
  .volume-control { margin-top: 19px; }
  .lyrics-panel { padding: 24px 18px 28px; border-radius: 22px; }
  .lyrics-heading { align-items: flex-start; }
  .lyrics-heading span { text-align: right; }
}
/* Up next + recently played */
.radio-programming {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 24px;
}

.program-card {
  min-width: 0;
  padding: 28px 30px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(17,25,22,.88);
}

.program-card-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}

.program-card-heading .eyebrow { margin: 0; }

.program-card-heading span {
  color: var(--ink);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.up-next-content {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
}

.up-next-content img {
  width: 96px;
  height: 96px;
  border-radius: 16px;
  object-fit: cover;
  border: 1px solid rgba(182,240,213,.24);
}

.up-next-content h3 {
  margin: 0 0 7px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 3vw, 2.45rem);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -.035em;
}

.up-next-content p {
  margin: 0;
  color: var(--ink);
  font-size: .86rem;
  font-weight: 750;
}

.recent-list {
  display: grid;
  gap: 10px;
}

.recent-item {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-width: 0;
  padding: 9px 0;
  border-top: 1px solid rgba(255,255,255,.07);
}

.recent-item:first-child {
  padding-top: 0;
  border-top: 0;
}

.recent-item img {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  object-fit: cover;
  border: 1px solid rgba(182,240,213,.16);
}

.recent-item-copy {
  min-width: 0;
}

.recent-item h4 {
  overflow: hidden;
  margin: 0 0 3px;
  color: #f0f4f2;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 1.16;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.recent-item p,
.recent-empty {
  margin: 0;
  color: var(--ink);
  font-size: .78rem;
}

@media (max-width: 900px) {
  .radio-programming { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .program-card {
    padding: 24px 18px;
    border-radius: 22px;
  }

  .program-card-heading {
    align-items: flex-start;
    margin-bottom: 18px;
  }

  .program-card-heading span { text-align: right; }

  .up-next-content {
    grid-template-columns: 78px minmax(0, 1fr);
    gap: 16px;
  }

  .up-next-content img {
    width: 78px;
    height: 78px;
    border-radius: 13px;
  }

  .up-next-content h3 {
    font-size: clamp(1.45rem, 7.2vw, 2rem);
  }
}
