/* ── Likes view (root-level /likes) ─────────────────────────────────────────
   Account-wide likes: gallery items on top, tracks under. Reached only via the
   account menu. Reuses the .tracksbar top bar and the site's dark theme. */

#likesView { display: none; }
body.view-likes #likesView { display: block; }
body.view-likes .topbar,
body.view-likes #grid { display: none !important; }

.likesView {
  min-height: 100vh;
  background:
    radial-gradient(90% 60% at 50% -10%, rgba(94, 231, 247, 0.10) 0%, rgba(11, 13, 18, 0) 60%),
    radial-gradient(80% 50% at 100% 0%, rgba(247, 110, 178, 0.10) 0%, rgba(11, 13, 18, 0) 55%),
    #0b0d12;
  color: #e8e9ee;
}

/* Authed glow on the likes-bar account button (mirrors the Gallery). */
#likesAccountBtn.accountBtn--authed .filterIcon {
  stroke: #5ee7f7;
  filter: drop-shadow(0 0 6px rgba(94, 231, 247, 0.5));
}

.likes__inner {
  padding: 16px 16px 120px;
}
@media (max-width: 600px) { .likes__inner { padding: 12px 12px 120px; } }
body.tracks-has-player .likes__inner { padding-bottom: 168px; }

.likes__title {
  margin: 8px 0 24px;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  letter-spacing: -0.02em;
}

.likes-section { margin-bottom: clamp(28px, 4vw, 44px); }
.likes-section__title {
  margin: 0 0 14px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(232, 233, 238, 0.6);
}

.likes-empty {
  padding: 28px 4px;
  color: rgba(232, 233, 238, 0.5);
  font-weight: 600;
}

/* ── Gallery likes: normal Gallery cards (reuse .card styling from style.css) ────
   Match the Gallery's column count exactly via the shared --grid-cols variable. */
.likes-grid {
  display: grid;
  grid-template-columns: repeat(var(--grid-cols, 7), minmax(0, 1fr));
  gap: 8px;
}
/* Track likes reuse .tracks-grid (from tracks.css) — no bespoke styles needed. */
