/* music.css */
:root {
  --accent:        #00e5c0;
  --muted:         #7a8498;
  --text:          #e0e0e0;
  --topbar-bg:     rgba(3,6,8,0.7);
  --topbar-border: rgba(255,255,255,0.05);
  --topbar-hover:  rgba(255,255,255,0.05);
}

:root { --video-opacity: 0.3; }
body { font-family: 'Space Grotesk', sans-serif; background: #030608; color: #e0e0e0; }

.bg-video { position: fixed; inset: 0; z-index: 0; width: 100%; height: 100%; object-fit: cover; opacity: var(--video-opacity); }
.bg-fade  { position: fixed; bottom: 0; left: 0; right: 0; height: 60vh; z-index: 0; background: linear-gradient(to top, #030608 20%, transparent); pointer-events: none; }

/* Equaliser bars */
.eq-bars { display: flex; align-items: flex-end; gap: 3px; height: 24px; margin-bottom: 2rem; }
.eq-bar  { width: 4px; background: #00e5c0; border-radius: 2px; animation: eqBounce 0.8s ease-in-out infinite alternate; }
.eq-bar:nth-child(1) { height: 8px;  animation-delay: 0s; }
.eq-bar:nth-child(2) { height: 18px; animation-delay: 0.1s; }
.eq-bar:nth-child(3) { height: 12px; animation-delay: 0.2s; }
.eq-bar:nth-child(4) { height: 22px; animation-delay: 0.05s; }
.eq-bar:nth-child(5) { height: 10px; animation-delay: 0.15s; }
.eq-bar:nth-child(6) { height: 16px; animation-delay: 0.25s; }
.eq-bar:nth-child(7) { height: 6px;  animation-delay: 0.3s; }
@keyframes eqBounce { from { transform: scaleY(0.3); } to { transform: scaleY(1); } }

/* Stat panels */
.stat-panel       { background: rgba(0,229,192,0.02); border: 1px solid rgba(0,229,192,0.08); border-radius: 10px; padding: 1.25rem; }
.stat-panel-title { font-family: 'Space Mono', monospace; font-size: 0.65rem; color: #00e5c0; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 1rem; padding-bottom: 0.5rem; border-bottom: 1px solid rgba(0,229,192,0.1); }
.stat-row         { display: grid; grid-template-columns: 1.5rem 1fr auto; align-items: center; gap: 0.6rem; padding: 0.5rem 0; border-bottom: 1px solid rgba(255,255,255,0.03); }
.stat-row:last-child { border-bottom: none; }
.stat-num         { font-family: 'Space Mono', monospace; font-size: 0.85rem; font-weight: 700; color: #00e5c0; text-align: center; }
.stat-name        { font-size: 0.88rem; font-weight: 600; color: #e0e0e0; }
.stat-sub         { font-size: 0.72rem; color: #7a8498; margin-top: 0.1rem; }
.stat-link        { font-family: 'Space Mono', monospace; font-size: 0.6rem; color: #00e5c0; text-decoration: none; opacity: 0.6; transition: opacity 0.15s; }
.stat-row:hover .stat-link { opacity: 1; }

@media (max-width: 700px) { .stats-grid { grid-template-columns: 1fr !important; } }
