/* ═══════════════════════════════════════════════════════════
   AUDIFY — Design System
   Palette: Acid Neon (#CCFF00, #FF3CAC, #0D0D0D, #1A1A2E)
   Fonts: Clash Display + Plus Jakarta Sans
═══════════════════════════════════════════════════════════ */

:root {
  --neon-green: #CCFF00;
  --neon-pink: #FF3CAC;
  --neon-blue: #00D4FF;
  --bg-deep: #0A0A0F;
  --bg-card: #111118;
  --bg-card2: #16161F;
  --bg-glass: rgba(255,255,255,0.04);
  --border: rgba(255,255,255,0.08);
  --border-bright: rgba(204,255,0,0.25);
  --text-primary: #F0F0F5;
  --text-secondary: #8888A0;
  --text-muted: #555568;
  --player-h: 88px;
  --radius: 16px;
  --radius-sm: 10px;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--bg-deep);
  color: var(--text-primary);
  min-height: 100vh;
  overflow-x: hidden;
  padding-bottom: calc(var(--player-h) + 24px);
}

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-deep); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--neon-green); }

/* ── Typography ── */
.gradient-text {
  background: linear-gradient(135deg, var(--neon-green) 0%, var(--neon-pink) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ══════════════════════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  background: rgba(10,10,15,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(10,10,15,0.97);
  box-shadow: 0 4px 40px rgba(0,0,0,0.5);
}
.nav-inner {
  width: 100%; max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-text {
  font-family: 'Clash Display', sans-serif;
  font-size: 22px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--neon-green), var(--neon-pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav-links {
  display: flex; align-items: center; gap: 4px;
  flex: 1;
}
.nav-link {
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
}
.nav-link:hover, .nav-link.active {
  color: var(--text-primary);
  background: var(--bg-glass);
}
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--neon-green);
}
.nav-right {
  display: flex; align-items: center; gap: 12px;
  margin-left: auto;
}
.search-wrap {
  position: relative;
  display: flex; align-items: center;
}
.search-icon {
  position: absolute; left: 12px;
  color: var(--text-muted);
  pointer-events: none;
}
.search-input {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 9px 16px 9px 38px;
  color: var(--text-primary);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  width: 220px;
  transition: var(--transition);
  outline: none;
}
.search-input::placeholder { color: var(--text-muted); }
.search-input:focus {
  border-color: var(--neon-green);
  box-shadow: 0 0 0 3px rgba(204,255,0,0.1);
  width: 260px;
}
.nav-menu-btn {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none;
  cursor: pointer; padding: 8px;
}
.nav-menu-btn span {
  display: block; width: 22px; height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}

/* ══════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 100px 24px 60px;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  pointer-events: none;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
}
.orb1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--neon-green), transparent 70%);
  top: -100px; left: -100px;
  animation: orbFloat 8s ease-in-out infinite;
}
.orb2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--neon-pink), transparent 70%);
  bottom: -80px; right: 10%;
  animation: orbFloat 10s ease-in-out infinite reverse;
}
.orb3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, var(--neon-blue), transparent 70%);
  top: 40%; left: 40%;
  animation: orbFloat 12s ease-in-out infinite 2s;
}
@keyframes orbFloat {
  0%, 100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(30px,-20px) scale(1.05); }
  66% { transform: translate(-20px,30px) scale(0.95); }
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 600px;
  flex: 1;
  animation: fadeUp 0.8s ease both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(204,255,0,0.08);
  border: 1px solid rgba(204,255,0,0.2);
  border-radius: 24px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 600;
  color: var(--neon-green);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--neon-green);
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}
.hero-title {
  font-family: 'Clash Display', sans-serif;
  font-size: clamp(52px, 7vw, 88px);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.title-line { display: block; }
.hero-sub {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-actions {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--neon-green), #A8D400);
  color: #0A0A0F;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 28px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 0 30px rgba(204,255,0,0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 50px rgba(204,255,0,0.5);
}
.btn-ghost {
  display: inline-flex; align-items: center;
  background: transparent;
  color: var(--text-primary);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 13px 28px;
  border: 1px solid var(--border);
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
}
.btn-ghost:hover {
  border-color: var(--neon-green);
  color: var(--neon-green);
  background: rgba(204,255,0,0.05);
}
.hero-stats {
  display: flex; align-items: center; gap: 24px;
}
.stat { display: flex; flex-direction: column; gap: 2px; }
.stat-num {
  font-family: 'Clash Display', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--text-primary);
}
.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.stat-divider {
  width: 1px; height: 36px;
  background: var(--border);
}

/* Hero Visual */
.hero-visual {
  position: relative; z-index: 2;
  flex: 1;
  display: flex; justify-content: center; align-items: center;
  animation: fadeUp 0.8s ease 0.2s both;
}
.vinyl-wrap {
  position: relative;
  width: 320px; height: 320px;
}
.vinyl {
  width: 100%; height: 100%;
  border-radius: 50%;
  animation: spin 12s linear infinite paused;
  position: relative;
}
.vinyl.playing { animation-play-state: running; }
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.vinyl-inner {
  width: 100%; height: 100%;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  border: 3px solid rgba(255,255,255,0.1);
  box-shadow:
    0 0 0 8px rgba(255,255,255,0.03),
    0 0 0 16px rgba(255,255,255,0.02),
    0 20px 80px rgba(0,0,0,0.8);
}
.vinyl-img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.7) saturate(1.2);
}
.vinyl-hole {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--bg-deep);
  border: 3px solid rgba(255,255,255,0.15);
  z-index: 2;
}
.vinyl-glow {
  position: absolute; inset: -20px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(204,255,0,0.15) 0%, transparent 70%);
  animation: glowPulse 3s ease infinite;
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}
.floating-cards {
  position: absolute;
  width: 100%; height: 100%;
  top: 0; left: 0;
  pointer-events: none;
}
.float-card {
  position: absolute;
  display: flex; align-items: center; gap: 10px;
  background: rgba(17,17,24,0.9);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 10px 14px;
  min-width: 200px;
  pointer-events: auto;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.float-card img {
  width: 40px; height: 40px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}
.fc-title {
  font-size: 12px; font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100px;
}
.fc-artist { font-size: 11px; color: var(--text-muted); }
.fc1 {
  top: 10%; right: -60px;
  animation: floatCard1 4s ease-in-out infinite;
}
.fc2 {
  bottom: 15%; left: -60px;
  animation: floatCard2 5s ease-in-out infinite 1s;
}
@keyframes floatCard1 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes floatCard2 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}
.fc-wave {
  display: flex; align-items: flex-end; gap: 2px;
  height: 20px; margin-left: auto;
}
.fc-wave span {
  display: block;
  width: 3px;
  background: var(--neon-green);
  border-radius: 2px;
  animation: wave 1.2s ease infinite;
}
.fc-wave span:nth-child(1) { height: 8px; animation-delay: 0s; }
.fc-wave span:nth-child(2) { height: 14px; animation-delay: 0.2s; }
.fc-wave span:nth-child(3) { height: 10px; animation-delay: 0.4s; }
.fc-wave span:nth-child(4) { height: 16px; animation-delay: 0.1s; }
@keyframes wave {
  0%, 100% { transform: scaleY(0.5); }
  50% { transform: scaleY(1); }
}

/* ══════════════════════════════════════════════════════════
   FILTER BAR
══════════════════════════════════════════════════════════ */
.filter-bar {
  position: sticky;
  top: 68px; z-index: 90;
  background: rgba(10,10,15,0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 12px 24px;
}
.filter-inner {
  max-width: 1400px; margin: 0 auto;
  display: flex; align-items: center;
  gap: 24px; flex-wrap: wrap;
}
.filter-tabs {
  display: flex; gap: 6px;
}
.filter-tab {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-secondary);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  padding: 7px 18px;
  border-radius: 24px;
  cursor: pointer;
  transition: var(--transition);
}
.filter-tab:hover {
  border-color: var(--neon-green);
  color: var(--neon-green);
}
.filter-tab.active {
  background: var(--neon-green);
  border-color: var(--neon-green);
  color: #0A0A0F;
}
.mood-filters {
  display: flex; gap: 6px; flex-wrap: wrap;
  margin-left: auto;
}
.mood-btn {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 20px;
  cursor: pointer;
  transition: var(--transition);
}
.mood-btn:hover { border-color: var(--neon-pink); color: var(--neon-pink); }
.mood-btn.active {
  background: rgba(255,60,172,0.15);
  border-color: var(--neon-pink);
  color: var(--neon-pink);
}

/* ══════════════════════════════════════════════════════════
   SECTIONS
══════════════════════════════════════════════════════════ */
.section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 72px 24px 40px;
}
.section.hidden { display: none; }
.section-header {
  margin-bottom: 40px;
}
.section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.section-title {
  font-family: 'Clash Display', sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 12px;
}
.section-desc {
  font-size: 15px;
  color: var(--text-secondary);
  max-width: 500px;
}

/* ══════════════════════════════════════════════════════════
   FEATURED GRID
══════════════════════════════════════════════════════════ */
.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.featured-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1/1.1;
  transition: var(--transition);
  group: true;
}
.featured-card:hover { transform: translateY(-6px); }
.featured-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.featured-card:hover img { transform: scale(1.08); }
.featured-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
  display: flex; flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
}
.featured-card-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: rgba(204,255,0,0.15);
  border: 1px solid rgba(204,255,0,0.3);
  color: var(--neon-green);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
}
.featured-card-title {
  font-family: 'Clash Display', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}
.featured-card-artist {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 14px;
}
.featured-card-play {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--neon-green);
  border: none;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  color: #0A0A0F;
  transform: translateY(10px);
  opacity: 0;
}
.featured-card:hover .featured-card-play {
  transform: translateY(0);
  opacity: 1;
}
.featured-card-play:hover {
  transform: scale(1.1) !important;
  box-shadow: 0 0 20px rgba(204,255,0,0.5);
}

/* ══════════════════════════════════════════════════════════
   SONGS GRID
══════════════════════════════════════════════════════════ */
.songs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}
.song-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.song-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(204,255,0,0.03), rgba(255,60,172,0.03));
  opacity: 0;
  transition: var(--transition);
}
.song-card:hover {
  border-color: rgba(204,255,0,0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4), 0 0 0 1px rgba(204,255,0,0.1);
}
.song-card:hover::before { opacity: 1; }
.song-card.active {
  border-color: var(--neon-green);
  background: rgba(204,255,0,0.05);
}
.song-card.active::before { opacity: 1; }
.song-cover-wrap {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 1/1;
}
.song-cover {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.song-card:hover .song-cover { transform: scale(1.06); }
.song-play-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.song-card:hover .song-play-overlay { opacity: 1; }
.song-play-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--neon-green);
  border: none;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: #0A0A0F;
  transition: var(--transition);
}
.song-play-btn:hover { transform: scale(1.1); box-shadow: 0 0 20px rgba(204,255,0,0.5); }
.song-playing-indicator {
  position: absolute;
  bottom: 8px; right: 8px;
  display: flex; align-items: flex-end; gap: 2px;
  height: 16px;
  opacity: 0;
}
.song-card.active .song-playing-indicator { opacity: 1; }
.song-playing-indicator span {
  display: block;
  width: 3px;
  background: var(--neon-green);
  border-radius: 2px;
  animation: wave 1s ease infinite;
}
.song-playing-indicator span:nth-child(1) { height: 6px; animation-delay: 0s; }
.song-playing-indicator span:nth-child(2) { height: 12px; animation-delay: 0.15s; }
.song-playing-indicator span:nth-child(3) { height: 8px; animation-delay: 0.3s; }
.song-info { flex: 1; min-width: 0; }
.song-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 4px;
}
.song-artist {
  font-size: 12px;
  color: var(--text-secondary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 6px;
}
.song-meta {
  display: flex; align-items: center;
  justify-content: space-between;
}
.song-genre {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: var(--bg-glass);
  border: 1px solid var(--border);
  padding: 3px 8px;
  border-radius: 20px;
}
.song-duration {
  font-size: 11px;
  color: var(--text-muted);
  font-variant-numeric: tabular-nums;
}
.song-year {
  font-size: 11px;
  color: var(--text-muted);
}

/* ══════════════════════════════════════════════════════════
   SEARCH SECTION
══════════════════════════════════════════════════════════ */
.search-section { display: none; }
.search-section.visible { display: block; }

/* ══════════════════════════════════════════════════════════
   NO RESULTS
══════════════════════════════════════════════════════════ */
.no-results {
  text-align: center;
  padding: 80px 24px;
  max-width: 400px;
  margin: 0 auto;
}
.no-results.hidden { display: none; }
.no-results-icon { font-size: 64px; margin-bottom: 16px; }
.no-results h3 {
  font-family: 'Clash Display', sans-serif;
  font-size: 24px;
  margin-bottom: 8px;
}
.no-results p { color: var(--text-secondary); }

/* ══════════════════════════════════════════════════════════
   MUSIC PLAYER
══════════════════════════════════════════════════════════ */
.player {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(14,14,20,0.97);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border-top: 1px solid var(--border);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.player.visible { transform: translateY(0); }
.player-progress-wrap {
  padding: 0 0 0 0;
  cursor: pointer;
}
.player-progress-bar {
  height: 3px;
  background: rgba(255,255,255,0.1);
  position: relative;
  transition: height 0.2s ease;
}
.player-progress-bar:hover { height: 5px; }
.player-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--neon-green), var(--neon-pink));
  width: 0%;
  transition: width 0.1s linear;
  border-radius: 0 2px 2px 0;
}
.player-progress-thumb {
  position: absolute;
  top: 50%; right: 0;
  transform: translate(50%, -50%);
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--neon-green);
  opacity: 0;
  transition: opacity 0.2s ease;
  box-shadow: 0 0 8px rgba(204,255,0,0.6);
}
.player-progress-bar:hover .player-progress-thumb { opacity: 1; }
.player-inner {
  display: flex; align-items: center;
  padding: 0 24px;
  height: var(--player-h);
  gap: 24px;
  max-width: 1400px;
  margin: 0 auto;
}
.player-info {
  display: flex; align-items: center; gap: 14px;
  flex: 1; min-width: 0;
}
.player-cover-wrap {
  position: relative;
  width: 52px; height: 52px;
  flex-shrink: 0;
}
.player-cover {
  width: 100%; height: 100%;
  border-radius: 10px;
  object-fit: cover;
  border: 1px solid var(--border);
}
.player-cover-spin {
  position: absolute; inset: -3px;
  border-radius: 12px;
  border: 2px solid transparent;
  border-top-color: var(--neon-green);
  border-right-color: var(--neon-pink);
  animation: coverSpin 3s linear infinite paused;
}
.player.playing .player-cover-spin { animation-play-state: running; }
@keyframes coverSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.player-meta { min-width: 0; }
.player-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 200px;
}
.player-artist {
  font-size: 12px;
  color: var(--text-secondary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 200px;
}
.player-like {
  background: none; border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: var(--transition);
  flex-shrink: 0;
}
.player-like:hover { color: var(--neon-pink); }
.player-like.liked { color: var(--neon-pink); }
.player-like.liked svg { fill: var(--neon-pink); }

/* Player Controls */
.player-controls {
  display: flex; align-items: center; gap: 8px;
  flex-shrink: 0;
}
.ctrl-btn {
  background: none; border: none;
  color: var(--text-secondary);
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.ctrl-btn:hover { color: var(--text-primary); background: var(--bg-glass); }
.ctrl-btn.active { color: var(--neon-green); }
.play-btn {
  width: 48px; height: 48px;
  border-radius: 50% !important;
  background: linear-gradient(135deg, var(--neon-green), #A8D400) !important;
  color: #0A0A0F !important;
  box-shadow: 0 0 20px rgba(204,255,0,0.3);
}
.play-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 0 30px rgba(204,255,0,0.5) !important;
  background: linear-gradient(135deg, var(--neon-green), #A8D400) !important;
}

/* Player Right */
.player-right {
  display: flex; align-items: center; gap: 16px;
  flex-shrink: 0;
}
.player-time {
  font-size: 12px;
  color: var(--text-muted);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.volume-wrap {
  display: flex; align-items: center; gap: 8px;
}
.vol-btn { padding: 6px; }
.volume-slider {
  -webkit-appearance: none;
  width: 80px; height: 4px;
  border-radius: 2px;
  background: rgba(255,255,255,0.15);
  outline: none;
  cursor: pointer;
}
.volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--neon-green);
  cursor: pointer;
  box-shadow: 0 0 6px rgba(204,255,0,0.4);
}
.volume-slider::-moz-range-thumb {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--neon-green);
  cursor: pointer;
  border: none;
}

/* ══════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════ */
.footer {
  border-top: 1px solid var(--border);
  padding: 40px 24px;
  margin-top: 40px;
}
.footer-inner {
  max-width: 1400px; margin: 0 auto;
  display: flex; flex-direction: column;
  align-items: center; gap: 16px;
  text-align: center;
}
.footer-brand .logo-text { font-size: 28px; }
.footer-brand p {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 6px;
}
.footer-links {
  display: flex; gap: 24px; flex-wrap: wrap;
  justify-content: center;
}
.footer-links span {
  font-size: 13px;
  color: var(--text-secondary);
}
.footer-copy {
  font-size: 12px;
  color: var(--text-muted);
}

/* ══════════════════════════════════════════════════════════
   ANIMATIONS — Stagger on load
══════════════════════════════════════════════════════════ */
.song-card, .featured-card {
  animation: cardIn 0.5s ease both;
}
@keyframes cardIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero { flex-direction: column; text-align: center; padding-top: 120px; }
  .hero-content { max-width: 100%; }
  .hero-sub { margin: 0 auto 36px; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { margin-top: 40px; }
  .fc1 { right: -20px; }
  .fc2 { left: -20px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-menu-btn { display: flex; }
  .search-input { width: 160px; }
  .search-input:focus { width: 180px; }
  .vinyl-wrap { width: 240px; height: 240px; }
  .float-card { min-width: 160px; }
  .fc-title { max-width: 70px; }
  .filter-inner { flex-direction: column; align-items: flex-start; }
  .mood-filters { margin-left: 0; }
  .player-inner { gap: 12px; padding: 0 16px; }
  .player-right { display: none; }
  .player-title, .player-artist { max-width: 120px; }
  .songs-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
  .featured-grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
}

@media (max-width: 480px) {
  .hero-title { font-size: 42px; }
  .vinyl-wrap { width: 200px; height: 200px; }
  .fc1, .fc2 { display: none; }
  .songs-grid { grid-template-columns: repeat(2, 1fr); }
  .featured-grid { grid-template-columns: 1fr 1fr; }
  .player-controls { gap: 4px; }
  .ctrl-btn { padding: 6px; }
}

/* ══════════════════════════════════════════════════════════
   UTILITY
══════════════════════════════════════════════════════════ */
.hidden { display: none !important; }
.visible { display: block !important; }