/* Platinum Radio broadcast remake */
:root {
  --pr-black: #090909;
  --pr-ink: #151311;
  --pr-panel: #1b1814;
  --pr-panel-soft: #24201a;
  --pr-gold: #d4af37;
  --pr-gold-deep: #a9831f;
  --pr-green: #18c981;
  --pr-red: #d94c45;
  --pr-text: #f7f3ea;
  --pr-muted: rgba(247, 243, 234, 0.72);
  --pr-line: rgba(212, 175, 55, 0.26);
  --pr-paper: #f6f4ef;
  --pr-paper-line: #e9e2d4;
}

html {
  scroll-behavior: smooth;
}

body.index-page {
  color: #221f1a;
  background: var(--pr-paper);
}

body.player-visible {
  padding-bottom: 120px;
}

.section {
  padding: 88px 0;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--pr-gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-kicker::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--pr-green);
  box-shadow: 0 0 0 5px rgba(24, 201, 129, 0.14);
}

.section-title {
  max-width: 820px;
  margin: 0 auto 38px;
  text-align: center;
}

.section-title h2,
.station-remake h2 {
  color: #171411;
  font-family: var(--heading-font);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 0;
}

.section-title p {
  color: #61594d;
  font-size: 18px;
}

/* Header */
.header {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.header .topbar {
  min-height: 36px;
  color: #111;
  background: var(--pr-gold);
}

body.scrolled .header .topbar,
.scrolled .header .topbar {
  height: 40px !important;
  visibility: visible !important;
  overflow: visible !important;
  color: #111 !important;
  background: var(--pr-gold) !important;
}

.header .topbar a,
.header .topbar .social-links a,
body.scrolled .header .topbar a,
.scrolled .header .topbar a {
  color: #111;
  font-weight: 800;
}

.header .branding {
  min-height: 80px;
  background: rgba(11, 10, 9, 0.96);
  border-bottom: 1px solid rgba(212, 175, 55, 0.18);
}

.header .branding .container {
  gap: 14px;
}

.header .container {
  min-width: 0;
}

.header .logo {
  flex: 0 0 auto;
}

.header .logo img {
  max-height: 64px;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.35));
}

.navmenu {
  min-width: 0;
  margin-left: auto;
}

.navmenu ul {
  column-gap: 2px;
}

.navmenu a,
.navmenu a:focus {
  color: rgba(255, 255, 255, 0.84);
  font-weight: 800;
}

.navmenu a:hover,
.navmenu .active,
.navmenu .active:focus {
  color: var(--pr-gold);
}

@media (min-width: 1200px) {
  .navmenu > ul > li {
    padding: 15px 10px;
  }

  .navmenu .nav-more > a {
    gap: 5px;
  }

  .navmenu .dropdown ul {
    min-width: 218px;
    padding: 8px;
    background: #14110e;
    border: 1px solid var(--pr-line);
    border-radius: 8px;
    box-shadow: 0 20px 42px rgba(0, 0, 0, 0.32);
  }

  .navmenu .dropdown ul a,
  .navmenu .dropdown ul a:focus {
    min-height: 40px;
    padding: 9px 11px;
    color: rgba(255, 255, 255, 0.84);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 850;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active,
  .navmenu .dropdown ul .active:focus {
    color: #111;
    background: var(--pr-gold);
  }

  .navmenu .dropdown > .dropdown-active {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }
}

.custom-live-btn,
.header .cta-btn {
  min-height: 44px;
  color: #111;
  background: var(--pr-gold);
  border-radius: 8px;
  font-weight: 900;
  box-shadow: none;
}

.header .live-dropdown {
  flex: 0 0 auto;
  margin-left: 6px;
  position: relative;
  z-index: 10020;
}

.custom-live-btn {
  white-space: nowrap;
}

.spam-check {
  position: absolute !important;
  inline-size: 1px !important;
  block-size: 1px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
  left: 0 !important;
  top: 0 !important;
  transform: translate(-1px, -1px) !important;
}

.custom-dropdown {
  border: 1px solid var(--pr-line);
  border-radius: 8px;
  background: #14110e;
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.28);
  min-width: 246px;
  padding: 8px;
  z-index: 10030;
}

.custom-dropdown .dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: transparent;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.custom-dropdown .dropdown-item i {
  flex: 0 0 20px;
  color: var(--pr-gold);
  font-size: 16px;
  line-height: 1;
}

.custom-dropdown .dropdown-item:hover,
.custom-dropdown .dropdown-item.is-active {
  color: #111;
  background: var(--pr-gold);
}

.custom-dropdown .dropdown-item:hover i,
.custom-dropdown .dropdown-item.is-active i {
  color: #111;
}

/* Hero */
.broadcast-hero {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  color: var(--pr-text);
  background: var(--pr-black);
}

.broadcast-hero-media,
.broadcast-hero-media img,
.broadcast-hero-shade {
  position: absolute;
  inset: 0;
}

.broadcast-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 56% 50%;
}

.broadcast-hero-shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(6, 6, 6, 0.98) 0%, rgba(6, 6, 6, 0.9) 28%, rgba(6, 6, 6, 0.42) 56%, rgba(6, 6, 6, 0.7) 100%),
    linear-gradient(0deg, rgba(6, 6, 6, 0.82) 0%, rgba(6, 6, 6, 0.05) 50%, rgba(6, 6, 6, 0.42) 100%);
}

.broadcast-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.62fr);
  gap: 42px;
  align-items: center;
  width: 100%;
  padding-top: 86px;
  padding-bottom: 92px;
}

.broadcast-copy {
  max-width: 760px;
}

.on-air-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 38px;
  padding: 9px 12px;
  color: #111;
  background: var(--pr-gold);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.broadcast-copy h1 {
  margin: 22px 0 0;
  color: #fff;
  font-size: clamp(58px, 8vw, 112px);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: 0;
  text-shadow: 0 18px 52px rgba(0, 0, 0, 0.55);
}

.broadcast-lead {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(19px, 2vw, 25px);
  font-weight: 650;
  line-height: 1.42;
}

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

.broadcast-primary,
.broadcast-secondary,
.channel-body button,
.form-status button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: 12px 18px;
  border: 0;
  border-radius: 8px;
  color: #111;
  background: var(--pr-gold);
  font-weight: 900;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.broadcast-secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.broadcast-primary:hover,
.broadcast-secondary:hover,
.channel-body button:hover,
.form-status button:hover {
  transform: translateY(-1px);
  color: #111;
  background: #edcb57;
}

.broadcast-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.broadcast-proof span {
  display: inline-flex;
  align-items: baseline;
  gap: 7px;
  min-height: 40px;
  padding: 9px 13px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  font-weight: 800;
}

.broadcast-proof strong {
  color: var(--pr-gold);
  font-size: 18px;
}

.studio-console {
  padding: 24px;
  color: #fff;
  background: rgba(18, 16, 13, 0.88);
  border: 1px solid var(--pr-line);
  border-radius: 8px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(12px);
}

.console-top {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--pr-gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.console-live-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--pr-green);
  box-shadow: 0 0 0 6px rgba(24, 201, 129, 0.16);
}

.studio-console h2 {
  margin: 12px 0 8px;
  color: #fff;
  font-size: 31px;
}

.studio-console p {
  margin: 0 0 18px;
  color: var(--pr-muted);
}

.console-stations {
  display: grid;
  gap: 10px;
}

.console-station {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 13px;
  width: 100%;
  min-height: 74px;
  padding: 12px;
  text-align: left;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

.console-station:hover,
.console-station.is-active {
  border-color: var(--pr-gold);
  background: rgba(212, 175, 55, 0.14);
}

.station-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: #111;
  background: var(--pr-gold);
  border-radius: 8px;
  font-size: 20px;
}

.console-station strong,
.console-station small {
  display: block;
}

.console-station strong {
  font-size: 16px;
}

.console-station small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.66);
}

/* Live desk */
.live-desk {
  color: var(--pr-text);
  background: #11100e;
}

.desk-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  gap: 26px;
  align-items: start;
}

.desk-copy {
  position: sticky;
  top: 124px;
}

.desk-copy h2 {
  margin: 12px 0;
  color: #fff;
  font-size: clamp(36px, 5vw, 58px);
}

.desk-copy p {
  color: var(--pr-muted);
  font-size: 18px;
}

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

.station-card {
  position: relative;
  display: grid;
  grid-template-columns: 124px minmax(0, 1fr);
  gap: 16px;
  align-items: stretch;
  width: 100%;
  min-height: 214px;
  padding: 14px;
  overflow: hidden;
  text-align: left;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.05), transparent 42%),
    var(--pr-panel);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.station-card:hover,
.station-card.is-active {
  border-color: var(--pr-gold);
  background: #242018;
  transform: translateY(-2px);
}

.station-card-art {
  position: relative;
  display: grid;
  place-items: center;
  width: 124px;
  height: 100%;
  min-height: 178px;
  overflow: hidden;
  background: #111;
  border-radius: 8px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.station-card-icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  color: #111;
  background: var(--pr-gold);
  border-radius: 8px;
  font-size: 24px;
}

.station-artwork {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.station-artwork[hidden] {
  display: none;
}

.station-card.has-artwork .station-card-icon {
  display: none;
}

.station-card-main {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 2px 0;
}

.station-card-main strong,
.station-card-main small,
.station-now,
.station-next,
.station-status {
  display: block;
}

.station-status {
  width: fit-content;
  margin-bottom: 7px;
  padding: 4px 8px;
  color: #111;
  background: var(--pr-gold);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.station-card.is-live .station-status {
  color: #06150f;
  background: var(--pr-green);
}

.station-card-main strong {
  font-size: 22px;
  font-weight: 900;
  line-height: 1.08;
}

.station-card-main small {
  margin: 3px 0 10px;
  color: rgba(255, 255, 255, 0.64);
}

.station-now,
.station-next {
  overflow: hidden;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  line-height: 1.35;
  text-overflow: ellipsis;
}

.station-now {
  margin-top: auto;
  padding-top: 12px;
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  white-space: nowrap;
}

.station-now::before,
.station-next::before {
  display: block;
  margin-bottom: 3px;
  color: var(--pr-gold);
  font-size: 10px;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.station-now::before {
  content: "Nu speelt";
}

.station-next {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.52);
  white-space: nowrap;
}

.station-next::before {
  content: "Straks";
}

.station-live-details {
  grid-column: 1 / -1;
  margin-top: 8px;
}

.live-track-block {
  display: grid;
  gap: 5px;
}

.live-track-row {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 8px;
  padding: 6px 8px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 8px;
}

.live-track-label {
  color: var(--pr-gold);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.live-track-value {
  overflow: hidden;
  color: #fff;
  white-space: nowrap;
  text-overflow: ellipsis;
}

/* Channels */
.channels {
  background: var(--pr-paper);
}

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

.channel-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--pr-paper-line);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(35, 28, 18, 0.08);
}

.channel-art {
  aspect-ratio: 1 / 0.78;
  overflow: hidden;
  background: #111;
}

.channel-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.channel-card:hover .channel-art img {
  transform: scale(1.03);
}

.channel-body {
  display: flex;
  flex-direction: column;
  min-height: 292px;
  padding: 18px;
}

.channel-body span {
  color: var(--pr-gold-deep);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.channel-body h3 {
  margin: 8px 0;
  color: #171411;
  font-size: 25px;
  font-weight: 900;
  line-height: 1.08;
}

.channel-body p {
  color: #625a50;
  line-height: 1.55;
}

.channel-note {
  margin-bottom: 12px;
  color: var(--pr-gold-deep);
  font-weight: 900;
}

.channel-body button {
  width: 100%;
  margin-top: auto;
}

/* Station life */
.station-life {
  color: #fff;
  background: #11100e;
}

.life-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.45fr);
  gap: 22px;
  align-items: stretch;
}

.life-panel,
.schedule-board,
.request-guide,
.contact-intro {
  border-radius: 8px;
}

.life-panel {
  padding: clamp(26px, 4vw, 48px);
  background: linear-gradient(145deg, rgba(34, 29, 21, 0.96), rgba(18, 17, 15, 0.96));
  border: 1px solid var(--pr-line);
}

.life-panel h2 {
  margin: 12px 0;
  color: #fff;
  font-size: clamp(36px, 5vw, 62px);
}

.life-panel p {
  max-width: 760px;
  color: var(--pr-muted);
  font-size: 19px;
}

.life-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
}

.life-list span {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 58px;
  padding: 12px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  font-weight: 800;
}

.life-list i {
  color: var(--pr-gold);
}

.schedule-board {
  padding: 24px;
  color: #fff;
  background: #201c17;
  border: 1px solid var(--pr-line);
}

.board-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.board-top span {
  color: var(--pr-gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.board-top strong {
  padding: 6px 9px;
  color: #06150f;
  background: var(--pr-green);
  border-radius: 999px;
  font-size: 12px;
}

.schedule-row {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  gap: 12px;
  padding: 15px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
}

.schedule-row time {
  color: var(--pr-gold);
  font-weight: 900;
}

.schedule-board a {
  display: inline-flex;
  justify-content: center;
  width: 100%;
  min-height: 46px;
  margin-top: 16px;
  padding: 12px;
  color: #111;
  background: var(--pr-gold);
  border-radius: 8px;
  font-weight: 900;
}

/* Join */
.join-station {
  background: #fff;
}

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

.join-card {
  min-height: 172px;
  padding: 20px;
  color: #1c1812;
  background: var(--pr-paper);
  border: 1px solid var(--pr-paper-line);
  border-radius: 8px;
}

.join-card i {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  color: #111;
  background: var(--pr-gold);
  border-radius: 8px;
  font-size: 21px;
}

.join-card strong,
.join-card span {
  display: block;
}

.join-card strong {
  font-size: 19px;
  font-weight: 900;
}

.join-card span {
  margin-top: 6px;
  color: #61594d;
}

/* Forms */
.studio-request {
  color: #fff;
  background: #11100e;
}

.request-layout,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.42fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.request-guide,
.contact-intro {
  padding: 28px;
  color: #fff;
  background: #1d1914;
  border: 1px solid var(--pr-line);
}

.request-guide h2,
.contact-intro h2 {
  margin: 12px 0;
  color: #fff;
  font-size: clamp(32px, 4vw, 50px);
}

.request-guide p,
.contact-intro p {
  color: var(--pr-muted);
  font-size: 17px;
}

.request-guide ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.request-guide li {
  display: flex;
  gap: 10px;
  color: #fff;
  font-weight: 800;
}

.request-guide li i {
  color: var(--pr-gold);
}

.php-email-form {
  padding: 24px;
  background: #fff;
  border: 1px solid var(--pr-paper-line);
  border-radius: 8px;
  box-shadow: 0 20px 52px rgba(32, 24, 16, 0.08);
}

.studio-request .php-email-form {
  color: #2b251c;
  background: #f7f4ed;
}

.studio-request .php-email-form,
.contact-grid .php-email-form {
  color: #2b251c !important;
  background: #f7f4ed !important;
}

.studio-request .php-email-form p,
.studio-request .php-email-form span,
.studio-request .php-email-form label,
.contact-grid .php-email-form p,
.contact-grid .php-email-form span,
.contact-grid .php-email-form label {
  color: #2b251c;
}

.studio-request .live-request-state {
  display: flex;
  align-items: center;
  min-height: 44px;
  margin: 0 0 16px;
  padding: 10px 12px;
  color: #2b251c !important;
  background: rgba(212, 175, 55, 0.16);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 8px;
  font-weight: 850;
}

.studio-request .live-request-state.is-live {
  color: #06150f !important;
  background: rgba(24, 201, 129, 0.18);
  border-color: rgba(24, 201, 129, 0.35);
}

.request-wall {
  margin-top: 34px;
}

.request-wall-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.request-wall-head h3 {
  margin: 10px 0 0;
  color: #fff;
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 950;
}

.request-wall-head a {
  color: var(--pr-gold);
  font-weight: 950;
}

.request-wall-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.request-card,
.request-empty {
  padding: 20px;
  color: #fff;
  background: #1d1914;
  border: 1px solid var(--pr-line);
  border-radius: 8px;
}

.request-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.request-card-top span {
  padding: 6px 9px;
  color: #111;
  background: var(--pr-gold);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.request-card-top small,
.request-card p,
.request-empty p {
  color: var(--pr-muted);
}

.request-card strong {
  display: block;
  color: #fff;
  font-size: 18px;
  font-weight: 950;
  line-height: 1.25;
}

.request-card p {
  margin: 10px 0 0;
  line-height: 1.55;
}

.request-empty {
  display: flex;
  align-items: center;
  gap: 14px;
}

.request-empty i {
  display: grid;
  flex: 0 0 44px;
  place-items: center;
  width: 44px;
  height: 44px;
  color: #111;
  background: var(--pr-gold);
  border-radius: 8px;
}

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

.form-grid label {
  display: grid;
  gap: 7px;
  color: #2b251c;
  font-size: 13px;
  font-weight: 900;
}

.form-grid .form-wide {
  grid-column: 1 / -1;
}

.form-control,
.php-email-form input[type=text],
.php-email-form input[type=email],
.php-email-form input[type=tel],
.php-email-form textarea,
.php-email-form select {
  min-height: 48px;
  color: #181410;
  background: #fff;
  border: 1px solid #ded7ca;
  border-radius: 8px;
  box-shadow: none;
}

.php-email-form textarea {
  min-height: 132px;
  resize: vertical;
}

.form-control:focus,
.php-email-form input:focus,
.php-email-form textarea:focus,
.php-email-form select:focus {
  border-color: var(--pr-gold);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.16);
}

.form-status {
  margin-top: 16px;
  text-align: center;
}

.form-status button {
  min-width: min(100%, 260px);
}

.contact {
  background: var(--pr-paper);
}

.contact-line {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  color: #fff;
  font-weight: 800;
}

.contact-line i,
.contact-line a {
  color: var(--pr-gold);
}

/* Platform sections */
.station-command {
  color: #fff;
  background: #16130f;
}

.command-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.42fr);
  gap: 18px;
}

.command-panel,
.growth-copy,
.chart-preview,
.crew-mini-card,
.crew-card,
.day-card,
.roadmap-grid article,
.talent-panel,
.chart-board,
.engine-grid article {
  border-radius: 8px;
}

.command-panel {
  min-height: 310px;
  padding: clamp(24px, 4vw, 42px);
  background: #211d17;
  border: 1px solid var(--pr-line);
}

.command-panel-primary {
  background:
    linear-gradient(135deg, rgba(34, 30, 23, 0.96), rgba(10, 10, 9, 0.98)),
    #14110e;
}

.command-panel h2,
.command-panel h3,
.growth-copy h2,
.station-page-hero h1,
.talent-panel h2 {
  color: #fff;
  font-family: var(--heading-font);
  font-weight: 950;
  line-height: 1.04;
  letter-spacing: 0;
}

.command-panel h2 {
  max-width: 780px;
  margin: 12px 0;
  font-size: clamp(38px, 5vw, 66px);
}

.command-panel h3 {
  margin: 14px 0 10px;
  font-size: clamp(30px, 3.5vw, 46px);
}

.command-panel p,
.growth-copy p,
.station-page-hero p,
.talent-panel p {
  color: var(--pr-muted);
  font-size: 18px;
  line-height: 1.58;
}

.command-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.command-actions a,
.growth-link,
.talent-actions a,
.roadmap-grid a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 11px 14px;
  color: #111;
  background: var(--pr-gold);
  border-radius: 8px;
  font-weight: 950;
}

.command-actions a:nth-child(2),
.command-actions a:nth-child(3),
.talent-actions a:nth-child(2),
.talent-actions a:nth-child(3) {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.command-label,
.chart-preview-top span,
.crew-mini-card span,
.crew-card span {
  color: var(--pr-gold);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.command-meta {
  display: grid;
  gap: 9px;
  margin-top: 22px;
}

.command-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-weight: 850;
}

.schedule-row.is-current {
  margin-left: -10px;
  margin-right: -10px;
  padding-left: 10px;
  padding-right: 10px;
  background: rgba(24, 201, 129, 0.12);
  border-radius: 8px;
}

.schedule-row span strong,
.schedule-row span small {
  display: block;
}

.schedule-row span small {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
}

.station-growth {
  color: #fff;
  background: #11100e;
}

.growth-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.45fr) minmax(0, 0.7fr) minmax(320px, 0.45fr);
  gap: 16px;
  align-items: stretch;
}

.growth-copy,
.chart-preview {
  padding: 26px;
  background: #1d1914;
  border: 1px solid var(--pr-line);
}

.growth-copy h2 {
  margin: 12px 0;
  font-size: clamp(28px, 3vw, 42px);
  overflow-wrap: anywhere;
}

.growth-link {
  margin-top: 16px;
}

.crew-preview {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.crew-mini-card {
  min-height: 176px;
  padding: 18px;
  color: #fff;
  background: #242018;
  border: 1px solid rgba(255, 255, 255, 0.11);
}

.crew-mini-card i,
.crew-card .crew-icon,
.roadmap-grid i,
.engine-grid i {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 14px;
  color: #111;
  background: var(--pr-gold);
  border-radius: 8px;
  font-size: 22px;
}

.crew-mini-card strong,
.crew-mini-card small {
  display: block;
}

.crew-mini-card strong {
  margin-top: 8px;
  font-size: 18px;
}

.crew-mini-card small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.64);
}

.chart-preview-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.chart-preview-top a {
  color: var(--pr-gold);
  font-weight: 950;
}

.chart-preview-row {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 10px;
  padding: 13px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.chart-preview-row > span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: #111;
  background: var(--pr-gold);
  border-radius: 8px;
  font-weight: 950;
}

.chart-preview-row strong,
.chart-preview-row small {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.chart-preview-row small {
  color: rgba(255, 255, 255, 0.6);
}

/* Platform pages */
.station-page {
  background: var(--pr-paper);
}

.station-page-hero {
  position: relative;
  overflow: hidden;
  padding: 132px 0 74px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(7, 7, 7, 0.94), rgba(22, 18, 12, 0.86)),
    url("../img/platinum-radio-booth-hero.webp") center / cover no-repeat;
}

.station-page-hero h1 {
  max-width: 920px;
  margin: 16px 0 18px;
  font-size: clamp(46px, 7vw, 86px);
}

.station-page-hero p {
  max-width: 760px;
}

.page-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.onair-ribbon {
  padding: 28px 0;
  color: #fff;
  background: #11100e;
}

.onair-ribbon-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  min-height: 74px;
  padding: 16px 20px;
  background: #201c17;
  border: 1px solid var(--pr-line);
  border-radius: 8px;
}

.onair-ribbon-inner span {
  color: var(--pr-gold);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.onair-ribbon-inner strong {
  overflow: hidden;
  color: #fff;
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 950;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.onair-ribbon-inner small {
  color: rgba(255, 255, 255, 0.66);
  font-weight: 850;
}

.week-schedule,
.chart-board-section {
  background: var(--pr-paper);
}

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

.day-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--pr-paper-line);
  box-shadow: 0 18px 44px rgba(35, 28, 18, 0.08);
}

.day-card header {
  padding: 18px 20px;
  color: #fff;
  background: #191610;
}

.day-card.is-today header {
  background: #241f15;
  border-bottom: 3px solid var(--pr-gold);
}

.day-card header span {
  color: var(--pr-gold);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.day-card h3 {
  margin: 4px 0 0;
  color: #fff;
  font-size: 27px;
  font-weight: 950;
}

.day-card-list {
  display: grid;
}

.day-show {
  display: grid;
  gap: 4px;
  padding: 16px 20px;
  border-top: 1px solid var(--pr-paper-line);
}

.day-show.is-current {
  background: rgba(24, 201, 129, 0.1);
}

.day-show time {
  color: var(--pr-gold-deep);
  font-size: 12px;
  font-weight: 950;
}

.day-show strong {
  color: #171411;
  font-size: 19px;
  font-weight: 950;
}

.day-show span {
  color: #5d554a;
  font-weight: 850;
}

.day-show small {
  color: #6f665b;
  line-height: 1.5;
}

.format-roadmap,
.talent-call,
.chart-engine {
  color: #fff;
  background: #11100e;
}

.roadmap-grid,
.engine-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.roadmap-grid article,
.engine-grid article {
  min-height: 250px;
  padding: 24px;
  background: #1d1914;
  border: 1px solid var(--pr-line);
}

.roadmap-grid h3,
.engine-grid h3 {
  color: #fff;
  font-size: 24px;
  font-weight: 950;
}

.roadmap-grid p,
.engine-grid p {
  color: var(--pr-muted);
}

.crew-directory {
  background: var(--pr-paper);
}

.crew-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.crew-card {
  min-height: 292px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--pr-paper-line);
  box-shadow: 0 18px 44px rgba(35, 28, 18, 0.08);
}

.crew-card .crew-icon {
  font-size: 24px;
}

.crew-card h3 {
  margin: 8px 0 6px;
  color: #171411;
  font-size: 25px;
  font-weight: 950;
}

.crew-card strong {
  display: block;
  color: #5d554a;
  font-size: 14px;
}

.crew-card p {
  margin-top: 14px;
  color: #6a6155;
}

.talent-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.4fr);
  gap: 24px;
  align-items: center;
  padding: clamp(26px, 4vw, 46px);
  background: #1d1914;
  border: 1px solid var(--pr-line);
}

.talent-actions {
  display: grid;
  gap: 10px;
}

.chart-board {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--pr-paper-line);
  box-shadow: 0 18px 44px rgba(35, 28, 18, 0.08);
}

.chart-source-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
  padding: 14px 16px;
  color: #2b251c;
  background: #f7f4ed;
  border: 1px solid var(--pr-paper-line);
  border-radius: 8px;
}

.chart-source-note span {
  color: #171411;
  font-weight: 950;
}

.chart-source-note small {
  color: #665d52;
  font-weight: 850;
}

.chart-row {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr) 210px 72px;
  gap: 14px;
  align-items: center;
  min-height: 82px;
  padding: 14px 20px;
  border-top: 1px solid var(--pr-paper-line);
}

.chart-row:first-child {
  border-top: 0;
}

.chart-row.is-top {
  background: rgba(212, 175, 55, 0.1);
}

.chart-position {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: #111;
  background: var(--pr-gold);
  border-radius: 8px;
  font-size: 21px;
  font-weight: 950;
}

.chart-track {
  min-width: 0;
}

.chart-track strong,
.chart-track span {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.chart-track strong {
  color: #171411;
  font-size: 22px;
  font-weight: 950;
}

.chart-track span,
.chart-station {
  color: #665d52;
  font-weight: 800;
}

.chart-movement {
  justify-self: end;
  min-width: 54px;
  padding: 7px 9px;
  text-align: center;
  color: #111;
  background: #f0e6ca;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 950;
}

/* Listen and media pages */
.listen-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.listen-card {
  display: grid;
  grid-template-columns: 164px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  min-height: 220px;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--pr-paper-line);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(35, 28, 18, 0.08);
}

.listen-card img {
  width: 164px;
  height: 164px;
  object-fit: cover;
  border-radius: 8px;
}

.listen-card span,
.package-card span {
  color: var(--pr-gold-dark);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.listen-card h3,
.media-grid h3,
.package-card h3,
.method-grid h3,
.pipeline-copy h2 {
  margin: 8px 0 10px;
  color: #171411;
  font-weight: 950;
}

.listen-card p,
.media-grid p,
.package-card p,
.method-grid p,
.pipeline-copy p {
  color: #665d52;
  line-height: 1.6;
}

.listen-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.listen-actions button,
.listen-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 42px;
  padding: 9px 13px;
  color: #111;
  background: var(--pr-gold);
  border: 0;
  border-radius: 8px;
  font-weight: 950;
}

.listen-actions a {
  color: #2b251c;
  background: #f0e6ca;
}

.listen-methods,
.sponsor-packages {
  background: #fff;
}

.method-grid,
.media-grid,
.package-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

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

.method-grid article,
.media-grid article,
.package-card {
  min-height: 230px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--pr-paper-line);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(35, 28, 18, 0.08);
}

.method-grid i,
.media-grid i {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: #111;
  background: var(--pr-gold);
  border-radius: 8px;
  font-size: 22px;
}

.media-overview {
  background: var(--pr-paper);
}

.media-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 24px;
}

.media-metrics span {
  display: grid;
  gap: 4px;
  min-height: 92px;
  padding: 18px;
  color: #665d52;
  background: #fff;
  border: 1px solid var(--pr-paper-line);
  border-radius: 8px;
  font-weight: 850;
  text-transform: uppercase;
}

.media-metrics strong {
  color: #171411;
  font-size: 32px;
  font-weight: 950;
  line-height: 1;
}

.package-card.is-featured {
  color: #fff;
  background: #1d1914;
  border-color: var(--pr-line);
}

.package-card.is-featured h3 {
  color: #fff;
}

.package-card.is-featured p {
  color: var(--pr-muted);
}

.station-pipeline {
  color: #fff;
  background: #11100e;
}

.station-pipeline .container {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.6fr);
  gap: 24px;
  align-items: center;
}

.pipeline-copy h2 {
  color: #fff;
  font-size: clamp(34px, 5vw, 62px);
}

.pipeline-copy p {
  color: var(--pr-muted);
  max-width: 760px;
  font-size: 18px;
}

.pipeline-steps {
  display: grid;
  gap: 10px;
}

.pipeline-steps span {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 12px 14px;
  color: #fff;
  background: #1d1914;
  border: 1px solid var(--pr-line);
  border-radius: 8px;
  font-weight: 950;
}

/* FAQ */
.faq.light-background {
  background: #fff;
}

.faq-container {
  max-width: 920px;
  margin: 0 auto;
}

.faq .faq-item {
  border-radius: 8px;
  border: 1px solid var(--pr-paper-line);
  box-shadow: none;
}

/* Footer and player */
.footer.light-background {
  color: rgba(255, 255, 255, 0.76);
  background: #0c0b0a;
}

.footer h4,
.footer .sitename,
.footer a {
  color: #fff;
}

.footer a:hover {
  color: var(--pr-gold);
}

body > #customPlayer.radio-player,
#customPlayer.radio-player {
  width: min(1120px, calc(100% - 32px)) !important;
  min-height: 96px;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(264px, 380px) auto;
  align-items: center;
  gap: 16px;
  overflow: hidden;
  padding: 14px 16px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(17, 15, 12, 0.98), rgba(8, 8, 8, 0.96)),
    rgba(12, 11, 10, 0.96);
  border: 1px solid rgba(212, 175, 55, 0.32);
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(16px);
}

body > #customPlayer.radio-player::before,
#customPlayer.radio-player::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--pr-green), var(--pr-gold), rgba(217, 76, 69, 0.85));
  pointer-events: none;
}

.radio-player .player-left {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.player-art {
  position: relative;
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  overflow: hidden;
  border-radius: 8px;
  background:
    radial-gradient(circle at 35% 20%, rgba(255, 255, 255, 0.22), transparent 28%),
    linear-gradient(145deg, #e1bd44, #9d7c21);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2), 0 16px 34px rgba(0, 0, 0, 0.28);
}

.player-art::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
  pointer-events: none;
}

.player-artwork {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.player-artwork[hidden] {
  display: none;
}

.player-art-fallback {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}

.player-art-fallback[hidden] {
  display: none;
}

.player-art i {
  color: #111;
  font-size: 29px;
}

.radio-player .equalizer-bars {
  position: absolute;
  right: 10px;
  bottom: 10px;
  display: inline-flex;
  align-items: flex-end;
  gap: 3px;
  height: 18px;
}

.radio-player .equalizer-bars span {
  width: 4px;
  min-height: 5px;
  background: #111;
  border-radius: 999px;
}

.station-info {
  min-width: 0;
}

.live-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--pr-green);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0;
}

.live-label > span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--pr-green);
  box-shadow: 0 0 0 4px rgba(24, 201, 129, 0.16);
}

.station-info h4 {
  max-width: 100%;
  margin: 2px 0 3px;
  overflow: hidden;
  color: #fff;
  font-size: 18px;
  font-weight: 950;
  line-height: 1.16;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.station-info p {
  max-width: 440px;
  margin: 0;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 750;
  line-height: 1.35;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.station-info .player-next-song {
  color: rgba(255, 255, 255, 0.54);
  font-size: 12px;
  font-weight: 650;
}

.player-spectrum {
  justify-self: stretch;
  display: grid;
  grid-template-columns: repeat(64, 1fr);
  align-items: end;
  gap: 1px;
  width: 100%;
  height: 64px;
  min-width: 0;
  padding: 8px 10px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

.player-spectrum span {
  --level: 0.18;
  --idle-scale: 0.46;
  align-self: end;
  display: block;
  position: relative;
  height: 52px;
  min-width: 0;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025));
  border-radius: 999px 999px 3px 3px;
}

.player-spectrum span::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 100%;
  background: linear-gradient(180deg, #f2d267, var(--pr-gold) 58%, var(--pr-green));
  border-radius: inherit;
  opacity: calc(0.46 + (var(--level) * 0.54));
  transform: scaleY(var(--level));
  transform-origin: center bottom;
  transition: transform 80ms linear, opacity 80ms linear;
  will-change: transform, opacity;
}

.radio-player:not(.spectrum-active) .player-spectrum span::before,
.radio-player.spectrum-fallback.is-playing .player-spectrum span::before {
  animation: spectrum-idle 1.1s ease-in-out infinite;
  animation-delay: calc(var(--bar-index, 0) * -48ms);
}

.player-spectrum span:nth-child(1) { --bar-index: 1; --idle-scale: 0.35; }
.player-spectrum span:nth-child(2) { --bar-index: 2; --idle-scale: 0.54; }
.player-spectrum span:nth-child(3) { --bar-index: 3; --idle-scale: 0.69; }
.player-spectrum span:nth-child(4) { --bar-index: 4; --idle-scale: 0.46; }
.player-spectrum span:nth-child(5) { --bar-index: 5; --idle-scale: 0.77; }
.player-spectrum span:nth-child(6) { --bar-index: 6; --idle-scale: 0.58; }
.player-spectrum span:nth-child(7) { --bar-index: 7; --idle-scale: 0.42; }
.player-spectrum span:nth-child(8) { --bar-index: 8; --idle-scale: 0.65; }
.player-spectrum span:nth-child(9) { --bar-index: 9; --idle-scale: 0.5; }
.player-spectrum span:nth-child(10) { --bar-index: 10; --idle-scale: 0.73; }
.player-spectrum span:nth-child(11) { --bar-index: 11; --idle-scale: 0.52; }
.player-spectrum span:nth-child(12) { --bar-index: 12; --idle-scale: 0.38; }
.player-spectrum span:nth-child(13) { --bar-index: 13; --idle-scale: 0.62; }
.player-spectrum span:nth-child(14) { --bar-index: 14; --idle-scale: 0.81; }
.player-spectrum span:nth-child(15) { --bar-index: 15; --idle-scale: 0.48; }
.player-spectrum span:nth-child(16) { --bar-index: 16; --idle-scale: 0.63; }

@keyframes spectrum-idle {
  0%,
  100% {
    opacity: 0.42;
    transform: scaleY(0.16);
  }

  50% {
    opacity: 0.82;
    transform: scaleY(var(--idle-scale));
  }
}

#playBtn,
.player-close {
  border-radius: 50%;
}

#playBtn {
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  border: 0;
  color: #111;
  background: var(--pr-gold);
  box-shadow: 0 12px 28px rgba(212, 175, 55, 0.2);
}

.radio-player.is-playing #playBtn {
  box-shadow: 0 0 0 8px rgba(212, 175, 55, 0.12), 0 12px 28px rgba(212, 175, 55, 0.22);
}

.radio-player .player-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.volume-wrap {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 8px 10px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
}

#volumeControl {
  width: 96px;
  accent-color: var(--pr-gold);
}

.player-close {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.player-close:hover {
  color: #111;
  background: var(--pr-gold);
}

/* Mobile navigation */
@media (max-width: 1199px) {
  .header .logo {
    order: 1;
    margin-right: auto;
  }

  .header .live-dropdown {
    order: 2;
    margin-left: 12px;
  }

  .header .navmenu {
    order: 3;
    flex: 0 0 auto;
    margin-left: 0;
  }

  .mobile-nav-toggle {
    display: inline-grid;
    place-items: center;
    width: 46px;
    height: 46px;
    margin-left: 10px;
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    inset: 0;
    z-index: 9997;
    box-sizing: border-box;
    width: 100vw;
    height: 100dvh;
    padding: 92px 18px 22px;
    background: rgba(9, 9, 9, 0.94);
    backdrop-filter: blur(14px);
    overflow-y: auto;
  }

  .mobile-nav-active .navmenu > ul {
    position: static;
    display: grid;
    gap: 8px;
    max-width: 440px;
    margin: 0 auto;
    padding: 0;
    background: transparent;
    box-shadow: none;
  }

  .mobile-nav-active .navmenu a {
    display: flex;
    align-items: center;
    min-height: 52px;
    padding: 12px 16px;
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    font-size: 18px;
  }

  .mobile-nav-active .navmenu .dropdown ul {
    margin: 8px 0 0;
    padding: 8px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
  }

  .mobile-nav-active .navmenu .dropdown > .dropdown-active {
    display: grid;
    gap: 8px;
  }

  .mobile-nav-active .navmenu .dropdown ul a {
    min-height: 46px;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.07);
  }

  .mobile-nav-active .mobile-nav-toggle {
    position: fixed;
    top: 58px;
    right: 18px;
    z-index: 9999;
    color: #111;
    background: var(--pr-gold);
  }
}

@media (max-width: 575px) {
  .header .live-dropdown {
    display: none;
  }
}

@media (max-width: 1199px) {
  body.mobile-nav-active #navmenu.navmenu {
    position: fixed !important;
    inset: 0 !important;
    box-sizing: border-box !important;
    width: 100vw !important;
    height: 100dvh !important;
    padding: 92px 18px 22px !important;
    overflow-y: auto !important;
  }

  body.mobile-nav-active #navmenu.navmenu > ul {
    position: static !important;
    display: grid !important;
    height: auto !important;
    overflow: visible !important;
  }
}

@media (max-width: 1199px) {
  .broadcast-hero-inner,
  .desk-grid,
  .life-grid,
  .request-layout,
  .contact-grid,
  .command-grid,
  .growth-layout,
  .talent-panel,
  .station-pipeline .container {
    grid-template-columns: 1fr;
  }

  .request-wall-grid,
  .listen-grid,
  .media-grid,
  .package-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .method-grid,
  .media-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .desk-copy {
    position: static;
  }

  .channel-grid,
  .join-grid,
  .crew-grid,
  .week-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .roadmap-grid,
  .engine-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  body.player-visible {
    padding-bottom: 180px;
  }

  .section {
    padding: 64px 0;
  }

  .header .branding {
    min-height: 88px;
  }

  .header .logo img {
    max-width: 220px;
    max-height: 68px;
  }

  .broadcast-hero {
    min-height: auto;
  }

  .broadcast-hero-inner {
    gap: 24px;
    padding-top: 72px;
    padding-bottom: 60px;
  }

  .broadcast-hero [data-aos] {
    opacity: 1 !important;
    transform: none !important;
  }

  .broadcast-hero-media img {
    object-position: 70% 50%;
  }

  .broadcast-hero-shade {
    background:
      linear-gradient(90deg, rgba(6, 6, 6, 0.98) 0%, rgba(6, 6, 6, 0.82) 54%, rgba(6, 6, 6, 0.7) 100%),
      linear-gradient(0deg, rgba(6, 6, 6, 0.9) 0%, rgba(6, 6, 6, 0.2) 58%, rgba(6, 6, 6, 0.5) 100%);
  }

  .broadcast-copy h1 {
    font-size: clamp(50px, 15vw, 72px);
  }

  .broadcast-actions,
  .broadcast-proof {
    flex-direction: column;
    align-items: stretch;
  }

  .broadcast-primary,
  .broadcast-secondary {
    width: 100%;
  }

  .studio-console {
    padding: 18px;
  }

  .station-grid,
  .channel-grid,
  .join-grid,
  .life-list,
  .form-grid,
  .crew-preview,
  .crew-grid,
  .week-grid,
  .request-wall-grid,
  .listen-grid,
  .method-grid,
  .media-grid,
  .package-grid,
  .media-metrics {
    grid-template-columns: 1fr;
  }

  .listen-card {
    grid-template-columns: 1fr;
  }

  .listen-card img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
  }

  .chart-source-note {
    align-items: start;
    flex-direction: column;
  }

  .station-page-hero {
    padding: 96px 0 58px;
  }

  .page-hero-actions,
  .command-actions,
  .request-wall-head {
    flex-direction: column;
    align-items: stretch;
  }

  .page-hero-actions > *,
  .command-actions a,
  .talent-actions a {
    width: 100%;
  }

  .onair-ribbon-inner,
  .chart-row {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .onair-ribbon-inner strong,
  .chart-track strong,
  .chart-track span {
    white-space: normal;
  }

  .chart-movement {
    justify-self: start;
  }

  .station-card {
    grid-template-columns: 70px minmax(0, 1fr);
    min-height: 150px;
    padding: 13px;
  }

  .station-card-art {
    width: 70px;
    height: 70px;
    min-height: 70px;
  }

  .life-panel,
  .schedule-board,
  .request-guide,
  .contact-intro,
  .php-email-form {
    padding: 20px;
  }

  .channel-body {
    min-height: 0;
  }

  body > #customPlayer.radio-player,
  #customPlayer.radio-player {
    width: calc(100% - 20px) !important;
    bottom: 10px !important;
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 12px;
  }

  .player-spectrum {
    width: 100%;
    height: 52px;
    padding: 6px 8px;
  }

  .player-left {
    width: 100%;
  }

  .radio-player .player-left {
    grid-template-columns: 62px minmax(0, 1fr);
    gap: 12px;
  }

  .player-art {
    width: 62px;
    height: 62px;
  }

  .player-art i {
    font-size: 25px;
  }

  .station-info h4 {
    font-size: 16px;
  }

  .station-info h4,
  .station-info p,
  .station-info .player-next-song {
    max-width: 100%;
  }

  .player-controls {
    width: 100%;
    justify-content: space-between;
  }

  .volume-wrap {
    flex: 1 1 auto;
    justify-content: center;
  }

  #volumeControl {
    width: min(118px, 32vw);
  }
}

@media (max-width: 430px) {
  .topbar .container {
    padding-left: 12px;
    padding-right: 12px;
  }

  .header .logo img {
    max-width: 205px;
  }

  .mobile-nav-toggle {
    width: 42px;
    height: 42px;
    margin-right: 0;
  }

  .on-air-pill {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .broadcast-lead {
    font-size: 18px;
  }

  .console-station {
    grid-template-columns: 44px minmax(0, 1fr);
  }

  .station-mark {
    width: 44px;
    height: 44px;
  }

  .live-track-row {
    grid-template-columns: 1fr;
  }
}
