/* Reset & base */
* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: #fff;
  background: radial-gradient(1200px 600px at 50% -10%, #2a2447 0%, #1a172b 35%, #0e0d14 100%);
  display: grid;
  place-items: center;
}

.page { width: 100%; max-width: 820px; padding: 32px 20px 24px; text-align: center; }

.header { margin-bottom: 40px; }
.logo { width: 60px; height: 60px; opacity: .95; filter: drop-shadow(0 2px 8px rgba(0,0,0,.4)); }

.card {
  margin: 0 auto;
  padding: 28px 28px 22px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0,0,0,.35), inset 0 0 60px rgba(255,255,255,0.02);
  backdrop-filter: blur(8px);
  display: inline-block;
}

.art-wrap { display: grid; place-items: center; margin-bottom: 18px; }
.art {
  width: 320px; height: 320px; object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,.55);
  transition: transform .45s ease, filter .45s ease, opacity .25s ease;
}

.title { font-size: 28px; line-height: 1.2; margin: 8px 0 4px; font-weight: 800; letter-spacing: .2px; }
.artist { font-size: 16px; color: #cfcfe6; opacity: .9; margin: 0 0 14px; }

.controls { display: inline-flex; align-items: center; gap: 14px; justify-content: center; }
.btn {
  width: 60px; height: 60px; border-radius: 50%;
  border: none; cursor: pointer;
  background: linear-gradient(180deg, #2c2a5a, #1f1c3c);
  color: white;
  box-shadow: 0 8px 22px rgba(0,0,0,.45), inset 0 -2px 0 rgba(255,255,255,.06);
  transition: transform .15s ease, box-shadow .15s ease, background .2s ease;
}
.btn:hover { transform: translateY(-1px) scale(1.03); box-shadow: 0 12px 28px rgba(0,0,0,.55); }
.btn:active { transform: translateY(0) scale(0.98); }

.status-dot {
  display:inline-block; width:10px; height:10px; border-radius:999px;
  background:#d9534f; box-shadow:0 0 0 3px rgba(217,83,79,.18);
}
.status-dot.live { background:#2ecc71; box-shadow:0 0 0 3px rgba(46,204,113,.18); }

.foot { margin-top: 16px; font-size: 12px; color:#bdbdd3; opacity:.8; }

/* subtle animation when track changes */
.song-change .art { transform: scale(0.975); filter: saturate(1.2) contrast(1.02); }
