/* DREAMWAVE FM — Base Styles */
body {
  font-family: 'VT323', monospace;
  background: var(--dark-bg);
  color: var(--text-primary);
  height: 100vh;
  overflow: hidden;
  user-select: none;
  padding: 0 !important;
  margin: 0 !important;
}

#app {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 20px;
  overflow: hidden;
  background: rgba(2, 1, 12, 0.55);
  backdrop-filter: blur(2px);
}

/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
}

::-webkit-scrollbar-thumb {
  background: var(--neon-purple);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--neon-pink);
}

* {
  scrollbar-width: thin;
  scrollbar-color: var(--neon-purple) rgba(255, 255, 255, 0.05);
}

/* Selection */
::selection {
  background: rgba(185, 103, 255, 0.4);
  color: #fff;
}

/* Background Video */
#bgVideo {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  opacity: 0.6;
  pointer-events: none;
}

#bgSelector {
  position: fixed;
  top: 10px;
  right: 10px;
  z-index: 500;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 4px 8px;
  border-radius: 4px;
  font-family: 'VT323', monospace;
  font-size: 12px;
  cursor: pointer;
}

#bgSelector option {
  background: #0d0221;
  color: #fff;
}

/* Mode Toggle */
#modeToggle {
  position: fixed;
  top: 12px;
  left: 14px;
  z-index: 1000;
  background: rgba(185, 103, 255, 0.15);
  border: 1px solid rgba(185, 103, 255, 0.4);
  color: var(--neon-purple);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.25s ease;
}

#modeToggle:hover {
  background: rgba(185, 103, 255, 0.3);
  box-shadow: 0 0 12px rgba(185, 103, 255, 0.4);
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  margin-bottom: 8px;
  flex-wrap: wrap;
  gap: 12px;
}

.header-left h1 {
  font-family: 'Press Start 2P', cursive;
  font-size: 16px;
  color: var(--neon-pink);
  text-shadow: 0 0 20px rgba(255, 113, 206, 0.7), 0 0 40px rgba(255, 113, 206, 0.4);
  letter-spacing: 3px;
  margin-bottom: 6px;
}

.subtitle {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 3px;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

#headerModeToggle {
  background: rgba(185, 103, 255, 0.15);
  border: 1px solid rgba(185, 103, 255, 0.4);
  color: var(--neon-purple);
  font-size: 11px;
  padding: 5px 10px;
  border-radius: 20px;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.25s ease;
}

#headerModeToggle:hover {
  background: rgba(185, 103, 255, 0.3);
}

/* Now Playing */
.now-playing {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 0;
  text-align: center;
}

.album-art-clip {
  position: relative;
  width: 140px;
  height: 140px;
  margin-bottom: 14px;
}

.album-art {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 1;
  transition: box-shadow 0.4s ease;
}

.album-art-clip.playing .album-art {
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.5),
    0 0 30px rgba(255, 113, 206, 0.3),
    0 0 60px rgba(185, 103, 255, 0.15);
}

.vinyl-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid rgba(185, 103, 255, 0.2);
  pointer-events: none;
  animation: vinylRotate 4s linear infinite;
}

body:not(.playing) .vinyl-ring {
  animation-play-state: paused;
}

@keyframes vinylRotate {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

.now-playing-label {
  font-size: 11px;
  color: var(--neon-pink);
  letter-spacing: 3px;
  margin-bottom: 6px;
  text-shadow: 0 0 8px rgba(255, 113, 206, 0.5);
}

.track-title {
  font-size: 22px;
  color: #fff;
  font-weight: 400;
  margin-bottom: 4px;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.track-artist {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 6px;
}

.mood-badge {
  font-size: 11px;
  color: var(--neon-purple);
  background: rgba(185, 103, 255, 0.1);
  border: 1px solid rgba(185, 103, 255, 0.3);
  padding: 3px 10px;
  border-radius: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Progress Bar */
.progress-container {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 12px 0;
}

.progress-bar {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 2px;
  cursor: pointer;
  position: relative;
  overflow: visible;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(to right, var(--neon-pink), var(--neon-purple));
  border-radius: 2px;
  width: 0%;
  position: relative;
  transition: width 0.1s linear;
}

.progress-fill.scrubbing {
  transition: none;
}

.progress-tooltip {
  position: absolute;
  top: -32px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.9);
  color: #fff;
  font-size: 12px;
  padding: 5px 10px;
  border-radius: 5px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.15s;
  font-family: 'VT323', monospace;
  border: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 10;
}

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

.progress-thumb {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  background: var(--neon-pink);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s;
  box-shadow: 0 0 8px rgba(255, 113, 206, 0.7);
}

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

.time-display {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.5px;
}

/* Controls */
.controls {
  display: flex;
  gap: 6px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 10px 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.controls::-webkit-scrollbar {
  display: none;
}

.btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  padding: 6px 12px;
  font-size: 12px;
  border-radius: 20px;
  cursor: pointer;
  font-family: 'VT323', monospace;
  transition: all 0.2s ease;
  letter-spacing: 1px;
  white-space: nowrap;
  flex-shrink: 0;
}

.btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.btn.active {
  color: var(--neon-pink);
  border-color: rgba(255, 113, 206, 0.5);
  background: rgba(255, 113, 206, 0.1);
}

.btn-play {
  background: var(--neon-pink);
  border-color: var(--neon-pink);
  color: #000;
  font-weight: 600;
}

.btn-play:hover {
  background: #ff8ee0;
  border-color: #ff8ee0;
}

/* Crossfade Control */
.crossfade-control {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  padding: 8px 0;
  justify-content: center;
}

.crossfade-control input[type=range] {
  -webkit-appearance: none;
  width: 100px;
  height: 4px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 2px;
  cursor: pointer;
  flex: 1;
  transition: background 0.2s;
}

.crossfade-control input[type=range]:hover {
  background: rgba(255, 255, 255, 0.12);
}

.crossfade-control input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 14px;
  height: 14px;
  background: var(--neon-blue);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 8px rgba(1, 205, 254, 0.5);
  transition: transform 0.15s;
}

.crossfade-control input[type=range]::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

/* Volume Control */
.volume-control {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.4);
  padding: 8px 0;
  justify-content: center;
}

.volume-control input[type=range] {
  -webkit-appearance: none;
  width: 120px;
  height: 4px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 2px;
  cursor: pointer;
  flex: 1;
  transition: background 0.2s;
}

.volume-control input[type=range]:hover {
  background: rgba(255, 255, 255, 0.12);
}

.volume-control input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 14px;
  height: 14px;
  background: var(--neon-pink);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 8px rgba(255, 113, 206, 0.5);
  transition: transform 0.15s;
}

.volume-control input[type=range]::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

/* Playlist */
.playlist {
  width: 90%;
  max-width: 560px;
  margin-bottom: 40px;
}

.playlist h2 {
  font-family: 'Press Start 2P', cursive;
  font-size: 8px;
  color: var(--neon-purple);
  text-shadow: 0 0 10px rgba(185, 103, 255, 0.5);
  margin-bottom: 10px;
  letter-spacing: 2px;
}

/* Track List */
.track {
  display: flex;
  align-items: center;
  padding: 9px 12px;
  cursor: pointer;
  transition: background 0.18s ease, padding 0.15s ease;
  border-radius: 4px;
  margin-bottom: 2px;
}

.track:hover {
  background: rgba(255, 255, 255, 0.04);
  padding-left: 14px;
}

.track.playing {
  background: rgba(255, 113, 206, 0.08);
  border-left: 3px solid var(--neon-pink);
  padding-left: 11px;
}

.track-info {
  flex: 1;
  min-width: 0;
}

.track-name {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 2px;
  transition: color 0.2s;
}

.track:hover .track-name {
  color: rgba(255, 255, 255, 0.9);
}

.track.playing .track-name {
  color: #fff;
  text-shadow: 0 0 12px rgba(255, 113, 206, 0.5);
}

.track-artist-sm {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.track-mood {
  font-size: 11px;
  color: rgba(185, 103, 255, 0.4);
  margin-top: 1px;
}

.track-num {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.2);
  width: 24px;
  text-align: center;
  flex-shrink: 0;
}

.track.playing .track-num {
  color: var(--neon-pink);
}

.track-thumb {
  width: 42px;
  height: 42px;
  object-fit: cover;
  margin-right: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
  background: #1a1a3a;
  border-radius: 4px;
  transition: border-color 0.2s;
}

.track:hover .track-thumb {
  border-color: rgba(255, 255, 255, 0.2);
}

.track-duration {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.2);
  margin-left: auto;
  padding-left: 10px;
  flex-shrink: 0;
  min-width: 36px;
  text-align: right;
}

.track-heart {
  font-size: 15px;
  color: rgba(255, 113, 206, 0.5);
  margin-right: 8px;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.track-heart:hover {
  color: var(--neon-pink);
  text-shadow: 0 0 10px var(--neon-pink);
  transform: scale(1.15);
}

.track-queue-btn {
  opacity: 0;
  transition: opacity 0.15s, color 0.15s;
  font-size: 11px;
  margin-left: 2px;
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.25);
}

.track:hover .track-queue-btn {
  opacity: 1;
  color: rgba(255, 255, 255, 0.5);
}

.track-queue-btn:hover {
  color: var(--neon-green) !important;
}

.track-queued {
  opacity: 0.5;
}

.track-queued .track-queue-btn {
  color: var(--neon-green) !important;
  opacity: 1;
}

/* Visualizer */
.visualizer {
  display: flex;
  gap: 2px;
  align-items: flex-end;
  height: 12px;
  margin-left: 8px;
  flex-shrink: 0;
}

.bar {
  width: 3px;
  background: var(--neon-pink);
  border-radius: 2px;
}

.bar.animating {
  animation: bounce 0.5s ease-in-out infinite alternate;
}

@keyframes bounce {
  from { height: 2px; }
  to { height: 12px; }
}

.bar:nth-child(2) { animation-delay: 0.1s; }
.bar:nth-child(3) { animation-delay: 0.2s; }
.bar:nth-child(4) { animation-delay: 0.15s; }

/* Filter Chips */
.filter-chips {
  display: flex;
  flex-wrap: nowrap;
  gap: 6px;
  margin: 10px 0;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 4px;
  scrollbar-width: thin;
  scrollbar-color: rgba(185, 103, 255, 0.3) transparent;
}

.filter-chips::-webkit-scrollbar { height: 4px; }
.filter-chips::-webkit-scrollbar-track { background: transparent; }
.filter-chips::-webkit-scrollbar-thumb { background: rgba(185, 103, 255, 0.3); border-radius: 2px; }

.filter-chip {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.4);
  padding: 4px 12px;
  font-size: 12px;
  cursor: pointer;
  font-family: 'VT323', monospace;
  transition: all 0.18s ease;
  border-radius: 3px;
  letter-spacing: 0.5px;
  max-width: 180px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.filter-chip:hover {
  border-color: rgba(185, 103, 255, 0.5);
  color: rgba(185, 103, 255, 0.8);
  background: rgba(185, 103, 255, 0.05);
}

.filter-chip.active {
  background: rgba(185, 103, 255, 0.15);
  border-color: var(--neon-purple);
  color: var(--neon-purple);
  box-shadow: 0 0 10px rgba(185, 103, 255, 0.2);
}

/* Search */
.search-container {
  margin-bottom: 12px;
  display: flex;
  gap: 8px;
  align-items: center;
}

.search-container input {
  flex: 1;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.8);
  font-family: 'VT323', monospace;
  font-size: 16px;
  padding: 8px 14px;
  border-radius: 6px;
  outline: none;
  transition: all 0.2s ease;
}

.search-container input:focus {
  border-color: rgba(1, 205, 254, 0.5);
  background: rgba(1, 205, 254, 0.05);
  box-shadow: 0 0 14px rgba(1, 205, 254, 0.15);
}

.search-container input::placeholder {
  color: rgba(255, 255, 255, 0.2);
}

.clear-btn {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  font-size: 16px;
  padding: 6px 10px;
  transition: all 0.2s;
  border-radius: 4px;
}

.clear-btn:hover {
  color: var(--neon-pink);
  background: rgba(255, 113, 206, 0.1);
}

/* Like Button */
.like-btn {
  background: none;
  border: none;
  color: var(--neon-pink);
  text-shadow: 0 0 8px var(--neon-pink);
  font-size: 20px;
  cursor: pointer;
  padding: 4px 8px;
  transition: all 0.2s;
  margin-left: 8px;
}

.like-btn:hover {
  transform: scale(1.2);
}

/* Footer */
footer {
  text-align: center;
  padding: 12px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.2);
  letter-spacing: 2px;
}

.loading {
  text-align: center;
  padding: 25px;
  font-size: 18px;
  color: var(--neon-green);
  text-shadow: 0 0 10px var(--neon-green);
  animation: pulse 1s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* Canvas Visualizer */
#vizCanvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.25;
  z-index: 0;
}

/* Audio */
audio {
  display: none;
}

/* Track Actions */
.track-actions {
  display: flex;
  gap: 3px;
  align-items: center;
  flex-shrink: 0;
}

.q-btn, .like-btn, .pl-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 11px;
  padding: 2px 5px;
  border-radius: 3px;
  transition: all 0.15s;
}

.q-btn {
  color: rgba(255, 255, 255, 0.35);
}

.q-btn:hover, .q-btn.in-queue {
  color: var(--neon-blue);
}

.like-btn {
  color: rgba(255, 255, 255, 0.35);
}

.like-btn:hover, .like-btn.liked {
  color: var(--neon-pink);
}

.pl-btn {
  color: rgba(255, 255, 255, 0.3);
  font-size: 10px;
  padding: 2px 4px;
}

.pl-btn:hover {
  color: var(--neon-green);
}

/* Playlist divider */
.playlist-divider {
  width: 100%;
  color: rgba(255, 255, 255, 0.2);
  font-size: 10px;
  letter-spacing: 2px;
  padding: 6px 0 2px;
  margin-top: 4px;
}

.playlist-chip {
  color: var(--neon-blue) !important;
  border-color: rgba(1, 205, 254, 0.3) !important;
}

.playlist-chip.active {
  background: rgba(1, 205, 254, 0.15) !important;
  border-color: var(--neon-blue) !important;
  color: var(--neon-blue) !important;
}

.playlist-count {
  opacity: 0.6;
  font-size: 10px;
}

.add-playlist-btn {
  color: var(--neon-green) !important;
  border-color: rgba(5, 255, 161, 0.3) !important;
}

.add-playlist-btn:hover {
  background: rgba(5, 255, 161, 0.1) !important;
}

/* ================================================================
   COMPACT TRACK LIST — Track Row / Cover Thumbnails
   ================================================================ */
.track-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 6px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.15s;
  min-height: 0;
}
.track-row:hover { background: rgba(185, 103, 255, 0.08); }
.track-row.current { background: rgba(1, 205, 254, 0.06); }

.tr-cover {
  width: 36px;
  height: 36px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.tr-num {
  font-family: 'VT323', monospace;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.3);
  min-width: 22px;
  text-align: right;
  flex-shrink: 0;
}
.track-row.current .tr-num { color: var(--neon-blue); }

.tr-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.tr-name {
  font-family: 'VT323', monospace;
  font-size: 17px;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.1;
}
.track-row.current .tr-name { color: var(--neon-blue); }

.tr-artist {
  font-family: 'VT323', monospace;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.1;
}

.tr-mood {
  font-family: 'VT323', monospace;
  font-size: 13px;
  color: var(--neon-purple);
  flex-shrink: 0;
  opacity: 0.7;
}

.tr-like {
  background: none;
  border: none;
  font-size: 15px;
  cursor: pointer;
  flex-shrink: 0;
  padding: 2px 4px;
  color: rgba(255, 255, 255, 0.35);
  transition: color 0.15s, transform 0.15s;
}
.tr-like:hover { color: var(--neon-pink); transform: scale(1.2); }
.tr-like.liked { color: var(--neon-pink); }

.tr-dur {
  font-family: 'VT323', monospace;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.25);
  flex-shrink: 0;
  min-width: 24px;
}

/* ===== VAPOR BOOST 2026 ===== */
.btn {
  background: linear-gradient(135deg, rgba(255, 113, 206, 0.12), rgba(1, 205, 254, 0.08));
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 0 0 1px rgba(255, 113, 206, 0.04),
    0 10px 28px rgba(10, 5, 30, 0.28);
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.14);
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 113, 206, 0.45);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 0 18px rgba(255, 113, 206, 0.18),
    0 16px 34px rgba(0, 0, 0, 0.34);
}

.btn-play {
  background: linear-gradient(135deg, rgba(255, 113, 206, 0.95), rgba(185, 103, 255, 0.88));
  border-color: rgba(255, 255, 255, 0.34);
  color: #fff;
  box-shadow:
    0 0 22px rgba(255, 113, 206, 0.34),
    0 0 42px rgba(185, 103, 255, 0.18),
    0 16px 36px rgba(40, 8, 66, 0.42);
}

.btn-play:hover,
.btn-play:focus-visible {
  background: linear-gradient(135deg, rgba(255, 148, 221, 1), rgba(111, 226, 255, 0.95));
  border-color: rgba(255, 255, 255, 0.48);
  box-shadow:
    0 0 26px rgba(255, 113, 206, 0.42),
    0 0 56px rgba(1, 205, 254, 0.2),
    0 20px 40px rgba(23, 8, 48, 0.5);
}

.track,
.track-row {
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.025), rgba(185, 103, 255, 0.035));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.track:hover,
.track-row:hover {
  border-color: rgba(255, 113, 206, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 0 0 1px rgba(255, 113, 206, 0.05),
    0 10px 22px rgba(20, 6, 38, 0.22);
}

.track.playing,
.track-row.current {
  border-color: rgba(1, 205, 254, 0.26);
  background: linear-gradient(90deg, rgba(1, 205, 254, 0.11), rgba(255, 113, 206, 0.08));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 0 22px rgba(1, 205, 254, 0.12);
}

.tr-cover,
.track-thumb {
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.05),
    0 8px 18px rgba(0, 0, 0, 0.3),
    0 0 20px rgba(185, 103, 255, 0.12);
}

.tr-name,
.track-title-sm {
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.05);
}

.filter-chip {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(185, 103, 255, 0.06));
  border-color: rgba(255, 255, 255, 0.12);
}

.filter-chip:hover {
  background: linear-gradient(135deg, rgba(255, 113, 206, 0.14), rgba(1, 205, 254, 0.08));
  box-shadow: 0 0 18px rgba(185, 103, 255, 0.14);
}

.filter-chip.active {
  background: linear-gradient(135deg, rgba(255, 113, 206, 0.22), rgba(1, 205, 254, 0.14));
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow:
    0 0 14px rgba(255, 113, 206, 0.2),
    0 0 28px rgba(1, 205, 254, 0.12);
}

.search-container input {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(1, 205, 254, 0.04));
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.search-container input:focus {
  border-color: rgba(255, 113, 206, 0.5);
  background: linear-gradient(135deg, rgba(255, 113, 206, 0.08), rgba(1, 205, 254, 0.08));
  box-shadow:
    0 0 20px rgba(1, 205, 254, 0.12),
    0 0 32px rgba(255, 113, 206, 0.08);
}

