/* ════════════════════════════════════════════════════════════
   Mobilradyo Web — desktop layout
   ════════════════════════════════════════════════════════════ */
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body {
  height: 100%;
  font-family: 'Inter', 'Roboto', system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
}
button, input { font-family: inherit; color: inherit; }
button { border: 0; background: transparent; cursor: pointer; }
input { border: 0; outline: 0; background: transparent; }
a { color: inherit; text-decoration: none; }

:root {
  --primary: #2A4FCE;
  --primary-soft: #E8ECFB;
  --pink: #EC3A85;
  --bg: #F5F6F8;
  --surface: #FFFFFF;
  --line: #E7E9EE;
  --text: #0F1115;
  --muted: #6E7280;
  --sidebar: #FFFFFF;
  --dock-bg: #0F1115;
  --dock-text: #FFFFFF;
  --hover: #F2F3F7;
  --row-hover: #F8F9FB;
  --topbar-bg: rgba(245,246,248,0.85);
  --chip-text: #1F2330;
  --kbd-bg: #F2F3F7;
}
body.dark {
  --primary: #6B8AFF;
  --primary-soft: #1B2240;
  --pink: #FF4A93;
  --bg: #0B0E14;
  --surface: #11151D;
  --line: #1F2632;
  --text: #ECEEF3;
  --muted: #8A93A6;
  --sidebar: #0F131B;
  --dock-bg: #060810;
  --dock-text: #FFFFFF;
  --hover: #181D27;
  --row-hover: #161B25;
  --topbar-bg: rgba(11,14,20,0.85);
  --chip-text: #ECEEF3;
  --kbd-bg: #1F2632;
}
body { background: var(--bg); color: #0F1115; transition: background .2s, color .2s; }
body.dark { color: #ECEEF3; }

/* ──────────── Layout grid ──────────── */
.app {
  display: grid;
  grid-template-columns: 248px 1fr;
  grid-template-rows: 1fr 88px;
  grid-template-areas:
    "side main"
    "dock dock";
  height: 100vh;
}

/* ──────────── Sidebar ──────────── */
.side {
  grid-area: side;
  background: var(--sidebar);
  border-right: 1px solid var(--line);
  display: flex; flex-direction: column;
  padding: 22px 16px;
  overflow-y: auto;
  position: relative;
  z-index: 10;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  padding: 4px 8px 22px;
}
.brand .logo {
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--primary);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  box-shadow: 0 6px 14px rgba(42,79,206,0.3);
}
.brand .wm { font-size: 18px; font-weight: 700; letter-spacing: -0.2px; color: var(--text); }
.brand .ws { font-size: 11px; color: var(--muted); margin-top: 1px; letter-spacing: 0.4px; text-transform: uppercase; }

.nav { display: flex; flex-direction: column; gap: 2px; margin-top: 6px; }
.nav .group-label {
  font-size: 11px; color: var(--muted); letter-spacing: 1.5px;
  text-transform: uppercase; padding: 14px 12px 6px;
}
.nav button {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 12px; border-radius: 10px;
  font-size: 14px; font-weight: 500; color: var(--text);
  text-align: left; width: 100%;
}
.nav button:hover { background: var(--hover); }
.nav button.active {
  background: var(--primary-soft); color: var(--primary);
}
.nav button .count {
  margin-left: auto; font-size: 11px; color: var(--muted);
  background: var(--hover); padding: 2px 8px; border-radius: 999px;
}
.nav button.active .count { background: var(--surface); color: var(--primary); }

.side .fav-list {
  margin-top: 8px; display: flex; flex-direction: column; gap: 2px;
}
.fav-list .fav-row {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 10px; border-radius: 8px; cursor: pointer;
  font-size: 13px; color: var(--text);
}
.fav-list .fav-row:hover { background: var(--hover); }
.fav-list .fav-row .a { width: 28px; height: 28px; border-radius: 6px; overflow: hidden; flex-shrink: 0; }
.fav-list .fav-row .t { flex: 1; min-width: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: var(--text); }
.fav-list .fav-row .g { font-size: 11px; color: var(--muted); }

.side .footer {
  margin-top: auto; padding: 14px 8px 4px;
  font-size: 12px; color: var(--muted);
  display: flex; align-items: center; gap: 8px;
}

/* ──────────── Main area ──────────── */
.main {
  grid-area: main;
  overflow-y: auto;
  background: var(--bg);
}
.topbar {
  position: sticky; top: 0; z-index: 5;
  display: flex; align-items: center; gap: 16px;
  padding: 18px 32px;
  background: var(--topbar-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.nav-hist { display: flex; gap: 6px; }
.nav-hist button {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--hover);
  display: flex; align-items: center; justify-content: center;
  color: var(--text);
}
.nav-hist button:hover { background: var(--line); }
.search {
  flex: 1; max-width: 460px;
  display: flex; align-items: center; gap: 10px;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 999px; padding: 9px 16px;
  transition: border-color .15s, box-shadow .15s;
}
.search input { color: var(--text); }
.search:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(42,79,206,0.1);
}
.search input { flex: 1; font-size: 14px; color: var(--text); }
.search input::placeholder { color: var(--muted); }
.kbd {
  font-size: 11px; color: var(--muted);
  background: var(--kbd-bg); padding: 2px 6px; border-radius: 4px;
  letter-spacing: 0.5px;
}
.topbar .spacer { flex: 1; }
.topbar .icon-btn {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--surface); border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  color: var(--text);
}
.topbar .icon-btn:hover { background: var(--hover); }
.avatar {
  display: flex; align-items: center; gap: 10px;
  padding: 4px 12px 4px 4px;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 999px;
}
.avatar .pic {
  width: 28px; height: 28px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--pink));
  color: #fff; font-size: 12px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.avatar .n { font-size: 13px; font-weight: 500; color: var(--text); }

/* ──────────── Hero ──────────── */
.hero {
  margin: 16px 32px 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(236,58,133,0.35), transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(42,79,206,0.45), transparent 55%),
    linear-gradient(135deg, #1A1F33 0%, #0B0E1A 100%);
  border-radius: 20px; overflow: hidden;
  padding: 36px 40px; color: #fff;
  display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 24px;
  position: relative;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><circle cx='100' cy='100' r='60' fill='none' stroke='%23ffffff' stroke-opacity='0.04' stroke-width='1'/><circle cx='100' cy='100' r='90' fill='none' stroke='%23ffffff' stroke-opacity='0.04' stroke-width='1'/></svg>") repeat;
  opacity: .5; pointer-events: none;
}
.hero .h-left { position: relative; }
.hero .tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px; border-radius: 999px;
  background: rgba(255,255,255,0.12);
  font-size: 12px; letter-spacing: 0.5px; text-transform: uppercase;
  margin-bottom: 14px;
}
.hero .tag .pulse { width: 8px; height: 8px; border-radius: 50%; background: #2ED058; box-shadow: 0 0 0 0 rgba(46,208,88,0.7); animation: pulse 1.6s infinite; }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(46,208,88,0.7); }
  70% { box-shadow: 0 0 0 8px rgba(46,208,88,0); }
  100% { box-shadow: 0 0 0 0 rgba(46,208,88,0); }
}
.hero h1 {
  font-size: 38px; font-weight: 700; letter-spacing: -0.6px;
  line-height: 1.1; margin-bottom: 10px;
}
.hero p { font-size: 15px; color: rgba(255,255,255,0.7); margin-bottom: 22px; max-width: 460px; }
.hero .h-actions { display: flex; align-items: center; gap: 12px; position: relative; }
.hero .play-cta {
  display: flex; align-items: center; gap: 10px;
  background: #fff; color: #0F1115;
  padding: 12px 24px 12px 18px;
  border-radius: 999px; font-size: 15px; font-weight: 600;
  transition: transform .15s;
}
.hero .play-cta:hover { transform: scale(1.03); }
.hero .ghost-btn {
  padding: 12px 20px; border-radius: 999px;
  background: rgba(255,255,255,0.08); color: #fff;
  border: 1px solid rgba(255,255,255,0.16);
  font-size: 14px; font-weight: 500;
}
.hero .ghost-btn:hover { background: rgba(255,255,255,0.16); }

.hero .h-right {
  position: relative; z-index: 1;
  display: flex; align-items: center; gap: 14px;
}
.hero .h-art {
  width: 160px; height: 160px;
  border-radius: 18px; overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  transform: rotate(-6deg);
}
.hero .h-art-2 {
  width: 120px; height: 120px;
  border-radius: 14px; overflow: hidden;
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
  transform: rotate(8deg) translateY(20px);
}

/* ──────────── Sections ──────────── */
.section { margin: 36px 32px 0; }
.section-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 18px;
}
.section-head h2 { font-size: 22px; font-weight: 700; letter-spacing: -0.3px; color: var(--text); }
.section-head .meta { color: var(--muted); font-size: 13px; margin-top: 2px; }
.section-head .actions { display: flex; gap: 6px; }
.section-head .actions button {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--surface); border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  color: var(--text);
}
.section-head .actions button:hover { background: var(--hover); }
.section-head .see-all {
  font-size: 13px; color: var(--muted); padding: 8px 12px;
}
.section-head .see-all:hover { color: var(--primary); }

/* horizontal rail */
.rail {
  display: grid; grid-auto-flow: column; grid-auto-columns: 200px;
  gap: 18px; overflow-x: auto; padding-bottom: 6px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}
.rail::-webkit-scrollbar { height: 6px; }
.rail::-webkit-scrollbar-thumb { background: var(--line); border-radius: 4px; }
.card {
  scroll-snap-align: start;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 16px; padding: 14px; cursor: pointer;
  transition: transform .15s, box-shadow .15s, border-color .15s;
  display: flex; flex-direction: column;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
  border-color: transparent;
}
.card .art-wrap {
  width: 100%; aspect-ratio: 1/1; border-radius: 12px;
  overflow: hidden; background: var(--hover);
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.card .play-fab {
  position: absolute; right: 10px; bottom: 10px;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--pink); color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 20px rgba(236,58,133,0.45);
  opacity: 0; transform: translateY(8px);
  transition: opacity .15s, transform .15s;
}
.card:hover .play-fab { opacity: 1; transform: translateY(0); }
.card .n { font-size: 14px; font-weight: 600; margin-top: 12px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: var(--text); }
.card .g {
  font-size: 12px; color: var(--muted); margin-top: 4px;
  display: flex; align-items: center; gap: 6px;
}
.card .g .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--muted); display: inline-block; }
.card .live {
  display: inline-flex; align-items: center; gap: 4px;
  color: #2ED058; font-weight: 600;
}
.card .live .dot { width: 6px; height: 6px; border-radius: 50%; background: #2ED058; }

/* category tiles */
.cat-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
}
.cat-card {
  position: relative; aspect-ratio: 16/10; border-radius: 14px;
  overflow: hidden; padding: 18px; cursor: pointer;
  display: flex; flex-direction: column; justify-content: space-between;
  color: #fff;
  transition: transform .2s;
}
.cat-card:hover { transform: translateY(-3px); }
.cat-card .label {
  font-size: 18px; font-weight: 700; letter-spacing: 0.3px;
}
.cat-card .count {
  font-size: 12px; opacity: 0.85;
  display: flex; align-items: center; gap: 6px;
}
.cat-card .play-shape {
  position: absolute; right: -10px; bottom: -10px;
  width: 90px; height: 90px;
  display: flex; align-items: center; justify-content: center;
  opacity: 0.85;
}

/* compact list */
.tbl {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 14px; overflow: hidden;
}
.tbl .head, .tbl .row {
  display: grid; grid-template-columns: 32px 60px 1fr 200px 140px 60px;
  align-items: center; gap: 16px;
  padding: 12px 18px;
}
.tbl .head {
  font-size: 11px; color: var(--muted);
  text-transform: uppercase; letter-spacing: 1px;
  border-bottom: 1px solid var(--line);
}
.tbl .row { border-bottom: 1px solid var(--line); cursor: pointer; transition: background .12s; }
.tbl .row:last-child { border-bottom: 0; }
.tbl .row:hover { background: var(--row-hover); }
.tbl .row .num { color: var(--muted); font-variant-numeric: tabular-nums; }
.tbl .row:hover .num .n-text { display: none; }
.tbl .row .num .n-play { display: none; }
.tbl .row:hover .num .n-play { display: inline-flex; color: var(--primary); }
.tbl .row .art, .tbl .row .art-cell { width: 48px; height: 48px; border-radius: 8px; overflow: hidden; }
.tbl .row .name { font-size: 14px; font-weight: 600; color: var(--text); }
.tbl .row .sub { font-size: 12px; color: var(--muted); margin-top: 2px; }
.tbl .row .genre { font-size: 12px; color: var(--muted); }
.tbl .row .views { font-size: 12px; color: var(--muted); }
.tbl .row .more { color: var(--muted); display: flex; align-items: center; justify-content: flex-end; gap: 4px; }
.tbl .row .more button { padding: 4px; border-radius: 6px; color: var(--muted); }
.tbl .row .more button:hover { background: var(--hover); color: var(--text); }
.tbl .row .more .fav.on { color: var(--pink); }

/* ──────────── Dock player ──────────── */
.dock {
  grid-area: dock;
  background: var(--dock-bg);
  position: relative;
  z-index: 10;
  color: var(--dock-text);
  display: grid; grid-template-columns: 340px 1fr 340px;
  align-items: center; gap: 20px;
  padding: 0 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.dock-info { display: flex; align-items: center; gap: 14px; min-width: 0; }
.dock-info .art { width: 60px; height: 60px; border-radius: 10px; overflow: hidden; flex-shrink: 0; }
.dock-info .meta { min-width: 0; flex: 1; }
.dock-info .n { font-size: 14px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.dock-info .g { font-size: 12px; color: rgba(255,255,255,0.55); margin-top: 2px; }
.dock-info .heart { padding: 8px; color: rgba(255,255,255,0.6); border-radius: 50%; }
.dock-info .heart:hover { color: #fff; background: rgba(255,255,255,0.08); }
.dock-info .heart.on { color: var(--pink); }

.dock-center { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.dock-controls { display: flex; align-items: center; gap: 14px; }
.dock-controls button {
  color: rgba(255,255,255,0.75);
  padding: 6px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.dock-controls button:hover { color: #fff; }
.dock-controls .play {
  width: 42px; height: 42px;
  background: #fff; color: #0F1115;
}
.dock-controls .play:hover { transform: scale(1.05); }
.dock-bar {
  display: flex; align-items: center; gap: 10px;
  width: 100%; max-width: 520px;
  font-size: 11px; color: rgba(255,255,255,0.55);
  font-variant-numeric: tabular-nums;
}
.dock-bar .live-dot {
  width: 8px; height: 8px; border-radius: 50%; background: #FF3B30;
  animation: pulse-red 1.4s infinite;
}
@keyframes pulse-red {
  0%,100% { opacity: 1; } 50% { opacity: 0.3; }
}
.dock-bar .wave {
  flex: 1; height: 22px; display: flex; align-items: center; gap: 2px;
}
.dock-bar .wave .b {
  flex: 1; background: rgba(255,255,255,0.25); border-radius: 1.5px;
  animation: eq 1s infinite ease-in-out;
}
@keyframes eq { 0%,100% { height: 30%; } 50% { height: 100%; } }
.dock-bar .wave .b:nth-child(odd) { animation-delay: -.4s; }
.dock-bar .wave .b:nth-child(3n) { animation-delay: -.7s; }
.dock-bar.paused .wave .b { animation-play-state: paused; }

.dock-right { display: flex; align-items: center; justify-content: flex-end; gap: 4px; }
.dock-right button {
  color: rgba(255,255,255,0.65); padding: 8px; border-radius: 50%;
}
.dock-right button:hover { color: #fff; background: rgba(255,255,255,0.08); }
.dock-right .vol-track {
  width: 88px; height: 4px; border-radius: 2px;
  background: rgba(255,255,255,0.18); position: relative;
}
.dock-right .vol-track .fill {
  position: absolute; left: 0; top: 0; bottom: 0;
  background: #fff; border-radius: 2px;
}
.dock-right .vol-track .knob {
  position: absolute; top: -3px; width: 10px; height: 10px;
  border-radius: 50%; background: #fff;
}

/* ──────────── Now playing modal (Spotify-style canvas) ──────────── */
.modal-scrim {
  position: fixed; inset: 0; z-index: 50;
  background: rgba(15,17,21,0.5); backdrop-filter: blur(8px);
  display: none; align-items: center; justify-content: center;
  padding: 40px;
}
.modal-scrim.open { display: flex; }
.modal {
  background: var(--surface); color: var(--text); border-radius: 20px;
  width: 100%; max-width: 420px;
  padding: 28px; box-shadow: 0 30px 80px rgba(0,0,0,0.35);
}
.modal h3 { font-size: 20px; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.modal p { font-size: 14px; color: var(--muted); margin-bottom: 20px; }
.modal input[type=range] { width: 100%; accent-color: var(--primary); }
.modal .val { text-align: right; font-size: 13px; color: var(--muted); margin-top: 4px; }
.modal .actions { display: flex; justify-content: flex-end; gap: 8px; margin-top: 20px; }
.modal .actions button {
  padding: 10px 18px; border-radius: 999px; font-size: 14px; font-weight: 500;
}
.modal .actions .cancel { color: var(--muted); }
.modal .actions .cancel:hover { background: var(--hover); }
.modal .actions .set { background: var(--primary); color: #fff; }
.modal .actions .set:hover { background: #1F3FAE; }

/* ──────────── Toast ──────────── */
.toast {
  position: fixed; left: 50%; bottom: 110px; transform: translateX(-50%);
  background: var(--text); color: var(--surface);
  padding: 10px 18px; border-radius: 999px;
  font-size: 13px; z-index: 100; white-space: nowrap;
  box-shadow: 0 12px 30px rgba(0,0,0,0.3);
  opacity: 0; pointer-events: none; transition: opacity .18s, transform .18s;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(-4px); }

/* ──────────── Screen tabs ──────────── */
[data-screen] { display: none; }
[data-screen].active { display: block; }

/* ──────────── Genre chip filter row ──────────── */
.chips { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 22px; }
.chip {
  padding: 8px 14px; border-radius: 999px;
  background: var(--surface); border: 1px solid var(--line);
  font-size: 13px; font-weight: 500; color: var(--chip-text); cursor: pointer;
}
.chip:hover { background: var(--hover); }
.chip.active { background: var(--primary); color: #fff; border-color: var(--primary); }

/* ──────────── Empty state ──────────── */
.empty {
  text-align: center; padding: 60px 24px; color: var(--muted);
}
.empty .ico {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--hover); color: var(--muted);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.empty .t { font-size: 16px; font-weight: 600; color: var(--text); margin-bottom: 4px; }
.empty .s { font-size: 13px; }

/* ──────────── Now Playing Panel (sağdan açılır) ──────────── */
.now-scrim {
  position: fixed; inset: 0; z-index: 45;
  background: rgba(0,0,0,0.45);
  opacity: 0; pointer-events: none;
  transition: opacity .3s;
}
.now-scrim.open { opacity: 1; pointer-events: all; }

.now-panel {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: 340px; z-index: 46;
  background: var(--surface);
  border-left: 1px solid var(--line);
  display: flex; flex-direction: column;
  padding: 0 0 24px;
  transform: translateX(100%);
  transition: transform .32s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
  box-shadow: -8px 0 40px rgba(0,0,0,0.18);
}
.now-panel.open { transform: translateX(0); }

.np-close-row {
  display: flex; justify-content: flex-end;
  padding: 16px 16px 8px;
  position: sticky; top: 0;
  background: var(--surface); z-index: 2;
}
.np-close-row button {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--hover); color: var(--text);
  display: flex; align-items: center; justify-content: center;
}
.np-close-row button:hover { background: var(--line); }

.np-art {
  width: 200px; height: 200px;
  border-radius: 16px; overflow: hidden;
  margin: 8px auto 20px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.22);
  flex-shrink: 0;
}

.np-name {
  font-size: 20px; font-weight: 700;
  color: var(--text); text-align: center;
  padding: 0 20px; line-height: 1.2;
}
.np-meta {
  font-size: 13px; color: var(--muted);
  text-align: center; margin-top: 4px;
  padding: 0 20px;
}
.np-song {
  font-size: 13px; color: var(--primary);
  text-align: center; margin-top: 8px;
  padding: 0 20px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.np-listeners {
  font-size: 12px; color: var(--muted);
  text-align: center; margin-top: 4px;
}

.np-controls {
  display: flex; align-items: center; justify-content: center;
  gap: 24px; margin: 24px 0 16px;
}
.np-btn {
  color: var(--text); padding: 8px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  opacity: 0.75;
}
.np-btn:hover { opacity: 1; background: var(--hover); }
.np-play {
  width: 68px; height: 68px; border-radius: 50%;
  background: var(--pink); color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(236,58,133,.45);
  transition: transform .12s;
}
.np-play:hover { transform: scale(1.06); }

.np-vol-row {
  display: flex; align-items: center; gap: 10px;
  padding: 0 24px; margin-bottom: 24px;
  color: var(--muted);
}
.np-vol-track {
  flex: 1; height: 4px; border-radius: 2px;
  background: var(--line); position: relative; cursor: pointer;
}
.np-vol-fill {
  position: absolute; left: 0; top: 0; bottom: 0;
  background: var(--primary); border-radius: 2px;
}
.np-vol-knob {
  position: absolute; top: -6px;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.np-same-cat { padding: 0 16px; }
.np-cat-title {
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px;
  color: var(--muted); text-transform: uppercase;
  padding: 4px 0 12px;
  border-top: 1px solid var(--line);
}
.np-row {
  display: flex; align-items: center; gap: 12px;
  padding: 8px 4px; border-radius: 8px; cursor: pointer;
}
.np-row:hover { background: var(--hover); }
.np-row .np-row-art {
  width: 44px; height: 44px; border-radius: 8px;
  overflow: hidden; flex-shrink: 0;
}
.np-row .np-row-name { font-size: 14px; font-weight: 500; color: var(--text); }
.np-row .np-row-genre { font-size: 12px; color: var(--muted); margin-top: 2px; }

/* ──────────── Kategori detay overlay ──────────── */
#cat-detail-overlay {
  position: fixed;
  top: 0; left: 248px; right: 0; bottom: 88px;
  z-index: 6;
  background: var(--bg);
  overflow-y: auto;
}
