.pv{
  padding: 28px 0 56px;
  --pv-radius: 22px;
  --pv-border: rgba(255,255,255,.10);
  --pv-bg: rgba(255,255,255,.03);
  --pv-bg2: rgba(255,255,255,.02);
  --pv-text: rgba(255,255,255,.92);
  --pv-muted: rgba(255,255,255,.70);
  --pv-accent: var(--accent, #6d6bff);
}

.pv-wrap{ max-width: 1120px; }

.pv-back{
  display:inline-flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  margin: 6px 0 16px;
  color: var(--pv-muted);
}
.pv-back i{ opacity:.9; }

.pv-hero{
  position: relative;
  display:grid;
  grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
  gap: 22px;
  padding: 18px;
  border-radius: var(--pv-radius);
  border: 1px solid var(--pv-border);
  background:
    radial-gradient(900px 280px at 30% 10%, rgba(255,255,255,.06), transparent 55%),
    linear-gradient(180deg, var(--pv-bg), var(--pv-bg2));
  box-shadow:
    0 24px 70px rgba(0,0,0,.35),
    inset 0 1px 0 rgba(255,255,255,.06);
  overflow: hidden;
}

.pv-cover{
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: calc(var(--pv-radius) - 4px);
  border: 1px solid rgba(255,255,255,.12);
  background-color: rgba(255,255,255,.04);
  background-size: cover;
  background-position: center;
  box-shadow: 0 18px 60px rgba(0,0,0,.30);
  overflow:hidden;
}

.pv-info{
  min-width: 0;
  display:flex;
  flex-direction:column;
  gap: 10px;
  padding: 2px 4px;
}

.pv-top{
  display:flex;
  align-items:center;
  gap: 10px;
  flex-wrap: wrap;
}

.pv-chip{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 950;
  font-size: 12px;
  letter-spacing: .35px;
  text-transform: uppercase;
  color: var(--pv-text);
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.05);
}

.pv-meta{
  font-size: 13px;
  color: var(--pv-muted);
  white-space: nowrap;
}

.pv-title{
  margin: 2px 0 0;
  font-size: 30px;
  line-height: 1.08;
  font-weight: 950;
  color: var(--pv-text);
  overflow:hidden;
  text-overflow: ellipsis;
}

.pv-artist{
  margin: 0;
  color: var(--pv-muted);
  font-size: 13px;
}
.pv-artist strong{ color: rgba(255,255,255,.92); }

.pv-actions{
  display:flex;
  align-items:center;
  gap: 12px;
  flex-wrap: nowrap;
  margin: 4px 0 0;
}

.pv-actions .icon-btn,
.pv-actions .pv-buy,
.pv-actions .pv-play{
  height: 44px;
  border-radius: 16px;
}

.pv-play.icon-btn{
  width: auto !important;
  padding: 0 14px !important;
  justify-content: center;
  gap: 10px;
  white-space: nowrap;
}

.pv-play{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  padding: 0 14px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.95);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}
.pv-play span{ font-weight: 950; }
.pv-play i{ font-size: 14px; }

.pv-buy{ margin-left: auto; }

.pv-buy{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  text-decoration:none;
  padding: 0 14px;
  font-weight: 950;
  border: 1px solid rgba(255,255,255,.14);
  background: linear-gradient(135deg, rgba(109,107,255,.22), rgba(255,255,255,.04));
  color: rgba(255,255,255,.95);
  box-shadow:
    0 14px 36px rgba(0,0,0,.22),
    inset 0 1px 0 rgba(255,255,255,.10);
}

.pv-actions .icon-btn:not(.pv-play){
  width: 44px;
  padding: 0;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.92);
}

.pv-play:hover,
.pv-buy:hover,
.pv-actions .icon-btn:hover{
  transform: translateY(-1px);
  transition: transform .12s ease, background-color .12s ease, border-color .12s ease;
  border-color: rgba(255,255,255,.20);
}
.pv-play:active,
.pv-buy:active,
.pv-actions .icon-btn:active{
  transform: translateY(0);
}


.pv-desc{
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.08);
}

.pv-desc h2{
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .25px;
  color: rgba(255,255,255,.90);
}

.pv-desc p{
  margin: 0;
  line-height: 1.6;
  color: var(--pv-muted);
  word-break: break-word;
}


.pv-tags{
  display:flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.pv-tag{
  display:inline-flex;
  align-items:center;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.03);
  color: rgba(255,255,255,.86);
}

/* =========================
   Responsive
========================= */

@media (max-width: 980px){
  .pv-hero{
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 16px;
  }

  .pv-cover{
    max-width: 520px;
    margin: 0 auto;
  }

  .pv-title{ font-size: 24px; }
  .pv-meta{ white-space: normal; }

  .pv-actions{
    flex-wrap: wrap;
  }
  .pv-buy{ margin-left: 0; }

  .pv-play,
  .pv-buy{
    height: 44px;
    padding: 0 14px;
  }
}

@media (max-width: 520px){
  .pv{ padding: 18px 0 48px; }

  .pv-cover{
    max-width: 100%;
    aspect-ratio: 1 / 1;
  }

  .pv-actions{
    display:grid;
    grid-template-columns: 1fr 44px;
    grid-template-areas:
      "play fav"
      "buy  buy";
    gap: 10px;
    align-items:center;
  }

  .pv-play{ grid-area: play; width: 100%; justify-content:center; }

  .pv-actions .icon-btn:not(.pv-play){
    grid-area: fav;
    width: 44px;
    height: 44px;
    padding: 0;
    border-radius: 16px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
  }

  .pv-buy{
    grid-area: buy;
    width: 100%;
    justify-content:center;
    margin-left: 0;
  }
}

