/* ============================================================
   RadioLab — design system (identidade Intralab.io)
   Estúdio claro para navegar · console escuro "no ar" p/ o player
   ============================================================ */
:root {
  /* marca */
  --navy: #1a3a5c;
  --navy-2: #16324f;
  --blue-mid: #2d6ca3;
  --blue: #4a90c4;
  --blue-light: #6aafe0;
  --blue-lighter: #9fcbee;
  --pale: #e8f2fb;
  --bg: #f3f8fd;
  --cyan: #00b4d8;
  --onair: #ff3b57; /* único acento fora da marca: sinal universal "no ar" */

  --white: #ffffff;
  --g50: #f8fafc; --g100: #f1f5f9; --g200: #e2e8f0; --g300: #cbd5e1;
  --g400: #94a3b8; --g500: #64748b; --g600: #475569; --g700: #334155; --g800: #1e293b;

  --grad: linear-gradient(135deg, var(--blue), var(--cyan));
  --grad-navy: linear-gradient(150deg, var(--navy-2), var(--navy) 55%, #234a72);

  --font: 'DM Sans', system-ui, -apple-system, sans-serif;
  --mono: 'Space Mono', 'JetBrains Mono', ui-monospace, monospace;

  --r-sm: 8px; --r: 10px; --r-md: 12px; --r-lg: 16px; --r-xl: 20px; --r-full: 9999px;

  --sh-sm: 0 1px 3px rgba(26,58,92,.06);
  --sh: 0 4px 20px rgba(26,58,92,.08);
  --sh-md: 0 8px 30px rgba(26,58,92,.10);
  --sh-lg: 0 12px 40px rgba(26,58,92,.14);
  --sh-glow: 0 0 32px rgba(0,180,216,.35);

  --ease: cubic-bezier(.4,0,.2,1);
  --sidebar: 248px;
  --player-h: 92px;
  --tabbar-h: 64px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--navy);
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
img { max-width: 100%; display: block; }
/* tamanho padrão p/ ícones inline (regras específicas sobrescrevem) */
svg { width: 1em; height: 1em; flex: none; }
.cap-img svg { width: 100%; height: auto; }
input, select, textarea { font-family: inherit; font-size: 15px; }
::selection { background: rgba(0,180,216,.22); }

.mono { font-family: var(--mono); }
.label {
  font-family: var(--mono); font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; color: var(--blue);
}
.muted { color: var(--g500); }
.hidden { display: none !important; }

/* scrollbars discretas */
*::-webkit-scrollbar { width: 10px; height: 10px; }
*::-webkit-scrollbar-thumb { background: var(--g300); border-radius: 9999px; border: 2px solid transparent; background-clip: content-box; }
*::-webkit-scrollbar-thumb:hover { background: var(--g400); background-clip: content-box; }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px; justify-content: center;
  padding: 11px 20px; border-radius: var(--r); font-weight: 600; font-size: 15px;
  transition: transform .15s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
  white-space: nowrap;
}
.btn:active { transform: scale(.97); }
.btn-primary { background: var(--navy); color: #fff; }
.btn-primary:hover { background: #14304d; box-shadow: var(--sh); transform: translateY(-1px); }
.btn-accent { background: var(--grad); color: #fff; }
.btn-accent:hover { box-shadow: var(--sh-md); transform: translateY(-1px); }
.btn-ghost { background: var(--pale); color: var(--blue-mid); }
.btn-ghost:hover { background: #dcebfa; }
.btn-outline { border: 1.5px solid var(--g200); color: var(--navy); }
.btn-outline:hover { border-color: var(--blue); color: var(--blue); }
.btn-block { width: 100%; }
.btn-sm { padding: 8px 14px; font-size: 14px; }
.btn:disabled { opacity: .55; pointer-events: none; }

/* ---------- Inputs ---------- */
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.field > label { font-size: 13px; font-weight: 600; color: var(--g600); }
.input, .select, textarea.input {
  width: 100%; padding: 12px 14px; background: var(--g50);
  border: 1.5px solid var(--g200); border-radius: var(--r); color: var(--navy);
  transition: border-color .15s var(--ease), box-shadow .15s var(--ease), background .15s var(--ease);
}
.input:focus, .select:focus, textarea.input:focus {
  outline: none; border-color: var(--blue); background: #fff;
  box-shadow: 0 0 0 3px rgba(74,144,196,.14);
}
.input::placeholder { color: var(--g400); }

/* ---------- App shell ---------- */
#app { min-height: 100%; }
.shell { display: grid; grid-template-columns: var(--sidebar) 1fr; min-height: 100vh; }

.sidebar {
  position: sticky; top: 0; align-self: start; height: 100vh;
  display: flex; flex-direction: column; gap: 4px; padding: 22px 16px;
  background: #fff; border-right: 1px solid var(--g200);
}
.sidebar .brand { padding: 6px 8px 20px; }
.sidebar .brand img { height: 34px; width: auto; }
.nav-link {
  display: flex; align-items: center; gap: 13px; padding: 12px 14px;
  border-radius: var(--r); color: var(--g600); font-weight: 600; font-size: 15px;
  transition: background .15s var(--ease), color .15s var(--ease);
}
.nav-link svg { width: 21px; height: 21px; stroke-width: 2; flex: none; }
.nav-link:hover { background: var(--g50); color: var(--navy); }
.nav-link.active { background: var(--pale); color: var(--blue-mid); }
.nav-link.active svg { color: var(--blue); }
.nav-spacer { flex: 1; }

.user-chip {
  display: flex; align-items: center; gap: 11px; padding: 10px 12px; margin-top: 8px;
  border-radius: var(--r-md); border: 1px solid var(--g200); background: var(--g50);
}
.user-chip img { width: 38px; height: 38px; border-radius: var(--r-full); border: 2px solid #fff; box-shadow: var(--sh-sm); }
.user-chip .u-name { font-weight: 700; font-size: 14px; line-height: 1.2; }
.user-chip .u-mail { font-size: 12px; color: var(--g500); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; max-width: 130px; }

.main { min-width: 0; padding: 0 0 calc(var(--player-h) + 32px); }
.topbar {
  position: sticky; top: 0; z-index: 30;
  display: flex; align-items: center; gap: 16px;
  padding: 16px 32px; background: rgba(243,248,253,.82);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--g200);
}
.topbar h1 { font-size: 22px; font-weight: 800; letter-spacing: -.5px; }
.page { padding: 26px 32px 8px; max-width: 1180px; }
.page-head { margin-bottom: 22px; }
.page-head h2 { font-size: 26px; font-weight: 800; letter-spacing: -.6px; }
.page-head p { color: var(--g500); margin-top: 4px; }

/* ---------- Barra de sintonia (busca + filtros) ---------- */
.tuner {
  display: flex; gap: 12px; flex-wrap: wrap; align-items: center;
  background: #fff; border: 1px solid var(--g200); border-radius: var(--r-lg);
  padding: 14px 16px; box-shadow: var(--sh-sm); margin-bottom: 24px;
}
.tuner .search { flex: 1 1 260px; position: relative; }
.tuner .search svg { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); width: 18px; height: 18px; color: var(--g400); }
.tuner .search input { padding-left: 42px; }
.tuner .select { flex: 0 1 190px; }

/* ---------- Grid de estações ---------- */
.stations { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 16px; }
.station {
  position: relative; background: #fff; border: 1px solid var(--g200);
  border-radius: var(--r-lg); padding: 16px; box-shadow: var(--sh-sm);
  transition: transform .18s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
  display: flex; flex-direction: column; gap: 12px; cursor: pointer;
}
.station:hover { transform: translateY(-4px); box-shadow: var(--sh-md); border-color: var(--blue-lighter); }
.station.playing { border-color: var(--cyan); box-shadow: var(--sh-md); }
.station .st-top { display: flex; gap: 12px; align-items: center; }
.st-art {
  width: 56px; height: 56px; border-radius: var(--r-md); flex: none;
  background: var(--grad-navy); display: grid; place-items: center; overflow: hidden;
  color: #fff; box-shadow: var(--sh-sm);
}
.st-art img { width: 100%; height: 100%; object-fit: cover; }
.st-art svg { width: 26px; height: 26px; opacity: .9; }
.st-name { font-weight: 700; font-size: 15px; line-height: 1.25; letter-spacing: -.2px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.st-meta { font-family: var(--mono); font-size: 11px; color: var(--g500); letter-spacing: .3px;
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.st-meta .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--g300); }
.st-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.tag {
  font-family: var(--mono); font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .5px; color: var(--blue-mid); background: var(--pale);
  padding: 3px 8px; border-radius: var(--r-full);
}
.st-actions { display: flex; align-items: center; gap: 8px; margin-top: auto; }
.st-play {
  width: 42px; height: 42px; border-radius: var(--r-full); background: var(--grad);
  color: #fff; display: grid; place-items: center; box-shadow: var(--sh-sm);
  transition: transform .15s var(--ease), box-shadow .2s var(--ease);
}
.st-play:hover { transform: scale(1.08); box-shadow: var(--sh-glow); }
.st-play svg { width: 18px; height: 18px; }
.icon-btn {
  width: 40px; height: 40px; border-radius: var(--r-full); display: grid; place-items: center;
  color: var(--g500); transition: background .15s var(--ease), color .15s var(--ease), transform .15s var(--ease);
}
.icon-btn:hover { background: var(--g100); color: var(--navy); }
.icon-btn.fav.on { color: var(--onair); }
.icon-btn svg { width: 20px; height: 20px; }

/* ---------- Player console (assinatura) ---------- */
.player {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 50; height: var(--player-h);
  background: var(--grad-navy); color: #fff;
  border-top: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 -8px 40px rgba(16,50,79,.4);
  display: grid; grid-template-columns: minmax(220px, 1fr) auto minmax(220px, 1fr); align-items: center;
  gap: 18px; padding: 0 24px; transform: translateY(100%);
  transition: transform .35s var(--ease);
}
.player.on { transform: translateY(0); }
.player-info { display: flex; align-items: center; gap: 14px; min-width: 0; }
.player-art { width: 60px; height: 60px; border-radius: var(--r-md); background: rgba(255,255,255,.08);
  overflow: hidden; flex: none; display: grid; place-items: center; box-shadow: var(--sh-glow); }
.player-art img { width: 100%; height: 100%; object-fit: cover; }
.player-art svg { width: 26px; height: 26px; color: var(--cyan); }
.player-txt { min-width: 0; }
.player-station { display: flex; align-items: center; gap: 10px; }
.player-station .name { font-weight: 700; font-size: 15px; letter-spacing: -.2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.onair {
  display: inline-flex; align-items: center; gap: 6px; flex: none;
  font-family: var(--mono); font-size: 9px; font-weight: 700; letter-spacing: 1.5px;
  color: var(--onair); background: rgba(255,59,87,.14); padding: 3px 8px; border-radius: var(--r-full);
}
.onair .live { width: 6px; height: 6px; border-radius: 50%; background: var(--onair); animation: pulse 1.6s var(--ease) infinite; }
.player-track {
  font-family: var(--mono); font-size: 12.5px; color: var(--blue-lighter);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-top: 3px;
}
.player-track button { color: var(--cyan); font-family: var(--mono); font-size: 11px; text-decoration: underline; margin-left: 8px; }

/* equalizer */
.eq { display: flex; align-items: flex-end; gap: 3px; height: 26px; }
.eq span { width: 4px; border-radius: 2px; background: linear-gradient(180deg, var(--cyan), var(--blue)); height: 40%;
  animation: eq 900ms var(--ease) infinite alternate; }
.eq span:nth-child(1){ animation-delay: -200ms } .eq span:nth-child(2){ animation-delay: -600ms }
.eq span:nth-child(3){ animation-delay: -100ms } .eq span:nth-child(4){ animation-delay: -450ms }
.eq span:nth-child(5){ animation-delay: -750ms }
.player.paused .eq span { animation-play-state: paused; height: 25%; }
@keyframes eq { 0%{height:20%} 100%{height:95%} }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.3;transform:scale(.7)} }

/* base dos ícones do player (vale p/ #pl-expand no player-info e controles) */
.player .p-icon { color: rgba(255,255,255,.75); width: 40px; height: 40px; border-radius: var(--r-full); display: grid; place-items: center; flex: none; transition: color .15s, background .15s; }
.player .p-icon svg { width: 20px; height: 20px; }
.player .p-icon:hover { color: #fff; background: rgba(255,255,255,.1); }
.player-controls { display: flex; align-items: center; gap: 14px; justify-content: center; }
.player-controls .p-icon { color: rgba(255,255,255,.75); width: 40px; height: 40px; border-radius: var(--r-full); display: grid; place-items: center; transition: color .15s, background .15s; }
.player-controls .p-icon:hover { color: #fff; background: rgba(255,255,255,.1); }
.player-controls .p-icon.on { color: var(--onair); }
.play-toggle {
  width: 54px; height: 54px; border-radius: var(--r-full); background: #fff; color: var(--navy);
  display: grid; place-items: center; box-shadow: var(--sh-glow); transition: transform .15s var(--ease);
}
.play-toggle:hover { transform: scale(1.06); }
.play-toggle svg { width: 24px; height: 24px; }
.player-right { display: flex; align-items: center; gap: 14px; justify-content: flex-end; }
.volume { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,.7); }
.volume input[type=range] { width: 96px; accent-color: var(--cyan); }
.player-right .eq-wrap { display: flex; }

/* ---------- Now Playing / Letras sheet ---------- */
.sheet {
  position: fixed; inset: 0; z-index: 60; background: var(--grad-navy); color: #fff;
  transform: translateY(100%); transition: transform .4s var(--ease); overflow-y: auto;
  display: flex; flex-direction: column;
}
.sheet.on { transform: translateY(0); }
.sheet-head { display: flex; align-items: center; justify-content: space-between; padding: 20px 28px; position: sticky; top: 0; background: rgba(22,50,79,.85); backdrop-filter: blur(12px); }
.sheet-head .label { color: var(--blue-lighter); }
.sheet-close { color: #fff; width: 44px; height: 44px; border-radius: var(--r-full); display: grid; place-items: center; }
.sheet-close:hover { background: rgba(255,255,255,.1); }
.sheet-close svg { width: 22px; height: 22px; }
.np-hero { display: flex; gap: 24px; align-items: center; padding: 20px 28px 28px; flex-wrap: wrap; }
.np-art { width: 128px; height: 128px; border-radius: var(--r-lg); background: rgba(255,255,255,.08); overflow: hidden; display: grid; place-items: center; box-shadow: var(--sh-glow); flex: none; }
.np-art img { width: 100%; height: 100%; object-fit: cover; }
.np-art svg { width: 54px; height: 54px; color: var(--cyan); }
.np-title { font-size: 28px; font-weight: 800; letter-spacing: -.6px; }
.np-artist { font-family: var(--mono); color: var(--blue-lighter); margin-top: 4px; }
.np-station { color: var(--blue-lighter); margin-top: 10px; font-size: 14px; }

.lyrics-wrap { padding: 0 28px 60px; }
.lyrics-tabs { display: none; gap: 8px; margin-bottom: 16px; }
.lyrics-tabs button { padding: 8px 16px; border-radius: var(--r-full); font-family: var(--mono); font-size: 12px; letter-spacing: 1px; text-transform: uppercase; color: var(--blue-lighter); background: rgba(255,255,255,.06); }
.lyrics-tabs button.active { background: var(--cyan); color: var(--navy); font-weight: 700; }
.lyrics-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.lyric-col h4 { font-family: var(--mono); font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--blue-lighter); margin-bottom: 12px; padding-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,.12); }
.lyric-col pre { font-family: var(--font); font-size: 15.5px; line-height: 1.85; white-space: pre-wrap; color: #eaf3fb; }
.lyric-empty { color: var(--blue-lighter); opacity: .8; font-style: italic; }

/* ---------- Cards de lista ---------- */
.grid-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 16px; }
.list-card {
  background: #fff; border: 1px solid var(--g200); border-radius: var(--r-lg); padding: 20px;
  box-shadow: var(--sh-sm); transition: transform .18s var(--ease), box-shadow .2s var(--ease); cursor: pointer;
  display: flex; flex-direction: column; gap: 10px; min-height: 128px;
}
.list-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.list-card .lc-icon { width: 44px; height: 44px; border-radius: var(--r-md); background: var(--pale); color: var(--blue); display: grid; place-items: center; }
.list-card .lc-icon svg { width: 22px; height: 22px; }
.list-card h3 { font-size: 17px; font-weight: 700; letter-spacing: -.3px; }
.list-card .lc-count { font-family: var(--mono); font-size: 12px; color: var(--g500); margin-top: auto; }

/* ---------- Estados vazios ---------- */
.empty { text-align: center; padding: 70px 20px; color: var(--g500); }
.empty svg { width: 56px; height: 56px; color: var(--blue-lighter); margin: 0 auto 18px; }
.empty h3 { font-size: 19px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }

.skeleton { background: linear-gradient(90deg, var(--g100) 25%, var(--g200) 37%, var(--g100) 63%); background-size: 400% 100%; animation: shimmer 1.4s infinite; border-radius: var(--r-lg); }
@keyframes shimmer { 0%{background-position:100% 0} 100%{background-position:-100% 0} }

/* ---------- Modal ---------- */
.overlay { position: fixed; inset: 0; z-index: 70; background: rgba(16,50,79,.5); backdrop-filter: blur(4px); display: grid; place-items: center; padding: 20px; opacity: 0; pointer-events: none; transition: opacity .2s var(--ease); }
.overlay.on { opacity: 1; pointer-events: auto; }
.modal { background: #fff; border-radius: var(--r-xl); width: 100%; max-width: 460px; box-shadow: var(--sh-lg); overflow: hidden; transform: translateY(12px); transition: transform .2s var(--ease); }
.overlay.on .modal { transform: translateY(0); }
.modal-head { padding: 22px 24px 0; }
.modal-head h3 { font-size: 20px; font-weight: 800; letter-spacing: -.4px; }
.modal-body { padding: 18px 24px 24px; }
.modal-foot { display: flex; gap: 10px; justify-content: flex-end; padding: 0 24px 24px; }

/* ---------- Toast ---------- */
.toasts { position: fixed; bottom: calc(var(--player-h) + 18px); right: 24px; z-index: 90; display: flex; flex-direction: column; gap: 10px; }
.toast { background: var(--navy); color: #fff; padding: 13px 18px; border-radius: var(--r); box-shadow: var(--sh-lg); font-size: 14px; font-weight: 500; animation: toastIn .25s var(--ease); max-width: 340px; }
.toast.err { background: var(--onair); }
.toast.ok { background: #0e7a56; }
@keyframes toastIn { from{opacity:0;transform:translateX(30px)} to{opacity:1;transform:none} }

/* ---------- Auth ---------- */
.auth { min-height: 100vh; display: grid; grid-template-columns: 1.05fr .95fr; }
.auth-brand { background: var(--grad-navy); color: #fff; padding: 56px; display: flex; flex-direction: column; justify-content: center; position: relative; overflow: hidden; }
.auth-brand::after { content: ""; position: absolute; right: -120px; top: -80px; width: 460px; height: 460px; border-radius: 50%; background: radial-gradient(circle, rgba(0,180,216,.25), transparent 65%); }
.auth-brand img { height: 46px; width: auto; margin-bottom: 40px; }
.auth-brand h1 { font-size: clamp(30px, 4vw, 46px); font-weight: 800; letter-spacing: -1.2px; line-height: 1.08; max-width: 460px; }
.auth-brand p { color: var(--blue-lighter); font-size: 18px; margin-top: 18px; max-width: 420px; }
.auth-brand .feat { display: flex; flex-direction: column; gap: 14px; margin-top: 40px; }
.auth-brand .feat div { display: flex; align-items: center; gap: 12px; color: #dce9f6; font-size: 15px; }
.auth-brand .feat svg { width: 20px; height: 20px; color: var(--cyan); flex: none; }
.auth-form-wrap { display: grid; place-items: center; padding: 40px 28px; }
.auth-form { width: 100%; max-width: 380px; }
.auth-form h2 { font-size: 26px; font-weight: 800; letter-spacing: -.6px; margin-bottom: 6px; }
.auth-form > p.sub { color: var(--g500); margin-bottom: 26px; }
.captcha-row { display: flex; gap: 12px; align-items: stretch; }
.captcha-row .cap-img { flex: none; border: 1.5px solid var(--g200); border-radius: var(--r); background: var(--bg); display: grid; place-items: center; width: 150px; overflow: hidden; }
.captcha-row .cap-img svg { width: 100%; height: auto; }
.captcha-refresh { align-self: center; }
.auth-switch { margin-top: 20px; text-align: center; color: var(--g500); font-size: 14px; }
.auth-switch button { color: var(--blue); font-weight: 700; }

/* ---------- Mobile bottom nav (escondido no desktop) ---------- */
.tabbar { display: none; }
.mobile-top { display: none; }

/* ============================================================
   Responsivo
   ============================================================ */
@media (max-width: 900px) {
  .shell { grid-template-columns: 1fr; }
  .sidebar { display: none; }
  .mobile-top {
    display: flex; align-items: center; justify-content: space-between;
    position: sticky; top: 0; z-index: 30; padding: 12px 18px;
    background: rgba(243,248,253,.9); backdrop-filter: blur(14px); border-bottom: 1px solid var(--g200);
  }
  .mobile-top img { height: 30px; }
  .mobile-top .avatar { width: 34px; height: 34px; border-radius: 50%; border: 2px solid #fff; box-shadow: var(--sh-sm); }
  .topbar { display: none; }
  .page { padding: 20px 18px 8px; }
  .main { padding-bottom: calc(var(--player-h) + var(--tabbar-h) + 20px); }

  .player { grid-template-columns: 1fr auto; gap: 12px; padding: 0 14px; bottom: var(--tabbar-h); height: 74px; --player-h: 74px; }
  .player-right, .player-controls .p-icon.lyrics-btn { display: none; }
  .player-controls { gap: 6px; }
  .play-toggle { width: 46px; height: 46px; }
  .player-art { width: 48px; height: 48px; }

  .tabbar {
    display: grid; grid-template-columns: repeat(4, 1fr); position: fixed; bottom: 0; left: 0; right: 0; z-index: 55;
    height: var(--tabbar-h); background: #fff; border-top: 1px solid var(--g200);
  }
  .tabbar a { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px; color: var(--g500); font-size: 10.5px; font-weight: 600; }
  .tabbar a svg { width: 22px; height: 22px; }
  .tabbar a.active { color: var(--blue); }

  .toasts { bottom: calc(var(--tabbar-h) + 74px + 12px); right: 14px; left: 14px; }
  .lyrics-cols { grid-template-columns: 1fr; }
  .lyrics-tabs { display: flex; }
  .lyrics-cols.tabbed .lyric-col { display: none; }
  .lyrics-cols.tabbed .lyric-col.show { display: block; }
  .auth { grid-template-columns: 1fr; }
  .auth-brand { display: none; }
}

@media (min-width: 901px) and (max-width: 1180px) {
  .player { grid-template-columns: minmax(200px,1fr) auto minmax(160px,.7fr); }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  .eq span { animation: none; height: 55%; }
}
