/* ── Reset & Base ─────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 14px;
  line-height: 1.5;
  height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

::-webkit-scrollbar { width: 3px; height: 3px; }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }
::-webkit-scrollbar-track { background: transparent; }
::selection { background: color-mix(in srgb, var(--accent) 35%, transparent); }
a { color: inherit; text-decoration: none; }
img { display: block; }
button { cursor: pointer; font-family: var(--font); }

/* ── Top Nav ──────────────────────────────────────────────────────────────── */
.topnav {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 16px;
  height: 54px;
  background: var(--card);
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
  z-index: 30;
  position: sticky;
  top: 0;
}

.sidebar-toggle {
  background: none;
  border: none;
  color: var(--muted);
  font-size: 17px;
  padding: 4px;
  line-height: 1;
  transition: color .15s;
  flex-shrink: 0;
}
.sidebar-toggle:hover { color: var(--text); }

.logo { display: flex; align-items: center; flex-shrink: 0; }

.search-bar {
  flex: 1;
  max-width: 400px;
  position: relative;
  margin-left: 4px;
}
.search-bar .search-icon {
  position: absolute; left: 11px; top: 50%;
  transform: translateY(-50%); font-size: 13px; pointer-events: none;
}
.search-bar input {
  width: 100%;
  background: var(--el);
  border: 1px solid var(--border);
  border-radius: 99px;
  padding: 7px 32px 7px 32px;
  color: var(--text);
  font-family: var(--font);
  font-size: 13px;
  outline: none;
  transition: border-color .2s;
}
.search-bar input:focus { border-color: var(--accent); }
.search-clear {
  position: absolute; right: 11px; top: 50%;
  transform: translateY(-50%); color: var(--muted); font-size: 12px;
}

.nav-right { margin-left: auto; display: flex; gap: 6px; align-items: center; }

.theme-btn {
  background: var(--el);
  border: none;
  border-radius: 99px;
  width: 27px; height: 27px;
  font-size: 11px; font-weight: 700;
  color: var(--muted);
  display: flex; align-items: center; justify-content: center;
  transition: all .15s;
}
.theme-btn.active,
.theme-btn:hover { background: var(--accent); color: var(--bg); }

.icon-btn {
  background: var(--el);
  border: none;
  border-radius: 99px;
  width: 29px; height: 29px;
  font-size: 13px;
  color: var(--muted);
  display: flex; align-items: center; justify-content: center;
  transition: background .15s;
}
.icon-btn:hover { background: var(--border); }

.nav-avatar {
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  object-fit: cover;
}

/* ── Layout ───────────────────────────────────────────────────────────────── */
.layout {
  display: flex;
  flex: 1;
  overflow: hidden;
}

/* ── Sidebar ──────────────────────────────────────────────────────────────── */
.sidebar {
  width: 238px;
  background: var(--card);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  overflow-x: hidden;
  transition: width .3s cubic-bezier(.4,0,.2,1);
  flex-shrink: 0;
  padding: 10px 0;
}
.sidebar.collapsed { width: 52px; }
.sidebar.collapsed .side-label,
.sidebar.collapsed .side-section,
.sidebar.collapsed .side-divider,
.sidebar.collapsed .new-pl-btn { display: none; }

.side-nav { padding: 0 8px; }
.side-link {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 10px; border-radius: 8px;
  color: var(--muted); font-size: 13px; font-weight: 500;
  transition: all .15s; margin-bottom: 2px;
  white-space: nowrap;
}
.side-link:hover { background: var(--el); color: var(--text); }
.side-link.active { background: var(--el); color: var(--accent); }
.side-icon { font-size: 15px; flex-shrink: 0; }

.side-divider { height: 1px; background: var(--border); margin: 10px 8px; }

.side-section { padding: 0 12px 10px; }
.side-section-title {
  font-size: 9px; font-weight: 700;
  color: var(--muted); letter-spacing: 1.8px;
  margin-bottom: 8px;
}
.side-section-header {
  display: flex; align-items: center;
  justify-content: space-between; margin-bottom: 8px;
}
.new-pl-btn {
  background: none; border: none;
  color: var(--accent); font-size: 18px;
  line-height: 1; padding: 0;
  transition: transform .15s;
}
.new-pl-btn:hover { transform: scale(1.2); }

.side-item {
  display: flex; align-items: center; gap: 8px;
  padding: 4px 0; cursor: pointer;
}
.side-item:hover .side-item-title { color: var(--accent); }
.side-item img { width: 30px; height: 30px; border-radius: 4px; object-fit: cover; flex-shrink: 0; }
.side-item-title { font-size: 11px; font-weight: 500; color: var(--text); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.side-item-sub { font-size: 10px; color: var(--muted); }

/* ── Main Content ─────────────────────────────────────────────────────────── */
.main-content { flex: 1; overflow-y: auto; padding: 22px 26px; }

/* ── Activity Panel ───────────────────────────────────────────────────────── */
.activity-panel {
  width: 210px;
  background: var(--card);
  border-left: 1px solid var(--border);
  overflow-y: auto;
  flex-shrink: 0;
  transition: width .3s;
}
.activity-panel.hidden { width: 0; overflow: hidden; }

.feed-item {
  display: flex; gap: 8px; align-items: flex-start;
  padding: 8px 12px;
  border-bottom: 1px solid var(--border);
  transition: background .15s;
}
.feed-item:hover { background: var(--el); }
.feed-avatar { width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0; }
.feed-user { font-size: 11px; font-weight: 600; color: var(--text); }
.feed-song { font-size: 10px; color: var(--muted); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.feed-meta { font-size: 9px; color: var(--muted); }

.listener-box {
  margin: 12px;
  padding: 11px;
  background: var(--el);
  border-radius: 9px;
}
.listener-live { font-size: 9px; font-weight: 700; color: var(--accent); margin-bottom: 5px; }
.listener-title { font-size: 12px; font-weight: 600; margin-bottom: 2px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.listener-artist { font-size: 11px; color: var(--muted); margin-bottom: 6px; }
.listener-count { font-size: 22px; font-weight: 900; color: var(--accent); line-height: 1; }
.listener-label { font-size: 9px; color: var(--muted); margin-top: 3px; }

/* ── Player Bar ───────────────────────────────────────────────────────────── */
.player-bar {
  background: var(--player);
  border-top: 1px solid var(--border);
  height: 70px;
  display: flex;
  align-items: center;
  padding: 0 20px;
  gap: 14px;
  flex-shrink: 0;
  z-index: 20;
}

.player-info { display: flex; align-items: center; gap: 10px; width: 200px; flex-shrink: 0; }
.player-cover { width: 42px; height: 42px; border-radius: 6px; object-fit: cover; }
.player-meta { flex: 1; min-width: 0; }
.player-title { font-weight: 600; font-size: 13px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.player-artist { color: var(--muted); font-size: 11px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.like-btn { background: none; border: none; font-size: 15px; color: var(--muted); flex-shrink: 0; transition: color .15s; }
.like-btn.liked { color: #ff5c8a; }

.player-controls { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 5px; max-width: 460px; }
.player-btns { display: flex; gap: 14px; align-items: center; }

.ctrl-btn { background: none; border: none; color: var(--muted); font-size: 15px; transition: color .15s; }
.ctrl-btn:hover { color: var(--text); }
.play-btn {
  background: var(--accent);
  border-radius: 50%;
  width: 34px; height: 34px;
  font-size: 14px;
  color: var(--bg);
  display: flex; align-items: center; justify-content: center;
}
.play-btn:hover { opacity: .85; }

.progress-wrap { display: flex; align-items: center; gap: 7px; width: 100%; }
.time-label { color: var(--muted); font-size: 10px; width: 30px; flex-shrink: 0; }
.progress-bar { flex: 1; height: 3px; background: var(--el); border-radius: 2px; cursor: pointer; position: relative; }
.progress-bar:hover .progress-fill { filter: brightness(1.1); }
.progress-fill { height: 100%; background: var(--accent); border-radius: 2px; transition: width .5s linear; width: 0%; }

.player-extra { display: flex; align-items: center; gap: 8px; margin-left: auto; flex-shrink: 0; }
.vid-btn { background: var(--el); border: 1px solid var(--border); border-radius: 7px; padding: 5px 10px; font-size: 11px; color: var(--text); }
.share-btn { font-size: 11px; white-space: nowrap; }
.vol-slider { width: 70px; cursor: pointer; accent-color: var(--accent); }

/* ── Cards & Song Rows ────────────────────────────────────────────────────── */
.card { background: var(--card); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }

.song-row {
  display: flex; align-items: center; gap: 10px;
  padding: 7px 10px; cursor: pointer;
  transition: background .15s;
}
.song-row:hover { background: var(--el); }
.song-row.active { background: var(--el); }
.song-num { width: 20px; color: var(--muted); font-size: 11px; text-align: center; flex-shrink: 0; }
.song-row.active .song-num { color: var(--accent); }
.song-row img { width: 38px; height: 38px; border-radius: 5px; object-fit: cover; flex-shrink: 0; }
.song-info { flex: 1; min-width: 0; }
.song-title { font-weight: 600; font-size: 13px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.song-row.active .song-title { color: var(--accent); }
.song-sub { color: var(--muted); font-size: 11px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.song-actions { display: flex; align-items: center; gap: 7px; flex-shrink: 0; }
.tag { background: var(--el); color: var(--muted); border-radius: 99px; padding: 2px 9px; font-size: 11px; }
.listeners-badge { color: var(--muted); font-size: 11px; }
.like-icon { font-size: 15px; color: var(--muted); background: none; border: none; transition: color .15s; }
.like-icon.liked { color: #ff5c8a; }
.add-icon { font-size: 13px; color: var(--muted); background: none; border: none; }
.add-icon:hover { color: var(--text); }
.share-icon { font-size: 13px; color: var(--muted); background: none; border: none; }
.share-icon:hover { color: var(--text); }
.vid-icon { font-size: 11px; color: var(--muted); background: var(--el); border: none; border-radius: 4px; padding: 2px 6px; }
.song-dur { color: var(--muted); font-size: 11px; min-width: 32px; text-align: right; }

/* ── Artist Cards ─────────────────────────────────────────────────────────── */
.artist-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(196px,1fr)); gap: 14px; }
.artist-card {
  background: var(--card); border: 1px solid var(--border); border-radius: 12px;
  overflow: hidden; transition: transform .2s;
}
.artist-card:hover { transform: translateY(-3px); }
.artist-card img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.artist-card-body { padding: 13px; }
.artist-name { display: flex; align-items: center; gap: 5px; font-weight: 700; font-size: 14px; margin-bottom: 3px; }
.verified { color: var(--accent); font-size: 11px; }
.artist-meta { color: var(--muted); font-size: 11px; margin-bottom: 7px; }
.artist-tags { display: flex; gap: 4px; flex-wrap: wrap; margin-bottom: 10px; }
.artist-btns { display: flex; gap: 7px; }

/* ── Buttons ──────────────────────────────────────────────────────────────── */
.btn-accent {
  background: var(--accent); color: var(--bg);
  border: none; border-radius: 99px;
  padding: 7px 18px; font-weight: 600; font-size: 13px;
  font-family: var(--font); transition: opacity .15s;
}
.btn-accent:hover { opacity: .82; }

.btn-outline {
  background: transparent; color: var(--text);
  border: 1px solid var(--border); border-radius: 99px;
  padding: 7px 18px; font-weight: 500; font-size: 13px;
  font-family: var(--font); transition: background .15s;
}
.btn-outline:hover { background: var(--el); }

.btn-follow {
  flex: 1; font-size: 11px; padding: 5px 8px;
  background: var(--accent); color: var(--bg);
  border: none; border-radius: 99px; font-family: var(--font); font-weight: 600;
}
.btn-follow.following { background: var(--el); color: var(--text); }

.btn-share-sm {
  font-size: 11px; padding: 5px 10px;
  background: transparent; color: var(--text);
  border: 1px solid var(--border); border-radius: 99px; font-family: var(--font);
}

/* ── Modals ───────────────────────────────────────────────────────────────── */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.78);
  display: flex; align-items: center; justify-content: center;
  z-index: 100;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.modal-box {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  width: 360px;
  max-width: calc(100vw - 32px);
  max-height: 80vh;
  overflow-y: auto;
}
.modal-title { font-size: 17px; font-weight: 800; margin-bottom: 5px; }
.modal-sub { color: var(--muted); font-size: 12px; margin-bottom: 14px; }
.share-url {
  background: var(--el); border-radius: 8px;
  padding: 9px 13px; margin-bottom: 14px;
  font-size: 11px; color: var(--muted);
  font-family: monospace; word-break: break-all;
}
.modal-btns { display: flex; gap: 9px; margin-bottom: 11px; }
.modal-btns .btn-accent,
.modal-btns .btn-outline { flex: 1; }
.social-btns { display: flex; gap: 8px; }
.btn-social {
  flex: 1; font-size: 10px; padding: 5px 4px;
  background: transparent; color: var(--text);
  border: 1px solid var(--border); border-radius: 99px; font-family: var(--font);
}
.btn-social:hover { background: var(--el); }
.modal-input {
  width: 100%; background: var(--el); border: 1px solid var(--border);
  border-radius: 8px; padding: 9px 12px; color: var(--text); font-family: var(--font);
  font-size: 14px; outline: none;
}
.modal-input:focus { border-color: var(--accent); }

.addpl-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 0; border-bottom: 1px solid var(--border);
}
.addpl-info { display: flex; align-items: center; gap: 9px; }
.addpl-info img { width: 34px; height: 34px; border-radius: 5px; object-fit: cover; }
.addpl-name { font-size: 13px; font-weight: 500; }
.addpl-count { font-size: 10px; color: var(--muted); }

/* ── Video Modal ──────────────────────────────────────────────────────────── */
.video-container {
  position: relative;
  background: #000;
  border-radius: 14px;
  overflow: hidden;
  width: min(88vw, 880px);
  aspect-ratio: 16/9;
}

#yt-target iframe { width: 100% !important; height: 100% !important; }

.vid-click-shield {
  position: absolute; inset: 0; z-index: 5; cursor: pointer;
}
.vid-controls {
  position: absolute; bottom: 0; left: 0; right: 0;
  z-index: 10;
  background: linear-gradient(transparent,rgba(0,0,0,.88));
  padding: 22px 14px 12px;
  display: flex; align-items: center; gap: 10px;
}
.vid-btn-ctrl {
  background: rgba(0,0,0,.6);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 6px; padding: 4px 10px;
  color: #fff; font-size: 13px; font-family: var(--font);
  transition: background .15s;
}
.vid-btn-ctrl:hover { background: rgba(255,255,255,.15); }
.vid-title { color: #fff; font-size: 13px; font-weight: 600; flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.vid-close { background: rgba(200,40,40,.75) !important; }

.q-menu {
  position: absolute; bottom: 110%; right: 0;
  background: rgba(20,20,28,.95);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 8px; overflow: hidden; min-width: 100px;
}
.q-item {
  padding: 7px 14px; cursor: pointer;
  color: var(--muted); font-size: 12px; font-family: var(--font);
  transition: background .1s;
}
.q-item:hover, .q-item.active { background: rgba(255,255,255,.1); color: #fff; }

/* ── Toast ────────────────────────────────────────────────────────────────── */
.toast {
  position: fixed; bottom: 84px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: var(--bg);
  padding: 9px 20px; border-radius: 99px;
  font-weight: 700; font-size: 13px;
  z-index: 200; pointer-events: none;
  white-space: nowrap;
  animation: fadeToast .3s ease;
}
@keyframes fadeToast { from { opacity:0; transform: translateX(-50%) translateY(8px); } to { opacity:1; transform: translateX(-50%) translateY(0); } }

/* ── Hero / Page Sections ─────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent) 15%, transparent), var(--el));
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
  margin-bottom: 24px;
}
.hero-eyebrow { font-size: 10px; font-weight: 700; color: var(--accent); letter-spacing: 2.5px; margin-bottom: 8px; }
.hero-title { font-size: 24px; font-weight: 900; letter-spacing: -.5px; margin-bottom: 6px; }
.hero-sub { color: var(--muted); font-size: 14px; margin-bottom: 18px; }
.hero-btns { display: flex; gap: 10px; flex-wrap: wrap; }

section { margin-bottom: 26px; }
.section-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.section-title { font-size: 17px; font-weight: 800; margin: 0; }
.section-more { color: var(--accent); font-size: 13px; }

/* ── Song Grid ────────────────────────────────────────────────────────────── */
.song-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(148px,1fr)); gap: 13px; }
.song-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 12px; overflow: hidden;
  cursor: pointer; transition: transform .2s;
}
.song-card:hover { transform: translateY(-3px); }
.song-card-img { position: relative; }
.song-card-img img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.song-card-play-btn {
  position: absolute; bottom: 6px; right: 6px;
  background: var(--accent); border-radius: 50%;
  width: 22px; height: 22px;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; color: var(--bg);
}
.song-card-body { padding: 10px 11px; }
.song-card-title { font-weight: 600; font-size: 13px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.song-card-artist { color: var(--muted); font-size: 11px; margin-bottom: 7px; }
.song-card-footer { display: flex; justify-content: space-between; align-items: center; }
.song-card-listeners { color: var(--muted); font-size: 10px; }

/* ── Artist Carousel ──────────────────────────────────────────────────────── */
.artist-carousel { display: flex; gap: 18px; overflow-x: auto; padding-bottom: 6px; }
.artist-bubble { text-align: center; cursor: pointer; flex-shrink: 0; width: 92px; }
.artist-bubble img {
  width: 76px; height: 76px; border-radius: 50%; object-fit: cover;
  border: 2.5px solid var(--border);
  margin: 0 auto 7px;
  transition: border-color .2s;
}
.artist-bubble img.following { border-color: var(--accent); }
.artist-bubble-name { font-weight: 600; font-size: 11px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.artist-bubble-followers { color: var(--muted); font-size: 10px; }

/* ── Genre Grid ───────────────────────────────────────────────────────────── */
.genre-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(132px,1fr)); gap: 11px; margin-bottom: 26px; }
.genre-card {
  border-radius: 11px; padding: 18px 14px;
  cursor: pointer; text-align: center; font-weight: 600;
  font-size: 13px; transition: filter .15s;
  border: 1px solid;
}
.genre-card:hover { filter: brightness(1.1); }

/* ── Profile ──────────────────────────────────────────────────────────────── */
.profile-hero {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent) 15%, transparent), var(--el));
  border: 1px solid var(--border); border-radius: 16px;
  padding: 26px; margin-bottom: 22px;
  display: flex; gap: 18px; align-items: center; flex-wrap: wrap;
}
.profile-avatar-wrap { position: relative; }
.profile-avatar { width: 84px; height: 84px; border-radius: 50%; border: 3px solid var(--accent); object-fit: cover; }
.profile-edit-btn {
  position: absolute; bottom: 0; right: 0;
  background: var(--accent); border: none; border-radius: 50%;
  width: 22px; height: 22px;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; color: var(--bg);
}
.profile-stats { display: flex; gap: 18px; margin-top: 8px; }
.stat-item { text-align: center; }
.stat-value { font-size: 16px; font-weight: 800; color: var(--accent); }
.stat-label { font-size: 11px; color: var(--muted); }

/* ── Page Heading ─────────────────────────────────────────────────────────── */
.page-title { font-size: 22px; font-weight: 900; margin-bottom: 6px; }
.page-sub { color: var(--muted); font-size: 14px; margin-bottom: 22px; }

/* ── Artist Profile Page ──────────────────────────────────────────────────── */
.artist-profile-hero {
  background: linear-gradient(180deg, color-mix(in srgb, var(--accent) 18%, transparent) 0%, transparent 100%);
  border-radius: 16px; padding: 28px;
  margin-bottom: 22px;
  display: flex; gap: 22px; align-items: flex-end; flex-wrap: wrap;
}
.artist-profile-avatar {
  width: 110px; height: 110px; border-radius: 50%;
  border: 3px solid var(--accent); object-fit: cover; flex-shrink: 0;
}
.artist-profile-name { font-size: 26px; font-weight: 900; margin-bottom: 4px; display: flex; align-items: center; gap: 8px; }
.verified-badge {
  background: var(--accent); color: var(--bg);
  border-radius: 50%; width: 20px; height: 20px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 700; flex-shrink: 0;
}
.artist-profile-meta { color: var(--muted); margin-bottom: 9px; }
.artist-profile-tags { display: flex; gap: 4px; flex-wrap: wrap; margin-bottom: 13px; }
.artist-profile-btns { display: flex; gap: 10px; flex-wrap: wrap; }
.artist-bio { color: var(--muted); font-size: 13px; margin-bottom: 18px; line-height: 1.6; }

/* ── Share inline button ──────────────────────────────────────────────────── */
.share-inline {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 12px; color: var(--muted);
  background: none; border: none; cursor: pointer;
  transition: color .15s;
}
.share-inline:hover { color: var(--text); }

/* ── Playlist page ────────────────────────────────────────────────────────── */
.playlist-hero { display: flex; align-items: center; gap: 18px; margin-bottom: 24px; flex-wrap: wrap; }
.playlist-hero img { width: 110px; height: 110px; border-radius: 12px; object-fit: cover; }
.playlist-eyebrow { font-size: 10px; color: var(--accent); font-weight: 700; letter-spacing: 2.5px; margin-bottom: 5px; }
.playlist-title { font-size: 24px; font-weight: 900; margin-bottom: 5px; }
.playlist-meta { color: var(--muted); margin-bottom: 11px; }
.playlist-btns { display: flex; gap: 10px; flex-wrap: wrap; }

.empty-state { text-align: center; padding: 40px 20px; color: var(--muted); }
.empty-state-icon { font-size: 32px; margin-bottom: 10px; }

/* ── Search Results ───────────────────────────────────────────────────────── */
.result-artist {
  display: flex; align-items: center; gap: 11px;
  background: var(--card); border: 1px solid var(--border);
  border-radius: 12px; padding: 11px;
  cursor: pointer; transition: background .15s; min-width: 220px;
}
.result-artist:hover { background: var(--el); }
.result-artists { display: flex; gap: 11px; flex-wrap: wrap; }

/* ── Responsive ───────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .activity-panel { display: none; }
  .sidebar { width: 52px; }
  .sidebar .side-label,
  .sidebar .side-section,
  .sidebar .side-divider,
  .sidebar .new-pl-btn { display: none; }
  .main-content { padding: 14px; }
  .player-extra .share-btn { display: none; }
  .song-actions .tag { display: none; }
}
