:root{
  --bg:#0f1724;
  --card:#111827;
  --accent:#ef4444;
  --muted:#9ca3af;
  --text:#f8fafc;
}
*{box-sizing:border-box}
body{
  margin:0;
  font-family:Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  background:linear-gradient(180deg,var(--bg),#07101a);
  color:var(--text);
  min-height:100vh;
  display:flex;
  flex-direction:column;
  align-items:center;
  padding:24px;
}
.site-header{display:flex;flex-direction:column;align-items:center;gap:8px;margin-bottom:20px}
.logo{width:96px;height:96px;object-fit:contain;border-radius:12px;background:#111}
.player-card{
  background:rgba(255,255,255,0.03);
  border-radius:14px;
  padding:20px;
  width:100%;
  max-width:720px;
  box-shadow:0 8px 30px rgba(2,6,23,0.6);
}
.now-playing{display:flex;justify-content:space-between;align-items:center;margin-bottom:12px}
.station-name{font-weight:700;font-size:1.2rem}
.controls{display:flex;gap:10px;align-items:center;flex-wrap:wrap}
.controls button{background:var(--accent);border:none;padding:10px 14px;border-radius:8px;color:white;cursor:pointer}
.controls input[type="range"]{width:160px}
.player-footer{margin-top:12px;display:flex;gap:8px;align-items:center;flex-wrap:wrap}
.player-footer input[type="text"]{flex:1;padding:8px;border-radius:8px;border:none}
.site-footer{margin-top:18px;color:var(--muted);font-size:0.9rem;text-align:center}
@media (max-width:480px){
  .controls input[type="range"]{width:120px}
  .logo{width:72px;height:72px}
}
