/* ── SIDEBAR ────────────────────────────────────────────────────── */
.sb {
  grid-area: sb;
  background: var(--s1);
  border-right: 1px solid var(--b1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.logo {
  padding: 24px 20px 18px;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -.5px;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  user-select: none;
}
.logo-icon {
  width: 30px;
  height: 30px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-icon svg { fill: var(--black); }

.nav  { padding: 0 10px; display: flex; flex-direction: column; gap: 2px; }
.ni   {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 12px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  color: var(--t2);
  transition: all .15s;
  user-select: none;
}
.ni:hover           { background: var(--s3); color: var(--t1); }
.ni.on              { background: var(--s3); color: var(--green); }
.ni svg             { flex-shrink: 0; width: 18px; height: 18px; }

.sdiv { height: 1px; background: var(--b1); margin: 12px 0; }
.slbl { padding: 0 20px 6px; font-size: 10px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; color: var(--t3); }
.ql   { flex: 1; overflow-y: auto; padding: 0 10px 12px; }

/* ── MAIN ───────────────────────────────────────────────────────── */
.main {
  grid-area: main;
  overflow-y: auto;
  background: var(--bg);
  position: relative;
}
.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(10,10,10,.88);
  backdrop-filter: blur(20px);
  padding: 14px 28px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid var(--b1);
}
.content { padding: 28px; }

/* ── MINI PLAYER ────────────────────────────────────────────────── */
.pl {
  grid-area: pl;
  background: var(--s1);
  border-top: 1px solid var(--b1);
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  align-items: center;
  padding: 0 20px;
  gap: 12px;
  position: relative;
  z-index: 20;
}

/* ── FULLSCREEN ─────────────────────────────────────────────────── */
.fs {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: var(--black);
  display: flex;
  flex-direction: column;
  transform: translateY(100%);
  transition: transform .4s cubic-bezier(.4,0,.2,1);
}
.fs.open { transform: translateY(0); }

.fs-bg  { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.fs-bgi {
  position: absolute;
  inset: -50%;
  background-size: cover;
  background-position: center;
  filter: blur(80px) saturate(.25);
  opacity: .4;
  transform: scale(1.5);
  transition: background-image .6s;
}
.fs-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(5,5,5,.65), rgba(5,5,5,.95));
}
.fs-hdr {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px;
}
.fs-body {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  padding: 0 56px 28px;
  align-items: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
