body, #page, #content, .site, .site-content {
  margin: 0 !important;
  padding: 0 !important;
}
:root{
  --bg:#0b0b0c;
  --card:#ffffff;
  --ink:#161616;
  --muted:#666;
  --line:#e7e7e7;
  --shadow: 0 20px 60px rgba(0,0,0,.28);
  --radius:18px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--ink);
  background: #f3f3f3;
}

.hero{
  position:relative;
  height: 280px;
  overflow:hidden;
  background: var(--bg);
}
.hero__bg{
  position:absolute; inset:0;
  background-size:cover;
  background-position:center;
  filter: blur(16px) saturate(1.1);
  transform: scale(1.08);
}
.hero__scrim{
  position:absolute; inset:0;
  background: linear-gradient(to bottom, rgba(0,0,0,.35), rgba(0,0,0,.55));
}
.hero__content{
  position:relative;
  height:100%;
  display:flex;
  align-items:flex-end;
  justify-content:center;
  padding: 18px;
}

.album-card{
  display:flex;
  gap: 14px;
  align-items:flex-end;
  padding: 0;
  border-radius: var(--radius);
}
.album-card__cover{
  width: 220px;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: var(--shadow);
  border: 4px solid rgba(255,255,255,.85);
  background: #111;
}
.album-card__actions{
  display:flex;
  gap: 10px;
  padding-bottom: 10px;
}
.btn{
  appearance:none;
  border:0;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 600;
  cursor:pointer;
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  gap:8px;
}
.btn--ghost{
  background: rgba(255,255,255,.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,.25);
  backdrop-filter: blur(10px);
}
.btn--ghost:hover{ background: rgba(255,255,255,.18); }
.icon{ opacity:.95; }

.wrap{
  max-width: 980px;
  margin: 0 auto;
  padding: 18px;
}

.panel{
  margin-top: -30px;
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow:hidden;
  display:grid;
  grid-template-columns: 1fr 1.5fr;
}

.panel__left{
  padding: 26px 24px;
  border-right: 1px solid var(--line);
}
.panel__right{
  padding: 22px 18px;
}

.title{
  margin: 0 0 6px 0;
  font-size: 34px;
  letter-spacing: .2px;
}
.byline{
  margin: 0 0 18px 0;
  color: var(--muted);
}
.byline a{
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.stores__label{
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 10px;
}
.stores__list{
  display:flex;
  flex-direction: column;
  gap: 10px;
  max-width: 260px;
}
.store{
  border: 1px solid #d9d9d9;
  background:#fff;
  border-radius: 999px;
  padding: 10px 14px;
  text-decoration:none;
  color: #222;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight: 650;
}
.store:hover{ background:#fafafa; }

.note{
  margin-top: 16px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.35;
}
.meta{
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.meta__row{
  display:flex;
  justify-content:space-between;
  padding: 6px 0;
  font-size: 13px;
}
.meta__key{ color: var(--muted); }
.meta__val{ font-weight: 650; color:#222; }

.social{
  margin-top: 16px;
  display:flex;
  gap: 10px;
}
.social a{
  width: 34px; height: 34px;
  border-radius: 999px;
  border: 1px solid var(--line);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  color:#333;
}
.social a:hover{ background:#f6f6f6; }

.tracklist__header{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  padding: 8px 6px 14px 6px;
  border-bottom: 1px solid var(--line);
}
.tracklist__h{ font-weight: 750; }
.tracklist__sub{ color: var(--muted); font-size: 13px; }

.tracks{
  list-style:none;
  margin: 0;
  padding: 0;
}
.track{
  display:grid;
  grid-template-columns: 40px 1fr 60px;
  gap: 10px;
  align-items:center;
  padding: 14px 6px;
  border-bottom: 1px solid var(--line);
}
.play{
  width: 34px; height: 34px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background:#fff;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight: 800;
}
.play:hover{ background:#f8f8f8; }
.track__title{
  font-weight: 650;
  line-height: 1.1;
}
.track__sub{
  font-size: 12px;
  color: var(--muted);
  margin-top: 3px;
}
.track__dur{
  text-align:right;
  color: var(--muted);
  font-size: 13px;
}

.fineprint{
  margin-top: 12px;
  color: var(--muted);
  font-size: 11px;
  padding: 6px;
}

@media (max-width: 860px){
  .panel{ grid-template-columns: 1fr; }
  .panel__left{ border-right:0; border-bottom:1px solid var(--line); }
  .stores__list{ max-width: 100%; }
  .hero{ height: 300px; }
  .album-card__cover{ width: 200px; height: 200px; }
}
