-face {
  font-family: 'Muller';
  src: url('https://db.onlinewebfonts.com/t/84b58f4d9cef6ee8f72efcc1ac5e0f42.woff2') format('woff2'),
       url('https://db.onlinewebfonts.com/t/84b58f4d9cef6ee8f72efcc1ac5e0f42.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
-face {
  font-family: 'Muller';
  src: url('https://db.onlinewebfonts.com/t/5f3f6ac2fbd44e9e7bef0e6de14e5d3e.woff2') format('woff2'),
       url('https://db.onlinewebfonts.com/t/5f3f6ac2fbd44e9e7bef0e6de14e5d3e.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
    --bg: #0a0a0a;
    --bg2: #111111;
    --bg3: #161616;
    --surface: #1a1a1a;
    --border: #252525;
    --accent: #e8ff47;
    --accent2: #ff6b35;
    --text: #f0f0f0;
    --muted: #555;
    --muted2: #3a3a3a;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  html, body {
    height: 100%;
    background: var(--bg);
    color: var(--text);
    font-family: 'Muller', sans-serif;
    overflow: hidden;
  }

  /* LAYOUT */
  .app {
    display: grid;
    grid-template-columns: 220px 1fr;
    grid-template-rows: 1fr;
    height: 100vh;
  }

  /* SIDEBAR */
  .sidebar {
    grid-row: 1 / 2;
    background: var(--bg2);
    border-right: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    padding: 28px 0;
    overflow: hidden;
  }

  .logo {
    padding: 0 24px 32px;
    font-family: 'Muller', sans-serif;
    font-weight: 800;
    font-size: 22px;
    letter-spacing: -0.5px;
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .logo span {
    width: 8px; height: 8px;
    background: var(--accent);
    border-radius: 50%;
    display: inline-block;
    animation: pulse 2s ease infinite;
  }

  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.8); }
  }

  .nav-section {
    padding: 0 16px;
    margin-bottom: 28px;
  }

  .nav-label {
    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
    padding: 0 8px;
    margin-bottom: 8px;
  }

  .nav-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 10px;
    border-radius: 6px;
    font-size: 12px;
    color: #888;
    cursor: pointer;
    transition: all 0.15s;
    letter-spacing: 0.3px;
  }

  .nav-item:hover { background: var(--surface); color: var(--text); }
  .nav-item.active { background: var(--surface); color: var(--accent); }

  .nav-item svg { width: 15px; height: 15px; flex-shrink: 0; }

  .playlists {
    flex: 1;
    overflow-y: auto;
    padding: 0 16px;
  }

  .playlists::-webkit-scrollbar { width: 3px; }
  .playlists::-webkit-scrollbar-track { background: transparent; }
  .playlists::-webkit-scrollbar-thumb { background: var(--muted2); border-radius: 2px; }

  .playlist-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.15s;
    margin-bottom: 2px;
  }

  .playlist-item:hover { background: var(--surface); }
  .playlist-item.active { background: var(--surface); }

  .pl-thumb {
    width: 34px; height: 34px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
  }

  .pl-info { overflow: hidden; }
  .pl-name {
    font-size: 11px;
    color: #ccc;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-family: 'Muller', sans-serif;
    font-weight: 600;
  }
  .pl-count { font-size: 9px; color: var(--muted); margin-top: 1px; }

  .playlist-item.active .pl-name { color: var(--accent); }

  /* MAIN CONTENT */
  .main {
    grid-row: 1 / 2;
    overflow-y: auto;
    padding: 36px 40px;
    background: var(--bg);
  }

  .main::-webkit-scrollbar { width: 4px; }
  .main::-webkit-scrollbar-track { background: transparent; }
  .main::-webkit-scrollbar-thumb { background: var(--muted2); border-radius: 2px; }

  /* TOPBAR */
  .topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
  }

  .greeting {
    font-family: 'Muller', sans-serif;
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -0.8px;
  }

  .greeting span { color: var(--accent); }

  .search-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 8px 14px;
    width: 220px;
  }

  .search-wrap svg { width: 13px; height: 13px; color: var(--muted); flex-shrink: 0; }

  .search-wrap input {
    background: none;
    border: none;
    outline: none;
    color: var(--text);
    font-family: 'Muller', sans-serif;
    font-size: 11px;
    width: 100%;
  }

  .search-wrap input::placeholder { color: var(--muted); }

  /* SECTION */
  .section { margin-bottom: 44px; }

  .section-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 20px;
  }

  .section-title {
    font-family: 'Muller', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--muted);
  }

  .see-all {
    font-size: 10px;
    color: var(--accent);
    cursor: pointer;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.7;
    transition: opacity 0.15s;
  }
  .see-all:hover { opacity: 1; }

  /* HANDPICKED CARDS */
  .handpicked-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }

  .handpicked-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 110px;
    cursor: pointer;
    transition: transform 0.2s;
  }

  .handpicked-card:hover { transform: translateY(-2px); }
  .handpicked-card:hover .hc-overlay { opacity: 1; }

  .hc-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.3s;
  }

  .handpicked-card:hover .hc-bg { transform: scale(1.05); }

  .hc-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
  }

  .hc-overlay {
    position: absolute;
    inset: 0;
    background: rgba(232,255,71,0.08);
    opacity: 0;
    transition: opacity 0.2s;
  }

  .hc-content {
    position: absolute;
    bottom: 14px; left: 16px; right: 16px;
  }

  .hc-title {
    font-family: 'Muller', sans-serif;
    font-size: 14px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.3px;
  }

  .hc-sub { font-size: 9px; color: rgba(255,255,255,0.55); margin-top: 2px; letter-spacing: 0.5px; }

  .hc-play {
    position: absolute;
    top: 12px; right: 12px;
    width: 28px; height: 28px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.2s;
  }

  .handpicked-card:hover .hc-play { opacity: 1; transform: scale(1); }
  .hc-play svg { width: 10px; height: 10px; color: #000; margin-left: 1px; }

  /* TRACK LIST */
  .track-list { display: flex; flex-direction: column; gap: 2px; }

  .track-row {
    display: grid;
    grid-template-columns: 28px 42px 1fr auto auto;
    align-items: center;
    gap: 14px;
    padding: 10px 12px;
    border-radius: 7px;
    cursor: pointer;
    transition: background 0.15s;
    group: true;
  }

  .track-row:hover { background: var(--surface); }
  .track-row.playing { background: var(--surface); }

  .track-num {
    font-size: 11px;
    color: var(--muted);
    text-align: center;
    font-family: 'Muller', sans-serif;
  }

  .track-row.playing .track-num { color: var(--accent); }

  .track-row:hover .track-num { display: none; }
  .track-row:hover .track-play-icon { display: flex; }
  .track-play-icon {
    display: none;
    align-items: center;
    justify-content: center;
    width: 28px;
    color: var(--text);
  }
  .track-play-icon svg { width: 12px; height: 12px; }

  .track-thumb {
    width: 42px; height: 42px;
    border-radius: 5px;
    object-fit: cover;
    background: var(--surface);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    overflow: hidden;
  }

  .track-thumb img { width: 100%; height: 100%; object-fit: cover; border-radius: 5px; }

  .track-info {}
  .track-name {
    font-family: 'Muller', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    letter-spacing: -0.2px;
  }

  .track-row.playing .track-name { color: var(--accent); }

  .track-artist { font-size: 10px; color: var(--muted); margin-top: 2px; }

  .track-duration {
    font-size: 11px;
    color: var(--muted);
    font-variant-numeric: tabular-nums;
  }

  .track-like {
    width: 28px; height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.15s;
    cursor: pointer;
  }

  .track-row:hover .track-like { opacity: 1; }
  .track-like:hover { background: var(--muted2); }
  .track-like svg { width: 13px; height: 13px; color: var(--muted); }
  .track-like.liked svg { color: var(--accent2); fill: var(--accent2); }

  /* NOW PLAYING BAR */
  .player-bar { display: none; }

  .now-playing {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
  }

  .np-thumb {
    width: 48px; height: 48px;
    border-radius: 6px;
    background: var(--surface);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
    overflow: hidden;
    position: relative;
  }

  .np-thumb::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 6px;
    border: 1px solid rgba(232,255,71,0.2);
  }

  .np-info { min-width: 0; }
  .np-name {
    font-family: 'Muller', sans-serif;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    letter-spacing: -0.2px;
  }
  .np-artist { font-size: 10px; color: var(--muted); margin-top: 2px; }

  .np-heart {
    width: 30px; height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 50%;
    transition: background 0.15s;
    flex-shrink: 0;
  }
  .np-heart:hover { background: var(--muted2); }
  .np-heart svg { width: 14px; height: 14px; color: var(--muted); }

  /* CENTER CONTROLS */
  .player-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .controls {
    display: flex;
    align-items: center;
    gap: 20px;
  }

  .ctrl-btn {
    width: 30px; height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.15s;
    color: var(--muted);
  }

  .ctrl-btn:hover { color: var(--text); }
  .ctrl-btn svg { width: 15px; height: 15px; }

  .play-btn {
    width: 40px; height: 40px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.15s;
    flex-shrink: 0;
  }

  .play-btn:hover { transform: scale(1.06); }
  .play-btn svg { width: 14px; height: 14px; color: #000; margin-left: 1px; }
  .play-btn.playing svg { margin-left: 0; }

  .progress-area {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
  }

  .time { font-size: 10px; color: var(--muted); font-variant-numeric: tabular-nums; width: 28px; }
  .time.right { text-align: right; }

  .progress-bar {
    flex: 1;
    height: 3px;
    background: var(--muted2);
    border-radius: 2px;
    position: relative;
    cursor: pointer;
  }

  .progress-fill {
    height: 100%;
    background: var(--accent);
    border-radius: 2px;
    width: 32%;
    transition: width 0.1s;
  }

  .progress-bar:hover .progress-fill { background: var(--accent); }

  .progress-dot {
    width: 10px; height: 10px;
    background: var(--accent);
    border-radius: 50%;
    position: absolute;
    right: -5px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: opacity 0.15s;
  }

  .progress-bar:hover .progress-dot { opacity: 1; }

  /* RIGHT CONTROLS */
  .player-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
  }

  .vol-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .vol-wrap svg { width: 14px; height: 14px; color: var(--muted); }

  .volume-bar {
    width: 70px;
    height: 3px;
    background: var(--muted2);
    border-radius: 2px;
    cursor: pointer;
    position: relative;
  }

  .volume-fill {
    height: 100%;
    background: var(--muted);
    border-radius: 2px;
    width: 65%;
    transition: background 0.15s;
  }

  .volume-bar:hover .volume-fill { background: var(--accent); }

  /* WAVEFORM VISUALIZER */
  .waveform {
    display: flex;
    align-items: center;
    gap: 2px;
    height: 20px;
  }

  .wave-bar {
    width: 2px;
    background: var(--accent);
    border-radius: 1px;
    opacity: 0.6;
  }

  .wave-bar.active {
    animation: wave 0.8s ease-in-out infinite alternate;
  }

  @keyframes wave {
    from { transform: scaleY(0.3); }
    to { transform: scaleY(1); }
  }

  /* TABS */
  .tabs {
    display: flex;
    gap: 2px;
    margin-bottom: 24px;
    background: var(--bg2);
    border-radius: 8px;
    padding: 4px;
    width: fit-content;
  }

  .tab {
    padding: 6px 16px;
    border-radius: 6px;
    font-size: 11px;
    cursor: pointer;
    color: var(--muted);
    transition: all 0.15s;
    letter-spacing: 0.3px;
    font-family: 'Muller', sans-serif;
    font-weight: 600;
  }

  .tab.active { background: var(--surface); color: var(--text); }
  .tab:hover:not(.active) { color: #999; }

  /* GENRE PILL */
  .genre-pill {
    display: inline-block;
    padding: 3px 8px;
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: 20px;
    font-size: 9px;
    color: var(--muted);
    letter-spacing: 0.5px;
    text-transform: uppercase;
  }

  /* SCROLLBAR CUSTOM */
  .main::-webkit-scrollbar { width: 3px; }

  /* ===================== CD PLAYER OVERLAY ===================== */
  .player-overlay {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: flex;
    align-items: stretch;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4,0,0.2,1);
  }

  .player-overlay.open {
    opacity: 1;
    pointer-events: all;
  }

  /* blurred backdrop */
  .overlay-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(6,6,6,0.82);
    backdrop-filter: blur(28px) saturate(0.6);
    -webkit-backdrop-filter: blur(28px) saturate(0.6);
  }

  /* left: CD stage */
  .overlay-left {
    position: relative;
    flex: 1.1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    padding: 60px 48px;
    z-index: 1;
  }

  /* ambient glow behind CD */
  .cd-glow {
    position: absolute;
    width: 360px; height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
    opacity: 0.07;
    filter: blur(40px);
    pointer-events: none;
    transition: background 0.6s;
  }

  /* CD container */
  .cd-wrap {
    position: relative;
    width: 280px; height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* spinning disc */
  .cd-disc {
    width: 280px; height: 280px;
    border-radius: 50%;
    position: relative;
    animation: spinCD 6s linear infinite;
    animation-play-state: paused;
  }

  .cd-disc.spinning { animation-play-state: running; }

  @keyframes spinCD {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
  }

  /* grooves */
  .cd-disc::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background:
      repeating-radial-gradient(
        circle at 50% 50%,
        transparent 0px,
        transparent 6px,
        rgba(255,255,255,0.03) 6px,
        rgba(255,255,255,0.03) 7px
      );
    z-index: 2;
  }

  /* rainbow sheen */
  .cd-disc::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: conic-gradient(
      from 0deg,
      rgba(232,255,71,0.12),
      rgba(255,107,53,0.12),
      rgba(120,80,255,0.12),
      rgba(0,200,255,0.12),
      rgba(232,255,71,0.12)
    );
    mix-blend-mode: screen;
    z-index: 3;
  }

  .cd-cover {
    position: absolute;
    inset: 16px;
    border-radius: 50%;
    background: var(--surface);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 72px;
    overflow: hidden;
    z-index: 1;
  }

  .cd-cover img {
    width: 100%; height: 100%;
    object-fit: cover;
    border-radius: 50%;
  }

  /* center hole */
  .cd-hole {
    position: absolute;
    width: 36px; height: 36px;
    background: var(--bg);
    border-radius: 50%;
    z-index: 10;
    border: 2px solid rgba(255,255,255,0.06);
    box-shadow: 0 0 0 4px rgba(0,0,0,0.4);
  }

  /* outer ring */
  .cd-ring {
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,0.06);
    z-index: 0;
  }

  /* track info below CD */
  .overlay-track-info {
    text-align: center;
    z-index: 1;
  }

  .overlay-track-name {
    font-family: 'Muller', sans-serif;
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -1px;
    color: var(--text);
    line-height: 1;
    margin-bottom: 8px;
  }

  .overlay-track-artist {
    font-size: 12px;
    color: var(--muted);
    letter-spacing: 2px;
    text-transform: uppercase;
  }

  /* controls below info */
  .overlay-controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    z-index: 1;
    width: 100%;
    max-width: 360px;
  }

  .overlay-btns {
    display: flex;
    align-items: center;
    gap: 24px;
  }

  .ov-ctrl {
    width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
    color: var(--muted);
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.15s;
  }
  .ov-ctrl:hover { color: var(--text); background: rgba(255,255,255,0.05); }
  .ov-ctrl svg { width: 16px; height: 16px; }

  .ov-play {
    width: 56px; height: 56px;
    background: var(--accent);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.15s;
    box-shadow: 0 0 30px rgba(232,255,71,0.25);
  }
  .ov-play:hover { transform: scale(1.07); box-shadow: 0 0 40px rgba(232,255,71,0.4); }
  .ov-play svg { width: 18px; height: 18px; color: #000; margin-left: 2px; }
  .ov-play.paused svg { margin-left: 0; }

  .overlay-progress {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
  }

  .ov-time { font-size: 10px; color: var(--muted); font-variant-numeric: tabular-nums; width: 30px; }
  .ov-time.r { text-align: right; }

  .ov-bar {
    flex: 1;
    height: 4px;
    background: rgba(255,255,255,0.08);
    border-radius: 2px;
    cursor: pointer;
    position: relative;
  }

  .ov-bar-fill {
    height: 100%;
    background: var(--accent);
    border-radius: 2px;
    width: 32%;
    position: relative;
  }

  .ov-bar-fill::after {
    content: '';
    width: 12px; height: 12px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    right: -6px; top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: opacity 0.15s;
    box-shadow: 0 0 8px rgba(232,255,71,0.6);
  }

  .ov-bar:hover .ov-bar-fill::after { opacity: 1; }

  .overlay-vol {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .overlay-vol svg { width: 13px; height: 13px; color: var(--muted); }
  .ov-vol-bar {
    width: 80px; height: 3px;
    background: rgba(255,255,255,0.08);
    border-radius: 2px;
    cursor: pointer;
  }
  .ov-vol-fill {
    height: 100%;
    background: rgba(255,255,255,0.25);
    border-radius: 2px;
    width: 65%;
  }
  .ov-vol-bar:hover .ov-vol-fill { background: var(--accent); }

  /* right: queue */
  .overlay-right {
    position: relative;
    width: 320px;
    flex-shrink: 0;
    background: rgba(10,10,10,0.5);
    border-left: 1px solid rgba(255,255,255,0.05);
    display: flex;
    flex-direction: column;
    z-index: 1;
    padding: 0;
  }

  .queue-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 28px 16px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }

  .queue-title {
    font-family: 'Muller', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
  }

  .close-btn {
    width: 28px; height: 28px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    color: var(--muted);
    transition: all 0.15s;
  }
  .close-btn:hover { background: rgba(255,255,255,0.06); color: var(--text); }
  .close-btn svg { width: 14px; height: 14px; }

  .queue-now {
    padding: 16px 28px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }

  .queue-now-label {
    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 10px;
  }

  .queue-now-track {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .queue-thumb {
    width: 40px; height: 40px;
    border-radius: 5px;
    background: var(--surface);
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    border: 1px solid rgba(232,255,71,0.2);
  }

  .queue-track-name {
    font-family: 'Muller', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: -0.2px;
    color: var(--accent);
  }
  .queue-track-artist { font-size: 10px; color: var(--muted); margin-top: 2px; }

  .queue-list {
    flex: 1;
    overflow-y: auto;
    padding: 12px 0;
  }
  .queue-list::-webkit-scrollbar { width: 3px; }
  .queue-list::-webkit-scrollbar-thumb { background: var(--muted2); border-radius: 2px; }

  .queue-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 28px;
    cursor: pointer;
    transition: background 0.15s;
  }
  .queue-item:hover { background: rgba(255,255,255,0.03); }

  .q-num { font-size: 10px; color: var(--muted); width: 16px; text-align: center; flex-shrink: 0; }
  .q-emoji { font-size: 16px; flex-shrink: 0; }
  .q-info { flex: 1; min-width: 0; }
  .q-name {
    font-family: 'Muller', sans-serif;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #bbb;
  }
  .q-artist { font-size: 10px; color: var(--muted); margin-top: 1px; }
  .q-dur { font-size: 10px; color: var(--muted); flex-shrink: 0; }

  /* player bar expand button */
  .np-expand {
    width: 28px; height: 28px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    color: var(--muted);
    transition: all 0.15s;
    margin-left: 4px;
  }
  .np-expand:hover { background: var(--muted2); color: var(--text); }
  .np-expand svg { width: 13px; height: 13px; }

  /* ANIMATIONS */
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .section { animation: fadeIn 0.4s ease both; }
  .section:nth-child(2) { animation-delay: 0.05s; }
  .section:nth-child(3) { animation-delay: 0.1s; }
  .section-title { font-family: 'Muller', sans-serif !important; font-size: 22px !important; font-weight: 400 !important; letter-spacing: 3px !important; }
  .greeting { font-family: 'Muller', sans-serif !important; font-size: 42px !important; font-weight: 400 !important; letter-spacing: 1px !important; }
  .hc-title { font-family: 'Muller', sans-serif !important; font-size: 17px !important; letter-spacing: 1px !important; }
  .logo { font-family: 'Muller', sans-serif !important; letter-spacing: 3px !important; font-size: 24px !important; }
  .nav-label { font-family: 'Muller', sans-serif !important; letter-spacing: 2px !important; }
  .track-name { font-family: 'Muller', sans-serif !important; font-weight: 700 !important; }

  /* MINI PLAYER CARD */
  .mini-player-card { position:relative; border-radius:10px; overflow:hidden; background:linear-gradient(135deg,#0d0d0d,#1a1a1a); border:1px solid var(--border); display:flex; flex-direction:column; align-items:center; justify-content:center; gap:7px; padding:12px 10px; height:110px; }
  .mp-cd-wrap { position:relative; width:52px; height:52px; flex-shrink:0; }
  .mp-cd { width:52px; height:52px; border-radius:50%; background:linear-gradient(135deg,#222,#111); border:2px solid #333; position:relative; overflow:hidden; }
  .mp-cd.spinning { animation: cd-spin 4s linear infinite; }
  @keyframes cd-spin { from{transform:rotate(0deg)} to{transform:rotate(360deg)} }
  .mp-cd-cover { position:absolute; inset:0; background-size:cover; background-position:center; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:18px; }
  .mp-cd-hole { position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); width:10px; height:10px; border-radius:50%; background:var(--bg); border:1px solid #444; z-index:2; }
  .mp-info { text-align:center; width:100%; min-width:0; }
  .mp-name { font-family:'Muller',sans-serif; font-size:10px; font-weight:700; color:var(--text); white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
  .mp-artist { font-size:9px; color:var(--muted); margin-top:1px; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
  .mp-controls { display:flex; align-items:center; gap:10px; }
  .mp-btn { width:20px; height:20px; display:flex; align-items:center; justify-content:center; color:var(--muted); cursor:pointer; transition:color 0.15s; }
  .mp-btn:hover { color:var(--text); }
  .mp-btn svg { width:13px; height:13px; }
  .mp-play-btn { width:30px; height:30px; border-radius:50%; background:var(--accent); display:flex; align-items:center; justify-content:center; cursor:pointer; transition:transform 0.15s; flex-shrink:0; }
  .mp-play-btn:hover { transform:scale(1.08); }
  .mp-play-btn svg { width:11px; height:11px; color:#000; margin-left:1px; }
  .mp-progress-wrap { display:flex; align-items:center; gap:5px; width:100%; }
  .mp-time { font-size:8px; color:var(--muted); flex-shrink:0; }
  .mp-bar { flex:1; height:3px; background:var(--muted2); border-radius:2px; cursor:pointer; position:relative; }
  .mp-bar-fill { height:100%; background:var(--accent); border-radius:2px; width:0%; transition:width 0.3s linear; }
  .mp-expand { font-size:8px; color:var(--muted); letter-spacing:1px; cursor:pointer; display:flex; align-items:center; gap:3px; transition:color 0.15s; font-family:'Muller',sans-serif; }
  .mp-expand:hover { color:var(--accent); }
  .mp-expand svg { width:10px; height:10px; }

/* ── BIG SONG GRID CARDS ───────────────────────────────────── */
.handpicked-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 16px !important;
}

.handpicked-card {
  height: 200px !important;
}

/* ── REMOVE OLD MINI PLAYER CARD ───────────────────────────── */
.mini-player-card { display: none !important; }

/* ── FLOATING CD PLAYER ────────────────────────────────────── */
.cd-float {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 240px;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(32px) saturate(1.4);
  -webkit-backdrop-filter: blur(32px) saturate(1.4);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.7), 0 0 0 0.5px rgba(255,255,255,0.04);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding-bottom: 16px;
  z-index: 999;
  opacity: 0;
  transform: scale(0.88) translateY(20px);
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.34,1.56,0.64,1), transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
  user-select: none;
  overflow: hidden;
  /* min/max for resize */
  min-width: 160px;
  max-width: 420px;
  min-height: 300px;
}

.cd-float.visible {
  opacity: 1;
  transform: scale(1) translateY(0);
  pointer-events: all;
}

/* top drag bar */
.cd-float-bar {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px 6px;
  cursor: grab;
  flex-shrink: 0;
}
.cd-float-bar:active { cursor: grabbing; }

.cd-float-dots {
  display: flex;
  gap: 5px;
}
.cd-float-dots span {
  width: 10px; height: 10px;
  border-radius: 50%;
  display: block;
}

.cd-float-title {
  font-family: 'Muller', sans-serif;
  font-size: 9px;
  color: rgba(255,255,255,0.25);
  letter-spacing: 1px;
  text-transform: uppercase;
  flex: 1;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 0 8px;
}

.cd-float-resize {
  width: 18px; height: 18px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.2);
  cursor: se-resize;
  flex-shrink: 0;
  transition: color 0.15s;
}
.cd-float-resize:hover { color: rgba(255,255,255,0.5); }
.cd-float-resize svg { width: 12px; height: 12px; }

/* disc wrap */
.cd-float-disc-wrap {
  position: relative;
  flex-shrink: 0;
  /* size scales with container width */
  width: calc(100% - 40px);
  aspect-ratio: 1;
  max-width: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cd-float-ring {
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.05);
}

.cd-float-glow {
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent) 0%, transparent 65%);
  opacity: 0.08;
  filter: blur(16px);
  pointer-events: none;
  transition: opacity 0.5s;
}
.cd-float.playing .cd-float-glow { opacity: 0.18; }

.cd-float-disc {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: relative;
  animation: cdFloatSpin 5s linear infinite;
  animation-play-state: paused;
}
.cd-float.playing .cd-float-disc { animation-play-state: running; }

@keyframes cdFloatSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.cd-float-cover {
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  background: var(--surface);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  z-index: 1;
}
.cd-float-cover img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.cd-float-grooves {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: repeating-radial-gradient(
    circle at 50% 50%,
    transparent 0px, transparent 5px,
    rgba(255,255,255,0.025) 5px, rgba(255,255,255,0.025) 6px
  );
  z-index: 2;
}

.cd-float-sheen {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    rgba(232,255,71,0.1), rgba(255,107,53,0.1),
    rgba(120,80,255,0.1), rgba(0,200,255,0.1),
    rgba(232,255,71,0.1)
  );
  mix-blend-mode: screen;
  z-index: 3;
}

.cd-float-hole {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 14%;
  aspect-ratio: 1;
  background: #060606;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.06);
  z-index: 10;
}

/* track info */
.cd-float-info {
  text-align: center;
  padding: 0 16px;
  width: 100%;
  flex-shrink: 0;
}
.cd-float-name {
  font-family: 'Muller', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: -0.2px;
}
.cd-float-artist {
  font-size: 10px;
  color: var(--muted);
  margin-top: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* progress */
.cd-float-progress {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 16px;
  width: 100%;
  flex-shrink: 0;
}
.cd-float-time {
  font-family: 'Muller', sans-serif;
  font-size: 9px;
  color: var(--muted);
  flex-shrink: 0;
}
.cd-float-bar-wrap {
  flex: 1;
  height: 3px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
  cursor: pointer;
  position: relative;
}
.cd-float-bar-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 2px;
  width: 0%;
  pointer-events: none;
  transition: width 0.3s linear;
}
.cd-float-bar-wrap:hover .cd-float-bar-fill { background: #fff; }

/* controls */
.cd-float-controls {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.cd-float-btn {
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
  cursor: pointer;
  border-radius: 50%;
  transition: all 0.15s;
}
.cd-float-btn:hover { color: var(--text); background: rgba(255,255,255,0.06); }
.cd-float-btn svg { width: 14px; height: 14px; }

.cd-float-play {
  width: 46px; height: 46px;
  background: var(--accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 0 24px rgba(232,255,71,0.3);
  flex-shrink: 0;
}
.cd-float-play:hover { transform: scale(1.08); box-shadow: 0 0 36px rgba(232,255,71,0.5); }
.cd-float-play svg { width: 16px; height: 16px; color: #000; margin-left: 2px; }

/* volume */
.cd-float-vol {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  width: 100%;
  flex-shrink: 0;
}
.cd-float-vol svg { width: 12px; height: 12px; color: var(--muted); flex-shrink: 0; }
.cd-float-vol-bar {
  flex: 1;
  height: 3px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
  cursor: pointer;
}
.cd-float-vol-fill {
  height: 100%;
  background: rgba(255,255,255,0.2);
  border-radius: 2px;
  pointer-events: none;
}
.cd-float-vol-bar:hover .cd-float-vol-fill { background: var(--accent); }

/* ── CD FLOAT: window manager buttons ─────────────────────── */
.cd-float-wm {
  display: flex;
  gap: 6px;
  align-items: center;
  flex-shrink: 0;
}
.cd-float-wm-btn {
  width: 12px; height: 12px;
  border-radius: 50%;
  cursor: pointer;
  transition: filter 0.15s;
  flex-shrink: 0;
}
.cd-float-wm-btn:hover { filter: brightness(1.4); }
.cd-float-close    { background: #ff5f57; }
.cd-float-minimise { background: #febc2e; }
.cd-float-maximise { background: #28c840; }

/* ── CD FLOAT: minimised state ─────────────────────────────── */
.cd-float-body {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding-bottom: 4px;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.4,0,0.2,1),
              opacity     0.3s ease,
              padding     0.3s ease;
  max-height: 600px;
  opacity: 1;
}
.cd-float.minimised .cd-float-body {
  max-height: 0;
  opacity: 0;
  padding-bottom: 0;
}

/* ── CD FLOAT: resize grip ──────────────────────────────────── */
.cd-float-resize-grip {
  position: absolute;
  bottom: 0; right: 0;
  width: 18px; height: 18px;
  cursor: se-resize;
  background: linear-gradient(
    135deg,
    transparent 40%,
    rgba(255,255,255,0.12) 40%,
    rgba(255,255,255,0.12) 55%,
    transparent 55%,
    transparent 65%,
    rgba(255,255,255,0.12) 65%,
    rgba(255,255,255,0.12) 80%,
    transparent 80%
  );
  border-bottom-right-radius: 18px;
}
.cd-float-resize-grip:hover {
  background: linear-gradient(
    135deg,
    transparent 40%,
    rgba(232,255,71,0.4) 40%,
    rgba(232,255,71,0.4) 55%,
    transparent 55%,
    transparent 65%,
    rgba(232,255,71,0.4) 65%,
    rgba(232,255,71,0.4) 80%,
    transparent 80%
  );
}

/* ── CD FLOAT: maximise (restore to default size) ───────────── */
.cd-float-maximise-state {
  width: 240px !important;
}

/* ── FLOATING CD — full override ──────────────────────────── */
.handpicked-grid { display:grid !important; grid-template-columns:repeat(4,1fr) !important; gap:16px !important; }
.handpicked-card { height:200px !important; }
.mini-player-card { display:none !important; }

.cd-float {
  position:fixed; bottom:40px; right:40px; width:240px;
  min-width:180px; max-width:460px;
  border:1px solid rgba(255,255,255,0.1); border-radius:20px;
  box-shadow:0 32px 80px rgba(0,0,0,0.8),inset 0 1px 0 rgba(255,255,255,0.08);
  display:flex; flex-direction:column; align-items:center; gap:10px; padding-bottom:16px;
  z-index:999; opacity:0; transform:scale(0.88) translateY(20px); pointer-events:none;
  transition:opacity 0.35s cubic-bezier(0.34,1.56,0.64,1),transform 0.35s cubic-bezier(0.34,1.56,0.64,1),background 0.8s ease,width 0.2s ease;
  user-select:none; overflow:hidden;
  background:linear-gradient(135deg,#0e0e0e 0%,#1a1a1a 100%);
}
.cd-float.visible { opacity:1; transform:scale(1) translateY(0); pointer-events:all; }
.cd-float-bar {
  width:100%; display:flex; align-items:center; justify-content:space-between;
  padding:12px 14px 4px; cursor:grab; flex-shrink:0; position:relative; z-index:2;
}
.cd-float-bar:active { cursor:grabbing; }
.cd-float-wm { display:flex; gap:6px; align-items:center; flex-shrink:0; }
.cd-float-wm-btn {
  width:12px; height:12px; border-radius:50%; cursor:pointer; flex-shrink:0;
  transition:filter 0.15s,transform 0.15s;
}
.cd-float-wm-btn:hover { filter:brightness(1.3); transform:scale(1.15); }
.cd-float-close    { background:#ff5f57; }
.cd-float-minimise { background:#febc2e; }
.cd-float-maximise { background:#28c840; }
.cd-float-title {
  font-family:'Muller',sans-serif; font-size:9px; color:rgba(255,255,255,0.3);
  letter-spacing:1px; text-transform:uppercase; flex:1; text-align:center;
  overflow:hidden; text-overflow:ellipsis; white-space:nowrap; padding:0 8px;
}
.cd-float-body {
  width:100%; display:flex; flex-direction:column; align-items:center; gap:10px;
  padding:0 0 4px; overflow:hidden; max-height:600px; opacity:1; position:relative; z-index:1;
  transition:max-height 0.35s cubic-bezier(0.4,0,0.2,1),opacity 0.25s ease,padding 0.35s ease;
}
.cd-float.minimised .cd-float-body { max-height:0; opacity:0; padding:0; }
.cd-float-disc-wrap {
  position:relative; width:calc(100% - 40px); max-width:180px; aspect-ratio:1;
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
.cd-float-glow {
  position:absolute; inset:-30px; border-radius:50%;
  background:radial-gradient(circle,#e8ff47 0%,#ff6b35 40%,transparent 70%);
  opacity:0.08; filter:blur(20px); pointer-events:none;
  transition:background 0.8s ease,opacity 0.5s ease;
}
.cd-float.playing .cd-float-glow { opacity:0.3; }
.cd-float-ring { position:absolute; inset:-5px; border-radius:50%; border:1px solid rgba(255,255,255,0.07); }
.cd-float-disc {
  width:100%; height:100%; border-radius:50%; position:relative;
  animation:cdFloatSpin 5s linear infinite; animation-play-state:paused;
}
.cd-float.playing .cd-float-disc { animation-play-state:running; }
@keyframes cdFloatSpin { from{transform:rotate(0deg)} to{transform:rotate(360deg)} }
.cd-float-cover {
  position:absolute; inset:12%; border-radius:50%; background:#1a1a1a;
  overflow:hidden; display:flex; align-items:center; justify-content:center; font-size:28px; z-index:1;
}
.cd-float-cover img { width:100%; height:100%; object-fit:cover; border-radius:50%; }
.cd-float-grooves {
  position:absolute; inset:0; border-radius:50%; z-index:2;
  background:repeating-radial-gradient(circle at 50% 50%,transparent 0px,transparent 5px,rgba(255,255,255,0.025) 5px,rgba(255,255,255,0.025) 6px);
}
.cd-float-sheen {
  position:absolute; inset:0; border-radius:50%; z-index:3; mix-blend-mode:screen;
  background:conic-gradient(from 0deg,rgba(232,255,71,0.12),rgba(255,107,53,0.12),rgba(120,80,255,0.12),rgba(0,200,255,0.12),rgba(232,255,71,0.12));
}
.cd-float-hole {
  position:absolute; top:50%; left:50%; transform:translate(-50%,-50%);
  width:14%; aspect-ratio:1; background:rgba(0,0,0,0.9); border-radius:50%;
  border:1px solid rgba(255,255,255,0.08); z-index:10;
}
.cd-float-info { text-align:center; padding:0 16px; width:100%; flex-shrink:0; position:relative; z-index:1; }
.cd-float-name {
  font-family:'Muller',sans-serif; font-size:13px; font-weight:700; color:#fff;
  white-space:nowrap; overflow:hidden; text-overflow:ellipsis; text-shadow:0 1px 8px rgba(0,0,0,0.6);
}
.cd-float-artist { font-size:10px; color:rgba(255,255,255,0.55); margin-top:3px; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.cd-float-progress {
  display:flex; align-items:center; gap:7px; padding:0 16px; width:100%; flex-shrink:0; position:relative; z-index:1;
}
.cd-float-time { font-family:'Muller',sans-serif; font-size:9px; color:rgba(255,255,255,0.4); flex-shrink:0; }
.cd-float-bar-wrap { flex:1; height:3px; background:rgba(255,255,255,0.12); border-radius:2px; cursor:pointer; }
.cd-float-bar-fill { height:100%; background:rgba(255,255,255,0.85); border-radius:2px; width:0%; pointer-events:none; transition:width 0.3s linear; }
.cd-float-bar-wrap:hover .cd-float-bar-fill { background:#fff; }
.cd-float-controls { display:flex; align-items:center; gap:16px; flex-shrink:0; position:relative; z-index:1; }
.cd-float-btn {
  width:32px; height:32px; display:flex; align-items:center; justify-content:center;
  color:rgba(255,255,255,0.5); cursor:pointer; border-radius:50%; transition:all 0.15s;
}
.cd-float-btn:hover { color:#fff; background:rgba(255,255,255,0.08); }
.cd-float-btn svg { width:14px; height:14px; }
.cd-float-play {
  width:46px; height:46px; background:rgba(255,255,255,0.95); border-radius:50%;
  display:flex; align-items:center; justify-content:center; cursor:pointer;
  transition:transform 0.15s,box-shadow 0.15s; box-shadow:0 4px 20px rgba(0,0,0,0.4); flex-shrink:0;
}
.cd-float-play:hover { transform:scale(1.08); }
.cd-float-play svg { width:16px; height:16px; color:#111; margin-left:2px; }
.cd-float-vol {
  display:flex; align-items:center; gap:8px; padding:0 16px; width:100%; flex-shrink:0; position:relative; z-index:1;
}
.cd-float-vol svg { width:12px; height:12px; color:rgba(255,255,255,0.35); flex-shrink:0; }
.cd-float-vol-bar { flex:1; height:3px; background:rgba(255,255,255,0.12); border-radius:2px; cursor:pointer; }
.cd-float-vol-fill { height:100%; background:rgba(255,255,255,0.4); border-radius:2px; pointer-events:none; }
.cd-float-vol-bar:hover .cd-float-vol-fill { background:rgba(255,255,255,0.85); }
.cd-float-resize-grip {
  position:absolute; bottom:0; right:0; width:22px; height:22px;
  cursor:se-resize; z-index:10; border-bottom-right-radius:20px;
  background:linear-gradient(135deg,transparent 35%,rgba(255,255,255,0.15) 35%,rgba(255,255,255,0.15) 48%,transparent 48%,transparent 58%,rgba(255,255,255,0.15) 58%,rgba(255,255,255,0.15) 71%,transparent 71%,transparent 81%,rgba(255,255,255,0.15) 81%,rgba(255,255,255,0.15) 94%,transparent 94%);
}
.cd-float-resize-grip:hover {
  background:linear-gradient(135deg,transparent 35%,rgba(232,255,71,0.5) 35%,rgba(232,255,71,0.5) 48%,transparent 48%,transparent 58%,rgba(232,255,71,0.5) 58%,rgba(232,255,71,0.5) 71%,transparent 71%,transparent 81%,rgba(232,255,71,0.5) 81%,rgba(232,255,71,0.5) 94%,transparent 94%);
}

/* ══════════════════════════════════════════
   MONOCHROME REDESIGN — complete style block
   ══════════════════════════════════════════ */

/* main padding */
.main { padding: 40px 48px !important; }

/* ── section ───────────────────────────── */
.m-section { margin-bottom: 52px; }

.m-sec-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}
.m-sec-title {
  font-family: 'Muller', sans-serif !important;
  font-size: 28px !important;
  font-weight: 800 !important;
  color: var(--text) !important;
  letter-spacing: -0.6px !important;
  text-transform: none !important;
  margin: 0;
}
.m-sec-btn {
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; color: var(--muted); cursor: pointer;
  transition: color 0.2s, background 0.2s, transform 0.4s;
  flex-shrink: 0;
}
.m-sec-btn:hover { color: var(--text); background: var(--surface); transform: rotate(180deg); }
.m-sec-btn svg { width: 14px; height: 14px; }

/* ── horizontal scroll row (Jump Back In) ─ */
.alb-row {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: none;
}
.alb-row::-webkit-scrollbar { display: none; }
.alb-row .alb-card { width: 168px; flex-shrink: 0; }

/* ── 5-col wrap grid (Editor's Picks) ───── */
.alb-picks {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px 16px;
}

/* ── album card ─────────────────────────── */
.alb-card { cursor: pointer; }

.alb-art-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 6px;
  overflow: hidden;
  background: var(--surface);
  margin-bottom: 10px;
}
.alb-art {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.35s ease, filter 0.35s ease;
}
.alb-card:hover .alb-art { transform: scale(1.05); filter: brightness(0.55); }

.alb-hover {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.2s;
}
.alb-card:hover .alb-hover { opacity: 1; }
.alb-playbtn {
  width: 46px; height: 46px;
  background: rgba(255,255,255,0.95); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
  transform: scale(0.8); transition: transform 0.2s;
}
.alb-card:hover .alb-playbtn { transform: scale(1); }
.alb-playbtn svg { width: 16px; height: 16px; color: #111; margin-left: 2px; }

.alb-name {
  font-family: 'Muller', sans-serif;
  font-size: 13px; font-weight: 700; color: var(--text);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  letter-spacing: -0.1px;
}
.alb-sub {
  font-size: 11px; color: var(--muted); margin-top: 4px;
  display: flex; align-items: center; gap: 5px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.alb-dot { opacity: 0.3; font-size: 9px; }

/* ── genre tabs ─────────────────────────── */
.m-tabs {
  display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 18px;
}
.m-tab {
  padding: 5px 14px; border-radius: 20px; cursor: pointer;
  font-family: 'Muller', sans-serif; font-size: 11px; font-weight: 600;
  color: var(--muted); border: 1px solid transparent;
  transition: all 0.15s; letter-spacing: 0.2px;
}
.m-tab:hover { color: var(--text); border-color: var(--border); }
.m-tab.active { color: var(--text); background: var(--surface); border-color: var(--border); }

/* ── 2-col song grid ────────────────────── */
.song-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px 24px;
}
.sg-row {
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 9px 8px; border-radius: 6px;
  cursor: pointer; transition: background 0.12s; min-width: 0;
}
.sg-row:hover { background: var(--surface); }
.sg-row.active { background: var(--surface); }

.sg-left {
  display: flex; align-items: center; gap: 12px; min-width: 0; flex: 1;
}
.sg-num-wrap {
  width: 24px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.sg-num { font-family:'Muller',sans-serif; font-size:11px; color:var(--muted); }
.sg-playico { display:none; color:var(--text); }
.sg-playico svg { width:11px; height:11px; }
.sg-row:hover .sg-num { display:none; }
.sg-row:hover .sg-playico { display:flex; }
.sg-row.active .sg-num { color:var(--accent); }

.sg-thumb {
  width: 44px; height: 44px; border-radius: 4px;
  object-fit: cover; flex-shrink: 0; background: var(--surface);
  display: block;
}
.sg-info { min-width: 0; }
.sg-name {
  font-family: 'Muller', sans-serif; font-size: 13px; font-weight: 600;
  color: var(--text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.sg-row.active .sg-name { color: var(--accent); }
.sg-meta {
  font-size: 11px; color: var(--muted); margin-top: 3px;
  display: flex; align-items: center; gap: 4px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.sg-dot { opacity: 0.3; font-size: 9px; }

.sg-right { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.sg-dur { font-family:'Muller',sans-serif; font-size:11px; color:var(--muted); min-width:30px; text-align:right; }
.sg-heart {
  width: 24px; height: 24px; display: flex; align-items: center; justify-content: center;
  border-radius: 50%; opacity: 0; cursor: pointer; transition: opacity 0.15s, background 0.15s;
}
.sg-row:hover .sg-heart { opacity: 1; }
.sg-heart:hover { background: var(--muted2); }
.sg-heart svg { width: 12px; height: 12px; color: var(--muted); }
.sg-heart.on svg { stroke: var(--accent2); fill: var(--accent2); }

/* empty */
.m-empty { padding: 40px 0; color: var(--muted); font-size: 12px; text-align: center; letter-spacing: 1px; }

/* ── FLOATING CD (full block) ────────────── */
.cd-float {
  position:fixed; bottom:40px; right:40px; width:240px;
  min-width:180px; max-width:460px;
  border:1px solid rgba(255,255,255,0.1); border-radius:20px;
  box-shadow:0 32px 80px rgba(0,0,0,0.8),inset 0 1px 0 rgba(255,255,255,0.08);
  display:flex; flex-direction:column; align-items:center; gap:10px; padding-bottom:16px;
  z-index:999; opacity:0; transform:scale(0.88) translateY(20px); pointer-events:none;
  user-select:none; overflow:hidden;
  background:linear-gradient(135deg,#0e0e0e 0%,#1a1a1a 100%);
  transition:opacity 0.35s cubic-bezier(0.34,1.56,0.64,1),transform 0.35s cubic-bezier(0.34,1.56,0.64,1),background 0.8s ease,width 0.2s ease;
}
.cd-float.visible { opacity:1; transform:scale(1) translateY(0); pointer-events:all; }
.cd-float-bar { width:100%; display:flex; align-items:center; justify-content:space-between; padding:12px 14px 4px; cursor:grab; flex-shrink:0; z-index:2; position:relative; }
.cd-float-bar:active { cursor:grabbing; }
.cd-float-wm { display:flex; gap:6px; align-items:center; }
.cd-float-wm-btn { width:12px; height:12px; border-radius:50%; cursor:pointer; transition:filter 0.15s,transform 0.15s; }
.cd-float-wm-btn:hover { filter:brightness(1.3); transform:scale(1.15); }
.cd-float-close { background:#ff5f57; } .cd-float-minimise { background:#febc2e; } .cd-float-maximise { background:#28c840; }
.cd-float-title { font-family:'Muller',sans-serif; font-size:9px; color:rgba(255,255,255,0.3); letter-spacing:1px; text-transform:uppercase; flex:1; text-align:center; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; padding:0 8px; }
.cd-float-body { width:100%; display:flex; flex-direction:column; align-items:center; gap:10px; padding:0 0 4px; overflow:hidden; max-height:600px; opacity:1; position:relative; z-index:1; transition:max-height 0.35s cubic-bezier(0.4,0,0.2,1),opacity 0.25s ease,padding 0.35s ease; }
.cd-float.minimised .cd-float-body { max-height:0; opacity:0; padding:0; }
.cd-float-disc-wrap { position:relative; width:calc(100% - 40px); max-width:180px; aspect-ratio:1; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.cd-float-glow { position:absolute; inset:-30px; border-radius:50%; background:radial-gradient(circle,#e8ff47 0%,#ff6b35 40%,transparent 70%); opacity:0.08; filter:blur(20px); pointer-events:none; transition:background 0.8s,opacity 0.5s; }
.cd-float.playing .cd-float-glow { opacity:0.3; }
.cd-float-ring { position:absolute; inset:-5px; border-radius:50%; border:1px solid rgba(255,255,255,0.07); }
.cd-float-disc { width:100%; height:100%; border-radius:50%; position:relative; animation:cdSpin 5s linear infinite; animation-play-state:paused; }
.cd-float.playing .cd-float-disc { animation-play-state:running; }
@keyframes cdSpin { from{transform:rotate(0deg)} to{transform:rotate(360deg)} }
.cd-float-cover { position:absolute; inset:12%; border-radius:50%; background:#1a1a1a; overflow:hidden; display:flex; align-items:center; justify-content:center; font-size:28px; z-index:1; }
.cd-float-cover img { width:100%; height:100%; object-fit:cover; border-radius:50%; }
.cd-float-grooves { position:absolute; inset:0; border-radius:50%; z-index:2; background:repeating-radial-gradient(circle at 50% 50%,transparent 0px,transparent 5px,rgba(255,255,255,0.025) 5px,rgba(255,255,255,0.025) 6px); }
.cd-float-sheen { position:absolute; inset:0; border-radius:50%; z-index:3; mix-blend-mode:screen; background:conic-gradient(from 0deg,rgba(232,255,71,0.12),rgba(255,107,53,0.12),rgba(120,80,255,0.12),rgba(0,200,255,0.12),rgba(232,255,71,0.12)); }
.cd-float-hole { position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); width:14%; aspect-ratio:1; background:rgba(0,0,0,0.9); border-radius:50%; border:1px solid rgba(255,255,255,0.08); z-index:10; }
.cd-float-info { text-align:center; padding:0 16px; width:100%; flex-shrink:0; z-index:1; position:relative; }
.cd-float-name { font-family:'Muller',sans-serif; font-size:13px; font-weight:700; color:#fff; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; text-shadow:0 1px 8px rgba(0,0,0,0.6); }
.cd-float-artist { font-size:10px; color:rgba(255,255,255,0.55); margin-top:3px; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.cd-float-progress { display:flex; align-items:center; gap:7px; padding:0 16px; width:100%; flex-shrink:0; z-index:1; position:relative; }
.cd-float-time { font-family:'Muller',sans-serif; font-size:9px; color:rgba(255,255,255,0.4); flex-shrink:0; }
.cd-float-bar-wrap { flex:1; height:3px; background:rgba(255,255,255,0.12); border-radius:2px; cursor:pointer; }
.cd-float-bar-fill { height:100%; background:rgba(255,255,255,0.85); border-radius:2px; width:0%; pointer-events:none; transition:width 0.3s linear; }
.cd-float-bar-wrap:hover .cd-float-bar-fill { background:#fff; }
.cd-float-controls { display:flex; align-items:center; gap:16px; flex-shrink:0; z-index:1; position:relative; }
.cd-float-btn { width:32px; height:32px; display:flex; align-items:center; justify-content:center; color:rgba(255,255,255,0.5); cursor:pointer; border-radius:50%; transition:all 0.15s; }
.cd-float-btn:hover { color:#fff; background:rgba(255,255,255,0.08); }
.cd-float-btn svg { width:14px; height:14px; }
.cd-float-play { width:46px; height:46px; background:rgba(255,255,255,0.95); border-radius:50%; display:flex; align-items:center; justify-content:center; cursor:pointer; transition:transform 0.15s,box-shadow 0.15s; box-shadow:0 4px 20px rgba(0,0,0,0.4); flex-shrink:0; }
.cd-float-play:hover { transform:scale(1.08); }
.cd-float-play svg { width:16px; height:16px; color:#111; margin-left:2px; }
.cd-float-vol { display:flex; align-items:center; gap:8px; padding:0 16px; width:100%; flex-shrink:0; z-index:1; position:relative; }
.cd-float-vol svg { width:12px; height:12px; color:rgba(255,255,255,0.35); flex-shrink:0; }
.cd-float-vol-bar { flex:1; height:3px; background:rgba(255,255,255,0.12); border-radius:2px; cursor:pointer; }
.cd-float-vol-fill { height:100%; background:rgba(255,255,255,0.4); border-radius:2px; pointer-events:none; }
.cd-float-vol-bar:hover .cd-float-vol-fill { background:rgba(255,255,255,0.85); }
.cd-float-resize-grip { position:absolute; bottom:0; right:0; width:22px; height:22px; cursor:se-resize; z-index:10; border-bottom-right-radius:20px; background:linear-gradient(135deg,transparent 35%,rgba(255,255,255,0.15) 35%,rgba(255,255,255,0.15) 48%,transparent 48%,transparent 58%,rgba(255,255,255,0.15) 58%,rgba(255,255,255,0.15) 71%,transparent 71%,transparent 81%,rgba(255,255,255,0.15) 81%,rgba(255,255,255,0.15) 94%,transparent 94%); }
.cd-float-resize-grip:hover { background:linear-gradient(135deg,transparent 35%,rgba(232,255,71,0.5) 35%,rgba(232,255,71,0.5) 48%,transparent 48%,transparent 58%,rgba(232,255,71,0.5) 58%,rgba(232,255,71,0.5) 71%,transparent 71%,transparent 81%,rgba(232,255,71,0.5) 81%,rgba(232,255,71,0.5) 94%,transparent 94%); }
.greeting { font-weight: 700 !important; }
.sidebar { display: none !important; } .app { grid-template-columns: 1fr !important; }
