:root { --bg:#0a0a0a; --card:#151515; --text:#f5f5f5; --muted:#bdbdbd; --accent:#1D67CD; }
* { box-sizing:border-box; -webkit-tap-highlight-color: transparent; }
html,body { margin:0; padding:0; background:var(--bg); color:var(--text); font-family:system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,"Helvetica Neue",Arial,sans-serif; }

.wrap { max-width:600px; margin:0 auto; padding:12px; }

/* ---------- Cards ---------- */
.card { background:var(--card); border-radius:16px; padding:14px; margin-top:12px; box-shadow:0 6px 20px rgba(0,0,0,.3); }

/* ---------- Header (logo left, titles right) ---------- */
.header-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 16px;
  align-items: center;
}
.header-left { display:flex; justify-content:center; }
.header-right { text-align:center; }

/* Title & Tagline — px sizing (wins over older rules) */
.header-right .title,
.titles .title {
  margin: 0;
  font-size: 22px !important; /* adjust if needed */
  line-height: 1.2;
}
.header-right .tagline,
.titles .tagline {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 14px !important; /* adjust if needed */
}

/* Logo (single source of truth) */
.logo { width:120px; height:120px; object-fit:contain; border-radius:12px; background:#000; }

/* ---------- Presenter card (image left, details right) ---------- */
.presenter-card {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  align-items: center;
}
.presenter-left { display:flex; justify-content:center; }
.presenter-img {
  width:120px; height:120px; border-radius:12px; object-fit:cover; background:#000;
}
.presenter-right { text-align:center; }
.presenter-right .np-label { color:var(--muted); font-size:.95rem; }
.presenter-right .np-track { font-weight:700; font-size:1.3rem; margin-top:4px; }
.presenter-right .np-artist { color:var(--muted); margin-top:2px; }
.presenter-right .show-time { color:var(--muted); font-size: 12px; margin-top:2px; }

/* ---------- Now Playing card ---------- */
.now { display:block; }
.meta .np-label { color:var(--muted); font-size:.95rem; }
.meta .np-track { font-weight:700; font-size:1.15rem; margin-top:6px; }
.meta .np-artist { color:var(--muted); margin-top:2px; }

/* ---------- Controls ---------- */
.controls { display:flex; flex-direction:column; align-items:center; gap:12px; }
.controls-row { display:flex; align-items:center; gap:12px; width:100%; justify-content:center; }
.btn { appearance:none; border:0; border-radius:999px; padding:14px 22px; font-size:1.05rem; font-weight:700; cursor:pointer; }
.btn.primary { background:var(--accent); color:white; }
.slider { flex:1; accent-color:var(--accent); min-width:160px; max-width:280px; }
.hints { color:var(--muted); font-size:.85rem; margin-top:6px; text-align:center; }

/* ---------- Quick links ---------- */
.quicklinks { display:grid; grid-template-columns:1fr 1fr 1fr; gap:10px; }
.qbtn {
  display:inline-block;
  text-align:center;
  padding:8px;
  background:#1e1e1e;
  border-radius:12px;
  text-decoration:none;
  color:#fff;
  font-weight:500;
  font-size:10px;
}
.qbtn-blue  { background:#1D67CD !important; }
.qbtn-green { background:#25D366 !important; }
.qbtn-grey  { background:#3a3a3a !important; }

@media (hover:hover) { .qbtn:hover { filter:brightness(1.05); } }

/* ---------- Disclaimer ---------- */
.disclaimer {
  text-align: center;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.4;
  margin-top: 10px;
  margin-bottom: 6px;
  opacity: 0.9;
}
.note-highlight { color:#ff4b4b; font-weight:700; }

/* ---------- Footer ---------- */
.foot { text-align:center; color:var(--muted); margin:14px 0 2px; font-size:.85rem; }

/* ---------- Responsive tweaks ---------- */
@media (max-width:360px) {
  .header-row { grid-template-columns: 90px 1fr; }
  .presenter-card { grid-template-columns: 110px 1fr; }
  .presenter-img { width:110px; height:110px; }
  .header-right .title, .titles .title { font-size:16px !important; }
  .header-right .tagline, .titles .tagline { font-size:11px !important; }
}
@media (min-width:420px) {
  .presenter-img { width:140px; height:140px; }
}