* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
  background: #121212;
  color: #fff;
  -webkit-font-smoothing: antialiased;
}
.hidden { display: none !important; }
button { cursor: pointer; font-family: inherit; }
::selection { background: #1db95455; }

/* --- Auth screen --- */
.auth-screen {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 50% 0%, #1b3a2b 0%, #000 60%);
}
.auth-box {
  background: #181818;
  padding: 40px;
  border-radius: 12px;
  width: 320px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
}
.logo { color: #1db954; font-size: 22px; margin-bottom: 20px; font-weight: 800; letter-spacing: .5px; }
.tabs { display: flex; margin-bottom: 20px; }
.tab {
  flex: 1;
  padding: 10px;
  background: none;
  border: none;
  border-bottom: 2px solid #333;
  color: #aaa;
  cursor: pointer;
  font-size: 14px;
  transition: color .15s;
}
.tab.active { color: #fff; border-color: #1db954; }
#auth-form input, #upload-form input, #new-playlist-form input {
  display: block;
  width: 100%;
  margin-bottom: 12px;
  padding: 11px 12px;
  border-radius: 6px;
  border: 1px solid #333;
  background: #222;
  color: #fff;
  font-size: 14px;
  outline: none;
  transition: border-color .15s;
}
#auth-form input:focus, #upload-form input:focus, #new-playlist-form input:focus { border-color: #1db954; }
#auth-submit, #upload-form button, #new-playlist-form button {
  width: 100%;
  padding: 11px;
  background: #1db954;
  border: none;
  border-radius: 24px;
  color: #000;
  font-weight: 700;
  font-size: 14px;
  transition: transform .1s, background .15s;
}
#auth-submit:hover, #upload-form button:hover, #new-playlist-form button:hover { background: #1ed760; transform: scale(1.02); }
.error { color: #ff5c5c; font-size: 13px; margin-top: 10px; min-height: 16px; }

/* --- App layout --- */
.app { display: flex; height: 100vh; }
.sidebar {
  width: 232px;
  background: #000;
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}
.sidebar .logo { padding-left: 10px; }
.sidebar nav { display: flex; flex-direction: column; gap: 2px; margin-top: 24px; }
.nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
  background: none;
  border: none;
  color: #b3b3b3;
  padding: 10px 10px;
  border-radius: 6px;
  font-size: 14.5px;
  font-weight: 600;
  transition: color .15s, background .15s;
}
.nav-item::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 2px;
  background: currentColor;
  opacity: .55;
  flex-shrink: 0;
}
.nav-item.active, .nav-item:hover { color: #fff; background: #1a1a1a; }
.nav-item.active::before { background: #1db954; opacity: 1; }
.sidebar-footer {
  margin-top: auto;
  font-size: 13px;
  color: #b3b3b3;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border-top: 1px solid #282828;
  transition: margin-bottom .1s;
}
/* Player bar is fixed across the full viewport width, so once it's visible
   it would otherwise sit on top of the sidebar footer (avatar/username/
   logout). Push the footer up by the player bar's height to keep it clear. */
.app.has-player .sidebar-footer { margin-bottom: 80px; }
.sidebar-footer .avatar-thumb { margin-bottom: 0; }
#whoami { flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; color: #fff; font-weight: 600; }
.sidebar-footer button {
  background: none;
  border: 1px solid #555;
  color: #fff;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  transition: border-color .15s, color .15s;
}
.sidebar-footer button:hover { border-color: #fff; }

.main { flex: 1; overflow-y: auto; padding: 24px 32px 100px; }
.topbar { margin-bottom: 24px; }
#search-input {
  width: 100%;
  max-width: 420px;
  padding: 11px 16px;
  border-radius: 24px;
  border: none;
  background: #242424;
  color: #fff;
  font-size: 14px;
  outline: none;
  transition: background .15s;
}
#search-input:focus { background: #2a2a2a; box-shadow: 0 0 0 2px #1db95455; }

.view { display: none; }
.view.active { display: block; animation: fadein .15s ease; }
@keyframes fadein { from { opacity: 0; } to { opacity: 1; } }
.view h2 { font-size: 26px; margin: 0 0 4px; }
.usage-line { font-size: 13px; color: #b3b3b3; margin-bottom: 14px; }
.usage-line.warn { color: #ffb454; }

/* --- List controls (Play / Shuffle header bar) --- */
.list-controls {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 6px 0 16px;
}
.list-play-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #1db954;
  border: none;
  color: #000;
  flex-shrink: 0;
  transition: transform .1s, background .15s;
}
.list-play-btn:hover { background: #1ed760; transform: scale(1.05); }
.list-play-btn svg { margin-left: 2px; }
.list-shuffle-btn, .list-loop-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  color: #b3b3b3;
  padding: 8px 10px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  transition: color .15s, background .15s;
}
.list-shuffle-btn:hover, .list-loop-btn:hover { color: #fff; background: #1a1a1a; }
.list-shuffle-btn.active, .list-loop-btn.active { color: #1db954; }
.list-shuffle-btn.active svg, .list-loop-btn.active svg { fill: #1db954; }
.list-empty { color: #b3b3b3; font-size: 13px; }

/* --- Track rows --- */
.track-list, .playlist-list { display: flex; flex-direction: column; gap: 4px; margin-top: 4px; }
.track-row {
  display: grid;
  grid-template-columns: 44px 1fr auto auto;
  align-items: center;
  gap: 12px;
  padding: 8px 10px;
  border-radius: 6px;
  background: transparent;
  transition: background .1s;
}
.track-row:hover { background: #1a1a1a; }
.track-row.now-playing .track-title { color: #1db954; }
.track-main { min-width: 0; }
.track-title {
  font-weight: 600;
  font-size: 14.5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.track-artist {
  color: #b3b3b3;
  font-size: 12.5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 2px;
}
.track-size { color: #888; font-size: 12px; white-space: nowrap; padding-right: 4px; }
.track-actions { display: flex; align-items: center; gap: 4px; opacity: 0; transition: opacity .1s; }
.track-row:hover .track-actions, .track-row.now-playing .track-actions { opacity: 1; }
.track-actions button {
  background: none;
  border: 1px solid #444;
  color: #ddd;
  border-radius: 14px;
  padding: 4px 10px;
  font-size: 11.5px;
  white-space: nowrap;
  transition: border-color .15s, color .15s;
}
.track-actions button:hover { border-color: #fff; color: #fff; }
.track-actions button.followed { border-color: #1db954; color: #1db954; }
.track-actions button.danger:hover { border-color: #ff5c5c; color: #ff5c5c; }
.track-actions button.blocked { border-color: #ff5c5c; color: #ff5c5c; }
.track-actions.always-visible { opacity: 1; }

.track-icon-wrap {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 5px;
  overflow: hidden;
  background: #2a2a2a;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.track-icon {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.track-icon-fallback { color: #666; }
.follow-avatar-wrap { border-radius: 50%; }
.follow-avatar-wrap .track-icon { border-radius: 50%; }
.row-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.55);
  border: none;
  color: #fff;
  opacity: 0;
  transition: opacity .12s;
}
.track-row:hover .row-play-btn, .track-row.now-playing .row-play-btn { opacity: 1; }
.track-row.now-playing .row-play-btn { background: rgba(0,0,0,.4); }
.row-play-btn svg { filter: drop-shadow(0 1px 2px rgba(0,0,0,.6)); }

.track-icon-set-input { display: none; }

/* --- Playlist cards --- */
.playlist-list.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 16px;
}
.playlist-card {
  background: #181818;
  border-radius: 8px;
  padding: 14px;
  cursor: pointer;
  transition: background .15s;
  position: relative;
}
.playlist-card:hover { background: #242424; }
.playlist-card.active { outline: 2px solid #1db954; }
.playlist-card-art {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(135deg, #2a2a2a, #1db95433);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1db954;
  margin-bottom: 12px;
}
.playlist-card-name {
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.playlist-card-count { color: #b3b3b3; font-size: 12px; margin-top: 2px; }
.playlist-card-del {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,.6);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .12s;
}
.playlist-card:hover .playlist-card-del { opacity: 1; }
.playlist-card-del:hover { background: #ff5c5c; }

.playlist-detail-header {
  display: flex;
  align-items: flex-end;
  gap: 20px;
  margin: 8px 0 20px;
}
.playlist-detail-art {
  width: 96px;
  height: 96px;
  border-radius: 8px;
  background: linear-gradient(135deg, #2a2a2a, #1db95433);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1db954;
  flex-shrink: 0;
}
.playlist-detail-title { font-size: 30px; font-weight: 800; margin: 0; }
.playlist-detail-meta { color: #b3b3b3; font-size: 13px; margin-top: 4px; }
.playlist-back-btn {
  background: none;
  border: none;
  color: #b3b3b3;
  font-size: 13px;
  padding: 6px 0;
  margin-bottom: 4px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.playlist-back-btn:hover { color: #fff; }
.playlist-back-btn { margin-bottom: 12px; }

.artist-follow-btn {
  margin-left: auto;
  padding: 10px 22px;
  border-radius: 20px;
  border: 1px solid #555;
  background: none;
  color: #fff;
  font-weight: 700;
  font-size: 13.5px;
  align-self: center;
  transition: border-color .15s, color .15s;
}
.artist-follow-btn:hover { border-color: #fff; }
.artist-follow-btn.following { border-color: #1db954; color: #1db954; }
.artist-follow-btn.blocked { border-color: #ff5c5c; color: #ff5c5c; }

.uploader-link {
  cursor: pointer;
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: color .15s, text-decoration-color .15s;
}
.uploader-link:hover { color: #1db954; text-decoration-color: currentColor; }

/* --- Profile / avatars --- */
.avatar-thumb {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
}
.profile-box { max-width: 400px; margin-top: 10px; }
.avatar-preview {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin-bottom: 16px;
  background: #282828;
}
#avatar-form input {
  display: block;
  width: 100%;
  margin-bottom: 12px;
  padding: 10px;
  border-radius: 4px;
  border: 1px solid #333;
  background: #222;
  color: #fff;
}
#avatar-form button {
  width: 100%;
  padding: 10px;
  background: #1db954;
  border: none;
  border-radius: 20px;
  color: #000;
  font-weight: bold;
}
.field-label { display: block; font-size: 13px; color: #b3b3b3; margin: 4px 0; }

/* --- Genre searchable dropdown --- */
.genre-select { position: relative; margin-bottom: 12px; }
.genre-select-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 11px 12px;
  border-radius: 6px;
  border: 1px solid #333;
  background: #222;
  color: #fff;
  font-size: 14px;
  text-align: left;
  transition: border-color .15s;
}
.genre-select-btn:hover, .genre-select-btn:focus { border-color: #555; outline: none; }
.genre-select.open .genre-select-btn { border-color: #1db954; }
.genre-select-btn svg { flex-shrink: 0; color: #b3b3b3; transition: transform .12s; }
.genre-select.open .genre-select-btn svg { transform: rotate(180deg); }
.genre-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: #282828;
  border: 1px solid #3a3a3a;
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(0,0,0,.5);
  z-index: 20;
  padding: 8px;
}
.genre-dropdown input#genre-search {
  width: 100%;
  padding: 9px 10px;
  border-radius: 5px;
  border: 1px solid #3a3a3a;
  background: #1a1a1a;
  color: #fff;
  font-size: 13px;
  margin-bottom: 6px;
  outline: none;
}
.genre-dropdown input#genre-search:focus { border-color: #1db954; }
.genre-options {
  max-height: 220px;
  overflow-y: auto;
}
.genre-option {
  padding: 8px 10px;
  border-radius: 5px;
  font-size: 13.5px;
  color: #ddd;
  cursor: pointer;
}
.genre-option:hover, .genre-option.highlighted { background: #383838; color: #fff; }
.genre-option.selected { color: #1db954; font-weight: 600; }
.genre-option-empty { padding: 10px; font-size: 13px; color: #888; text-align: center; }


/* --- Player bar --- */
.player-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: #181818;
  border-top: 1px solid #282828;
  display: grid;
  grid-template-columns: 1fr minmax(320px, 40%) 1fr;
  align-items: center;
  padding: 0 16px;
  gap: 16px;
  z-index: 10;
}
.player-bar audio { display: none; }

.player-track-info {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.player-icon {
  width: 52px;
  height: 52px;
  border-radius: 5px;
  object-fit: cover;
  background: #282828;
  flex-shrink: 0;
}
.player-titles { min-width: 0; }
.player-title {
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.player-artist {
  font-size: 12px;
  color: #b3b3b3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.player-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  width: 100%;
}
.player-controls { display: flex; align-items: center; gap: 20px; }
.player-skip-btn {
  background: none;
  border: none;
  color: #b3b3b3;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color .15s, transform .1s;
}
.player-skip-btn:hover:not(:disabled) { color: #fff; transform: scale(1.08); }
.player-skip-btn:disabled { opacity: .35; cursor: default; }
.player-play-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
  border: none;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.player-play-btn:hover { transform: scale(1.06); }
.player-play-btn svg { margin-left: 1px; }

.player-progress-row {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
}
.player-time {
  font-size: 11px;
  color: #b3b3b3;
  min-width: 32px;
  text-align: center;
}

/* Shared slider look for seek + volume */
.player-seek, .player-volume {
  -webkit-appearance: none;
  appearance: none;
  height: 4px;
  border-radius: 2px;
  background: #4d4d4d;
  outline: none;
  cursor: pointer;
}
.player-seek { flex: 1; }
.player-volume { width: 90px; }
.player-seek::-webkit-slider-thumb, .player-volume::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  opacity: 0;
  transition: opacity .1s;
}
.player-seek:hover::-webkit-slider-thumb, .player-volume:hover::-webkit-slider-thumb { opacity: 1; }
.player-seek::-moz-range-thumb, .player-volume::-moz-range-thumb {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  border: none;
}
.player-seek:hover, .player-volume:hover { background: #666; }

.player-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  color: #b3b3b3;
}
.player-right a { color: #b3b3b3; display: flex; }
.player-right a:hover { color: #fff; }
.player-volume-icon { flex-shrink: 0; }

#upload-form, #new-playlist-form { max-width: 400px; margin-top: 10px; }

/* --- Modal dialogs (replaces alert/confirm/prompt) --- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.65);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  animation: modal-fade-in .12s ease;
}
@keyframes modal-fade-in { from { opacity: 0; } to { opacity: 1; } }
.modal-box {
  background: #282828;
  border-radius: 10px;
  padding: 24px;
  width: 360px;
  max-width: calc(100vw - 32px);
  max-height: calc(100vh - 64px);
  overflow-y: auto;
  box-shadow: 0 24px 64px rgba(0,0,0,.55);
  animation: modal-pop-in .14s ease;
}
@keyframes modal-pop-in { from { opacity: 0; transform: translateY(8px) scale(.98); } to { opacity: 1; transform: none; } }
.modal-title { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.modal-body { font-size: 14px; color: #dcdcdc; line-height: 1.5; }
.modal-body p { margin: 0 0 4px; }
.modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 20px;
}
.modal-actions button {
  padding: 9px 18px;
  border-radius: 20px;
  border: none;
  font-size: 13.5px;
  font-weight: 700;
}
.modal-btn-primary { background: #1db954; color: #000; }
.modal-btn-primary:hover { background: #1ed760; }
.modal-btn-secondary { background: none; border: 1px solid #555 !important; color: #fff; }
.modal-btn-secondary:hover { border-color: #fff !important; }
.modal-btn-danger { background: #e74c3c; color: #fff; }
.modal-btn-danger:hover { background: #ff5c4d; }

.modal-link-row {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}
.modal-link-input {
  flex: 1;
  padding: 9px 10px;
  border-radius: 5px;
  border: 1px solid #3a3a3a;
  background: #1a1a1a;
  color: #fff;
  font-size: 13px;
  min-width: 0;
}
.modal-copy-btn {
  padding: 9px 14px;
  border-radius: 5px;
  border: none;
  background: #1db954;
  color: #000;
  font-weight: 700;
  font-size: 13px;
  white-space: nowrap;
}
.modal-copy-btn:hover { background: #1ed760; }
.modal-copy-note { font-size: 12px; color: #1db954; margin-top: 8px; min-height: 14px; }

.modal-choice-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 4px;
  max-height: 280px;
  overflow-y: auto;
}
.modal-choice-btn {
  text-align: left;
  padding: 10px 12px;
  border-radius: 6px;
  border: 1px solid #3a3a3a;
  background: #1f1f1f;
  color: #fff;
  font-size: 13.5px;
}
.modal-choice-btn:hover { background: #333; border-color: #555; }


/* =========================================================================
   MOBILE RESPONSIVE STYLES
   Everything below is scoped to small viewports via @media queries, or are
   new elements (hamburger button / backdrop) that are display:none by
   default and only shown on small screens. Nothing above this point was
   changed, so the desktop experience is pixel-identical to before.
   ========================================================================= */

/* New elements: hidden on desktop, only appear on mobile (see media query) */
.mobile-nav-toggle {
  display: none;
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 30;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  background: rgba(24,24,24,.9);
  border: 1px solid #333;
  border-radius: 8px;
  color: #fff;
  backdrop-filter: blur(4px);
}
.sidebar-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.6);
  z-index: 15;
}

@media (max-width: 860px) {
  /* --- App shell: sidebar becomes a slide-in drawer --- */
  .app { position: relative; overflow-x: hidden; }
  .mobile-nav-toggle { display: flex; }
  .sidebar {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 20;
    width: 240px;
    max-width: 78vw;
    transform: translateX(-100%);
    transition: transform .2s ease;
    box-shadow: 4px 0 24px rgba(0,0,0,.4);
  }
  .app.sidebar-open .sidebar { transform: translateX(0); }
  .app.sidebar-open .sidebar-backdrop { display: block; }
  .sidebar .logo { padding-left: 0; margin-left: 44px; }

  .main {
    width: 100%;
    padding: 64px 16px 110px;
  }

  .topbar { margin-bottom: 16px; }
  #search-input { max-width: 100%; }

  .view h2 { font-size: 21px; }

  /* --- Track rows: no hover on touch, so keep actions/play button visible --- */
  .track-row { grid-template-columns: 40px 1fr auto; gap: 8px; padding: 8px 6px; }
  .track-size { display: none; }
  .track-actions { opacity: 1; gap: 2px; }
  .track-actions button { padding: 5px 8px; font-size: 11px; }
  .row-play-btn { opacity: 1; background: rgba(0,0,0,.35); }
  .track-icon-wrap { width: 40px; height: 40px; }

  /* --- Playlist cards --- */
  .playlist-list.card-grid { grid-template-columns: repeat(auto-fill, minmax(128px, 1fr)); gap: 10px; }
  .playlist-detail-header { gap: 14px; }
  .playlist-detail-art { width: 72px; height: 72px; }
  .playlist-detail-title { font-size: 22px; }
  .artist-follow-btn { padding: 8px 14px; font-size: 12.5px; }

  /* --- Forms --- */
  #upload-form, #new-playlist-form, .profile-box { max-width: 100%; }

  /* --- Player bar: stack into two rows, drop volume + skip labels width --- */
  .player-bar {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    height: auto;
    padding: 8px 12px 10px;
    row-gap: 6px;
  }
  .player-track-info { order: 1; }
  .player-center { order: 2; }
  .player-right { order: 3; justify-content: center; }
  .player-icon { width: 40px; height: 40px; }
  .player-volume { width: 70px; }
  .app.has-player .sidebar-footer { margin-bottom: 0; }
  .main { padding-bottom: 130px; }

  /* --- Modal --- */
  .modal-box { width: calc(100vw - 32px); padding: 18px; }

  /* --- Auth screen --- */
  .auth-box { width: calc(100vw - 40px); max-width: 320px; padding: 28px 24px; }
}

@media (max-width: 420px) {
  .player-controls { gap: 14px; }
  .player-time { min-width: 26px; font-size: 10px; }
  .player-right { justify-content: center; gap: 10px; }
  .player-volume { width: 60px; }
  .playlist-list.card-grid { grid-template-columns: repeat(auto-fill, minmax(108px, 1fr)); }
}
