*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --accent: #2152cf;
  --accent-2: #4e7cff;
  --text: #fff;
  --muted: rgba(255,255,255,.72);
  --panel: rgba(7, 9, 12, .58);
  --panel-deep: rgba(0, 0, 0, .68);
}

html,
body {
  margin: 0;
  min-height: 100%;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: #050608;
}

body {
  min-height: 100svh;
  overflow-x: hidden;
}

.pc-logo-wrap {
    margin-bottom: 24px;
}

.pc-logo {
    width: 40%;
    height: auto;
    display: block;
}

@media (max-width: 860px) {
    .pc-copy {
        text-align: center;
    }

    .pc-copy img {
        display: block;
        margin: 0 auto 24px;
        width: 160px !important;
        max-width: 60%;
    }

    .pc-station {
        justify-content: center;
    }
}

.pc-bg {
  position: fixed;
  inset: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,.08), transparent 30%),
    radial-gradient(circle at 80% 80%, rgba(255,255,255,.05), transparent 35%),
    linear-gradient(
      135deg,
      #0f2f8f 0%,
      #2152cf 35%,
      #163f9f 70%,
      #0b244f 100%
    );
}

.pc-bg-layer {
  position: absolute;
  inset: -4%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1500ms ease;
  filter: saturate(1.08) contrast(1.05);
  pointer-events: none;
}

.pc-bg-layer.is-active {
  opacity: 1;
}

.pc-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(circle at 15% 15%, rgba(33,82,207,.28), transparent 35%),
    radial-gradient(circle at 85% 20%, rgba(80,140,255,.18), transparent 30%),
    linear-gradient(
      90deg,
      rgba(0,0,0,.66),
      rgba(0,0,0,.34) 48%,
      rgba(0,0,0,.70)
    ),
    linear-gradient(
      180deg,
      rgba(0,0,0,.16),
      rgba(0,0,0,.68)
    );
}

.pc-shell {
  width: 100%;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 40px 24px;
}

.pc-card {
  width: min(1180px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  gap: 32px;
  align-items: center;
  padding: clamp(24px, 4vw, 44px);
  border-radius: 34px;
  background: var(--panel);
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 30px 100px rgba(0,0,0,.48);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.pc-eyebrow {
  color: rgba(255,255,255,.78);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.pc-copy h1 {
  margin: 14px 0 10px;
  font-size: clamp(56px, 8vw, 112px);
  line-height: .88;
  letter-spacing: -.06em;
}

.pc-copy p {
  margin: 0 0 30px;
  color: rgba(255,255,255,.9);
  font-size: clamp(22px, 2.4vw, 34px);
  font-weight: 800;
  line-height: 1.18;
}

.pc-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pc-play-btn,
.pc-lyrics-btn {
  min-height: 52px;
  border: 0;
  border-radius: 999px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  transition: transform .16s ease, filter .16s ease, background .16s ease, color .16s ease;
}

.pc-play-btn {
  background: var(--accent);
  color: #fff;
}

.pc-play-btn.is-playing {
  background: #fff;
  color: #111;
}

.pc-lyrics-btn {
  margin-top: 16px;
  background: var(--accent-2);
  color: #fff;
}

.pc-play-btn:hover,
.pc-lyrics-btn:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

.pc-now-card {
  padding: 24px;
  border-radius: 30px;
  background: var(--panel-deep);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  min-width: 0;
}

.pc-label {
  margin-bottom: 18px;
  color: rgba(255,255,255,.65);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.pc-track {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}

.pc-track img {
  width: 110px;
  height: 110px;
  border-radius: 22px;
  object-fit: cover;
  background: rgba(255,255,255,.08);
}

.pc-track h2 {
  margin: 0 0 6px;
  color: #fff;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1;
  letter-spacing: -.04em;
  overflow-wrap: anywhere;
}

.pc-track p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.pc-previous {
  margin-top: 18px;
  padding: 13px 15px;
  border-radius: 18px;
  background: rgba(255,255,255,.075);
  border: 1px solid rgba(255,255,255,.12);
}

.pc-previous span {
  display: block;
  margin-bottom: 5px;
  color: rgba(255,255,255,.56);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.pc-previous strong {
  display: block;
  color: rgba(255,255,255,.88);
  font-size: 13px;
  line-height: 1.35;
}

.pc-story {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.14);
}

.pc-story strong {
  display: block;
  margin-bottom: 8px;
}

.pc-story p {
  margin: 0;
  color: rgba(255,255,255,.84);
  line-height: 1.6;
}

.pc-story a {
  display: inline-block;
  margin-top: 12px;
  color: #fff;
  text-decoration: underline;
}

.pc-lyrics-panel {
  margin-top: 16px;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255,255,255,.075);
  border: 1px solid rgba(255,255,255,.12);
}

.pc-lyrics-header {
  min-height: 44px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,.10);
}

.pc-lyrics-header button {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  color: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.pc-lyrics-panel pre {
  margin: 0;
  max-height: 260px;
  overflow: auto;
  padding: 16px;
  color: rgba(255,255,255,.88);
  font-family: inherit;
  white-space: pre-wrap;
  line-height: 1.62;
}

@media (max-width: 900px) {
  .pc-shell {
    place-items: start center;
    padding: 24px 14px;
  }

  .pc-card {
    grid-template-columns: 1fr;
    width: min(560px, 100%);
    gap: 24px;
    border-radius: 28px;
  }

  .pc-copy h1 {
    font-size: clamp(48px, 13vw, 74px);
  }

  .pc-track {
    display: flex;
    flex-direction: column;
    text-align: center;
  }

  .pc-track img {
    width: 132px;
    height: 132px;
  }

  .pc-label {
    text-align: center;
  }

  .pc-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .pc-play-btn,
  .pc-lyrics-btn {
    width: 100%;
  }
}