:root{
  --bg1:#fff4eb;
  --bg2:#f7e7f4;
  --bg3:#fbe8d7;
  --card:#fffaf4;
  --border:rgba(228,176,156,.35);
  --text:#4b3b33;
  --muted:#7c645c;
  --accent:#f3a79a;
  --accent-strong:#e88d7d;
  --shadow: 0 18px 40px rgba(179,123,98,.22);
  --radius:22px;
}

*{ box-sizing:border-box; }
body{
  margin:0; min-height:100vh; color:var(--text);
  font-family: "Nunito", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  background:
    radial-gradient(900px 700px at 10% 0%, rgba(255,225,199,.7) 0%, transparent 60%),
    radial-gradient(800px 600px at 90% 10%, rgba(236,205,238,.8) 0%, transparent 60%),
    linear-gradient(180deg, var(--bg2), var(--bg1));
}

.wrap{
  max-width: 560px;
  margin:0 auto;
  padding: 18px 16px 110px;
}

.top{
  padding: 18px 6px 14px;
  position: relative;
}

.top::after{
  content:"";
  position:absolute;
  top:0; right:10px;
  width:120px; height:120px;
  background: radial-gradient(circle, rgba(255,255,255,.9), rgba(255,255,255,0));
  opacity:.6;
  pointer-events:none;
}

h1{ margin:0; font-size: 30px; letter-spacing: .3px; font-weight: 800; }
p{ margin:6px 0 0; color:var(--muted); line-height:1.5; font-size: 15px; }

.grid{ display:grid; gap:14px; margin-top: 12px; }
.card{
  display:flex; align-items:center; justify-content:space-between;
  padding: 16px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255,255,255,.92), rgba(255,245,235,.95));
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  -webkit-tap-highlight-color: transparent;
  transition: transform .12s ease, box-shadow .2s ease;
}
.card:active{ transform: scale(.985); }

.left{ display:flex; gap:12px; align-items:center; min-width:0; }
.cover{
  width:52px; height:52px; border-radius: 16px;
  border:1px solid rgba(230,170,150,.4);
  background-size: cover; background-position:center;
  background-color: rgba(255,255,255,.8);
  flex: 0 0 auto;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.5);
}
.meta{ min-width:0; }
.name{ font-weight: 700; font-size: 16px; }
.sub{ color: var(--muted); font-size: 13px; margin-top:4px; }

.badge{
  width:34px; height:34px; border-radius: 999px;
  display:flex; align-items:center; justify-content:center;
  border:1px solid rgba(230,170,150,.45);
  background: rgba(255,255,255,.8);
  color:#8f5b4b;
  font-weight:700;
  box-shadow: 0 8px 18px rgba(224,164,140,.25);
}

.controls{
  position: sticky;
  bottom: 0;
  margin-top: 16px;
  display:grid;
  gap:10px;
  padding: 12px 12px 18px;
  background: linear-gradient(180deg, rgba(255,244,235,0), rgba(255,244,235,.9) 40%, rgba(255,244,235,1));
  border-top: 1px solid rgba(230,170,150,.35);
  backdrop-filter: blur(10px);
}

.controls-row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
}

.btn{
  padding: 16px 16px; border-radius: 18px;
  border:1px solid rgba(230,170,150,.5);
  background: rgba(255,255,255,.8);
  color: var(--text); font-weight: 700; font-size: 15px;
  box-shadow: 0 12px 26px rgba(220,140,120,.2);
}

.btn.primary{
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color:#fff;
  border: none;
  box-shadow: 0 14px 30px rgba(232,141,125,.35);
}

.btn.ghost{
  background: rgba(255,255,255,.9);
}

.btn.subtle{
  background: transparent;
  box-shadow:none;
}

.btn:disabled{ opacity:.5; box-shadow:none; }

.now{
  min-height: 22px; color: var(--muted); font-size: 14px; padding: 0 4px;
}

audio{
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0.0001;
  pointer-events: none;
}

@media (max-width: 420px){
  h1{ font-size: 26px; }
  .wrap{ padding: 14px 14px 110px; }
}