/* ══════════════════════════════════════════════
   BARRZFLOW.COM — Main Stylesheet
   Color Palette:
   --cyan:    #00e5ff
   --magenta: #ff00d4
   --purple:  #7b2fbe
   --dark:    #050a14
   --dark2:   #0a1628
   --glass:   rgba(10, 22, 40, 0.7)
   ══════════════════════════════════════════════ */

/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cyan: #00e5ff;
  --magenta: #ff00d4;
  --purple: #7b2fbe;
  --dark: #050a14;
  --dark2: #0a1628;
  --dark3: #0f1e35;
  --glass: rgba(10, 22, 40, 0.75);
  --glass2: rgba(0, 229, 255, 0.05);
  --text: #e8f4ff;
  --text-muted: rgba(232, 244, 255, 0.6);
  --shadow-cyan: 0 0 30px rgba(0, 229, 255, 0.35);
  --shadow-magenta: 0 0 30px rgba(255, 0, 212, 0.35);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background:
    radial-gradient(circle at 20% 20%, rgba(0, 229, 255, 0.12), transparent 30%),
    radial-gradient(circle at 80% 25%, rgba(255, 0, 212, 0.12), transparent 32%),
    var(--dark);
  color: var(--text);
  overflow-x: hidden;
  min-height: 100vh;
}

/* ─── PARTICLE CANVAS ─── */
#particles-canvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

.accent { color: var(--cyan); }

/* ─── NAV ─── */
/* Nav is ALWAYS visible on land so visitors see it immediately.
   .nav-solid is toggled on scroll to add the frosted background. */
#main-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: linear-gradient(to bottom, rgba(5, 10, 20, 0.65), rgba(5, 10, 20, 0));
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 0;
  opacity: 1;
  pointer-events: auto;
  transition: background var(--transition), border-color var(--transition), backdrop-filter var(--transition);
}

#main-nav.nav-solid {
  background: rgba(5, 10, 20, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 229, 255, 0.1);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--text);
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  flex-shrink: 0;
}
.nav-logo img { width: 38px; height: 38px; object-fit: contain; filter: drop-shadow(0 0 8px var(--cyan)); }

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin-left: auto;
}
.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-family: 'Orbitron', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--cyan); text-shadow: 0 0 10px var(--cyan); }

.btn-stream {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1.2rem;
  border: 1.5px solid var(--cyan);
  border-radius: 50px;
  text-decoration: none;
  color: var(--cyan);
  font-family: 'Orbitron', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-stream:hover {
  background: var(--cyan);
  color: var(--dark);
  box-shadow: var(--shadow-cyan);
}
.btn-stream-icon { font-size: 0.8rem; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cyan);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.nav-mobile-menu {
  display: none;
  flex-direction: column;
  padding: 1rem 1.5rem 1.5rem;
  gap: 1rem;
  background: rgba(5, 10, 20, 0.97);
  border-top: 1px solid rgba(0, 229, 255, 0.1);
}
.nav-mobile-menu.open { display: flex; }
.nav-mobile-menu a {
  text-decoration: none;
  color: var(--text-muted);
  font-family: 'Orbitron', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(0, 229, 255, 0.06);
}
.btn-stream-mobile {
  margin-top: 0.5rem;
  justify-content: center;
  border-color: var(--cyan) !important;
  color: var(--cyan) !important;
}

/* ─── HERO ─── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  overflow: hidden;
  z-index: 1;
  background:
    radial-gradient(120% 80% at 50% 6%, rgba(123, 47, 190, 0.18) 0%, transparent 55%),
    radial-gradient(90% 60% at 12% 42%, rgba(0, 229, 255, 0.10) 0%, transparent 60%),
    radial-gradient(90% 60% at 88% 46%, rgba(255, 0, 212, 0.10) 0%, transparent 60%),
    linear-gradient(180deg, var(--dark) 0%, var(--dark2) 58%, #030610 100%);
}

/* Reflective wet-neon "stage floor" that echoes the poster */
#hero::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 32%;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 229, 255, 0.05) 50%, rgba(255, 0, 212, 0.07) 100%);
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 0;
}

.hero-bg-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}
.hero-bg-glow.left {
  left: -200px;
  top: 10%;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.18) 0%, transparent 70%);
  animation: pulseGlow 4s ease-in-out infinite alternate;
}
.hero-bg-glow.right {
  right: -200px;
  top: 20%;
  background: radial-gradient(circle, rgba(255, 0, 212, 0.18) 0%, transparent 70%);
  animation: pulseGlow 4s ease-in-out 2s infinite alternate;
}

@keyframes pulseGlow {
  from { opacity: 0.7; transform: scale(1); }
  to { opacity: 1; transform: scale(1.1); }
}

.hero-waveform {
  position: absolute;
  top: 38%;
  transform: translateY(-50%);
  width: 50%;
  opacity: 0.55;
  pointer-events: none;
  z-index: 0;
}
.hero-waveform canvas { width: 100%; height: auto; }
.hero-waveform-left { left: 0; mask-image: linear-gradient(90deg, transparent 0%, #000 35%, #000 100%); -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 35%, #000 100%); }
.hero-waveform-right { right: 0; transform: translateY(-50%) scaleX(-1); mask-image: linear-gradient(90deg, transparent 0%, #000 35%, #000 100%); -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 35%, #000 100%); }

.accent-cyan { color: var(--cyan); }
.accent-magenta { color: var(--magenta); text-shadow: 0 0 20px rgba(255, 0, 212, 0.4); }

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
  max-width: 900px;
  width: 100%;
  transform-style: preserve-3d;
  perspective: 1200px;
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.layer {
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  transform-style: preserve-3d;
  backface-visibility: hidden;
}

.hero-logo-wrap {
  position: relative;
  isolation: isolate;
}
/* radiating neon rings behind the shield (poster halo) */
.hero-logo-wrap::before,
.hero-logo-wrap::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 46%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: -1;
}
.hero-logo-wrap::before {
  width: 340px;
  height: 340px;
  border: 2px solid transparent;
  background: conic-gradient(from 180deg, rgba(0,229,255,0.55), rgba(123,47,190,0.15), rgba(255,0,212,0.55), rgba(123,47,190,0.15), rgba(0,229,255,0.55)) border-box;
  -webkit-mask: linear-gradient(#000 0 0) padding-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) padding-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  opacity: 0.7;
  filter: blur(0.4px) drop-shadow(0 0 18px rgba(0,229,255,0.35));
  animation: ringSpin 18s linear infinite;
}
.hero-logo-wrap::after {
  width: 250px;
  height: 250px;
  border: 1px solid rgba(0, 229, 255, 0.25);
  box-shadow: 0 0 40px rgba(255, 0, 212, 0.18) inset, 0 0 60px rgba(0, 229, 255, 0.15);
  animation: ringSpin 26s linear infinite reverse;
}
@keyframes ringSpin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-logo-wrap::before, .hero-logo-wrap::after { animation: none; }
}
.hero-logo {
  width: 220px;
  height: 220px;
  object-fit: contain;
  filter: drop-shadow(0 0 40px rgba(0, 229, 255, 0.5)) drop-shadow(0 0 80px rgba(255, 0, 212, 0.3));
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), filter 0.3s ease;
  animation: floatLogo 4s ease-in-out infinite;
}
@keyframes floatLogo {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.hero-title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(1.8rem, 5vw, 3.2rem);
  font-weight: 900;
  letter-spacing: 0.05em;
  line-height: 1.2;
  text-shadow: 0 0 40px rgba(0, 229, 255, 0.3);
}

.hero-sub {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(0.7rem, 2vw, 0.9rem);
  font-weight: 400;
  letter-spacing: 0.2em;
  color: var(--text-muted);
}

/* ─── BOOMBOX ─── */
.boombox {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  /* Brushed-metal chrome shell */
  background:
    linear-gradient(180deg, rgba(255,255,255,0.10) 0%, rgba(255,255,255,0) 14%),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.020) 0 1px, transparent 1px 3px),
    linear-gradient(180deg, #2b3345 0%, #171d2b 38%, #0c1220 100%);
  border: 1px solid rgba(150, 180, 210, 0.28);
  border-radius: 30px;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.30),
    inset 0 0 0 1px rgba(0,0,0,0.35),
    inset 0 -18px 40px rgba(0,0,0,0.55),
    0 0 60px rgba(0, 229, 255, 0.16),
    0 0 120px rgba(255, 0, 212, 0.10),
    0 24px 60px rgba(0, 0, 0, 0.55);
  padding: 1.15rem 1.4rem 1.5rem;
  width: 100%;
  max-width: 760px;
  position: relative;
  overflow: hidden;
}
.boombox::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(0,229,255,0.05) 0%, transparent 45%, rgba(255,0,212,0.05) 100%);
  pointer-events: none;
}

/* Top handle + brand pill */
.boom-topbar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}
.boom-handle {
  width: 46%;
  max-width: 300px;
  height: 12px;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.35), rgba(255,255,255,0) 55%),
    linear-gradient(180deg, #3a4356 0%, #1b2130 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.40),
    inset 0 -3px 6px rgba(0,0,0,0.55),
    0 2px 6px rgba(0,0,0,0.45);
}
.boom-brand {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.34em;
  color: var(--cyan);
  text-shadow: 0 0 12px rgba(0, 229, 255, 0.55);
  padding: 0.34rem 1.5rem;
  border-radius: 40px;
  background: linear-gradient(180deg, #10192b 0%, #060b16 100%);
  border: 1px solid rgba(150, 180, 210, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.14),
    inset 0 -4px 10px rgba(0,0,0,0.6),
    0 0 20px rgba(0, 229, 255, 0.12);
}
.boom-brand .accent { color: var(--magenta); text-shadow: 0 0 12px rgba(255, 0, 212, 0.6); }

/* Body row: speaker | screen | speaker */
.boom-body {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  position: relative;
  z-index: 1;
}

.boom-speaker {
  flex-shrink: 0;
  width: 138px;
  height: 138px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.boom-speaker-ring {
  width: 128px;
  height: 128px;
  border-radius: 50%;
  /* Concentric brushed-metal rings around the cone */
  background:
    repeating-radial-gradient(circle at 50% 50%,
      rgba(180,200,220,0.10) 0 2px,
      rgba(0,0,0,0.30) 2px 5px);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow:
    inset 0 0 0 5px rgba(160,185,210,0.25),
    inset 0 0 22px rgba(0,0,0,0.8),
    inset 0 2px 3px rgba(255,255,255,0.25),
    0 0 30px rgba(0, 229, 255, 0.28),
    0 6px 16px rgba(0,0,0,0.5);
  border: 1px solid rgba(160, 185, 210, 0.30);
}
.boom-speaker-right .boom-speaker-ring {
  box-shadow:
    inset 0 0 0 5px rgba(160,185,210,0.25),
    inset 0 0 22px rgba(0,0,0,0.8),
    inset 0 2px 3px rgba(255,255,255,0.25),
    0 0 30px rgba(255, 0, 212, 0.28),
    0 6px 16px rgba(0,0,0,0.5);
}
/* Inner speaker cone */
.boom-speaker-cone {
  position: absolute;
  width: 70%;
  height: 70%;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 42%, #14203a 0%, #060c17 70%, #02040a 100%);
  box-shadow:
    inset 0 0 26px rgba(0, 229, 255, 0.35),
    inset 0 6px 12px rgba(255,255,255,0.12),
    inset 0 -8px 16px rgba(0,0,0,0.7);
  border: 1px solid rgba(0, 229, 255, 0.25);
}
.boom-speaker-right .boom-speaker-cone {
  box-shadow:
    inset 0 0 26px rgba(255, 0, 212, 0.35),
    inset 0 6px 12px rgba(255,255,255,0.12),
    inset 0 -8px 16px rgba(0,0,0,0.7);
  border: 1px solid rgba(255, 0, 212, 0.25);
}
/* Dotted-LED "BF" matrix over the cone */
.boom-speaker-grid {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  font-size: 2.3rem;
  color: var(--cyan);
  text-shadow: 0 0 14px var(--cyan), 0 0 28px var(--cyan);
  letter-spacing: -0.04em;
  pointer-events: none;
  z-index: 2;
  /* dot-matrix perforation */
  -webkit-mask-image: radial-gradient(circle at 50% 50%, #000 45%, transparent 46%);
  -webkit-mask-size: 5px 5px;
  mask-image: radial-gradient(circle at 50% 50%, #000 45%, transparent 46%);
  mask-size: 5px 5px;
  transition: transform 0.1s ease-out, text-shadow 0.1s;
}
.boom-speaker-right .boom-speaker-grid {
  color: var(--magenta);
  text-shadow: 0 0 14px var(--magenta), 0 0 28px var(--magenta);
}
.boom-speaker-grid.pulse { animation: speakerPulse 0.15s ease-out; }
@keyframes speakerPulse {
  0%   { transform: scale(1);    text-shadow: 0 0 14px currentColor, 0 0 28px currentColor; }
  50%  { transform: scale(1.16); text-shadow: 0 0 24px currentColor, 0 0 48px currentColor; }
  100% { transform: scale(1);    text-shadow: 0 0 14px currentColor, 0 0 28px currentColor; }
}
/* Tweeter dot */
.boom-speaker-dot {
  position: absolute;
  bottom: 12%;
  left: 18%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  z-index: 3;
  background: radial-gradient(circle at 35% 35%, #eaffff, var(--cyan));
  box-shadow: 0 0 10px var(--cyan), inset 0 -2px 3px rgba(0,0,0,0.5);
}
.boom-speaker-right .boom-speaker-dot {
  background: radial-gradient(circle at 35% 35%, #ffeafc, var(--magenta));
  box-shadow: 0 0 10px var(--magenta), inset 0 -2px 3px rgba(0,0,0,0.5);
}

.boom-center {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding: 0 1.1rem;
}

/* Glossy screen */
.boom-display {
  display: flex;
  align-items: center;
  gap: 1rem;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06) 0%, transparent 22%),
    linear-gradient(180deg, #05070d 0%, #0a1120 100%);
  border: 1px solid rgba(0, 229, 255, 0.18);
  border-radius: 16px;
  padding: 0.9rem 1rem;
  box-shadow:
    inset 0 0 0 1px rgba(0,0,0,0.6),
    inset 0 2px 14px rgba(0,0,0,0.7),
    0 0 20px rgba(0, 229, 255, 0.08);
}

.boom-track-art {
  width: 64px;
  height: 64px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid rgba(0, 229, 255, 0.35);
  box-shadow: 0 0 14px rgba(0, 229, 255, 0.25), inset 0 0 0 1px rgba(0,0,0,0.5);
}
.boom-track-art img { width: 100%; height: 100%; object-fit: cover; display: block; }

.boom-track-info { flex: 1; min-width: 0; }
.boom-track-name {
  font-family: 'Orbitron', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-shadow: 0 0 14px rgba(255, 255, 255, 0.35);
  letter-spacing: 0.01em;
}
.boom-track-artist {
  font-size: 0.72rem;
  color: var(--cyan);
  margin-top: 3px;
  text-shadow: 0 0 10px rgba(0, 229, 255, 0.45);
}
.boom-waveform-mini { margin-top: 6px; opacity: 0.9; }
#mini-wave-canvas { display: block; }

/* Vertical volume with speaker icon + LED track */
.boom-volume {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-shrink: 0;
  align-self: stretch;
}
.boom-vol-icon { color: var(--cyan); filter: drop-shadow(0 0 6px rgba(0,229,255,0.6)); display: flex; }
#volume-slider {
  appearance: none;
  -webkit-appearance: none;
  writing-mode: vertical-lr;
  direction: rtl;
  width: 6px;
  height: 62px;
  border-radius: 6px;
  background:
    repeating-linear-gradient(0deg, rgba(0,229,255,0.5) 0 2px, transparent 2px 5px),
    rgba(0, 229, 255, 0.12);
  outline: none;
  cursor: pointer;
}
#volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #eaffff, var(--cyan));
  box-shadow: 0 0 10px var(--cyan);
  cursor: pointer;
}
#volume-slider::-moz-range-thumb {
  width: 16px; height: 16px; border: none; border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #eaffff, var(--cyan));
  box-shadow: 0 0 10px var(--cyan); cursor: pointer;
}

.boom-progress-wrap {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.boom-time {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.68rem;
  color: var(--text-muted);
  flex-shrink: 0;
  min-width: 3ch;
}
.boom-progress {
  flex: 1;
  height: 5px;
  background: rgba(255, 255, 255, 0.10);
  border-radius: 6px;
  cursor: pointer;
  position: relative;
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.6);
}
.boom-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--cyan), var(--magenta));
  border-radius: 6px;
  box-shadow: 0 0 12px rgba(255, 0, 212, 0.5);
  transition: width 0.1s linear;
}
.boom-progress-thumb {
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translate(-50%, -50%);
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #fff, #d9f7ff);
  box-shadow: 0 0 12px var(--cyan), 0 1px 3px rgba(0,0,0,0.5);
  transition: left 0.1s linear;
  pointer-events: none;
}

.boom-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.15rem;
}
.boom-btn {
  background: none;
  border: none;
  color: rgba(232, 244, 255, 0.75);
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  border-radius: 50%;
  padding: 0.3rem;
}
.boom-btn:hover { color: var(--magenta); text-shadow: 0 0 12px var(--magenta); transform: scale(1.12); }
.boom-btn.active { color: var(--cyan); text-shadow: 0 0 10px var(--cyan); }
.boom-btn-sm { font-size: 0.95rem; }
#btn-continuous { font-size: 1.2rem; font-weight: 700; }
.boom-btn-md { font-size: 1.35rem; color: var(--magenta); text-shadow: 0 0 10px rgba(255,0,212,0.5); }
.boom-btn-play {
  width: 58px;
  height: 58px;
  border-radius: 50% !important;
  background: radial-gradient(circle at 50% 40%, rgba(255,0,212,0.15), transparent 70%) !important;
  color: var(--magenta) !important;
  font-size: 1.35rem;
  border: 2px solid rgba(255, 0, 212, 0.7) !important;
  box-shadow: 0 0 22px rgba(255, 0, 212, 0.5), inset 0 0 18px rgba(255,0,212,0.25);
  text-shadow: 0 0 14px rgba(255, 0, 212, 0.8);
  transition: all var(--transition);
}
.boom-btn-play:hover {
  transform: scale(1.08);
  box-shadow: 0 0 40px rgba(255, 0, 212, 0.8), inset 0 0 22px rgba(255,0,212,0.35);
}
.boom-btn-play.playing {
  animation: playPulse 1.6s ease-in-out infinite;
}
@keyframes playPulse {
  0%, 100% { box-shadow: 0 0 22px rgba(255, 0, 212, 0.5), inset 0 0 18px rgba(255,0,212,0.25); }
  50%      { box-shadow: 0 0 44px rgba(255, 0, 212, 0.85), 0 0 66px rgba(255, 0, 212, 0.35), inset 0 0 22px rgba(255,0,212,0.4); }
}

/* ─── CTA BUTTONS ─── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.75rem 1.8rem;
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  border: none;
  border-radius: 50px;
  color: white;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition);
  box-shadow: 0 4px 20px rgba(0, 229, 255, 0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 229, 255, 0.5);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.75rem 1.8rem;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  color: var(--text);
  font-family: 'Orbitron', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition);
}
.btn-ghost:hover { border-color: var(--cyan); color: var(--cyan); }

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* ─── FEATURES ─── */
.features {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  padding: 2rem 1.5rem 4rem;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.feature-card {
  flex: 1;
  min-width: 220px;
  max-width: 320px;
  background: var(--glass);
  border: 1px solid rgba(0, 229, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all var(--transition);
  backdrop-filter: blur(12px);
}
.feature-card:hover {
  border-color: var(--cyan);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 229, 255, 0.15);
}
.feature-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.feature-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--cyan);
  margin-bottom: 0.5rem;
}
.feature-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }

/* ─── LATEST RELEASE ─── */
.latest-release {
  padding: 5rem 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.latest-label {
  text-align: center;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: var(--cyan);
  margin-bottom: 1.5rem;
}

.latest-card {
  background: rgba(5, 10, 20, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  display: flex;
  gap: 3rem;
  align-items: center;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 
    0 20px 50px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 0 40px rgba(0, 229, 255, 0.05);
  flex-wrap: wrap;
  transition: box-shadow var(--transition), border-color var(--transition);
}
.latest-card:hover {
  border-color: rgba(0, 229, 255, 0.25);
  box-shadow: 
    0 20px 50px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.15),
    0 0 50px rgba(0, 229, 255, 0.1);
}

.btn-arrow {
  display: inline-block;
  margin-left: 0.4rem;
  font-size: 1.1rem;
  font-weight: 300;
  transition: transform var(--transition);
}
.btn-primary:hover .btn-arrow {
  transform: translateX(3px);
}

.latest-art {
  width: 120px;
  height: 120px;
  border-radius: var(--radius);
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid rgba(0, 229, 255, 0.2);
  box-shadow: 0 0 30px rgba(0, 229, 255, 0.2);
}
.latest-art img { width: 100%; height: 100%; object-fit: cover; }

.latest-info { flex: 1; min-width: 200px; }
.latest-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.latest-artist { color: var(--cyan); font-size: 0.85rem; margin-bottom: 0.75rem; }
.latest-desc { color: var(--text-muted); font-size: 0.85rem; line-height: 1.6; margin-bottom: 1rem; }

.latest-features {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  flex: 2;
}
.lf-item { flex: 1; min-width: 120px; text-align: center; }
.lf-icon {
  margin-bottom: 0.75rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.lf-svg {
  width: 32px;
  height: 32px;
  color: var(--cyan);
  filter: drop-shadow(0 0 8px rgba(0, 229, 255, 0.4));
  transition: transform var(--transition), filter var(--transition);
}
.lf-item:nth-child(2) .lf-svg {
  color: var(--magenta);
  filter: drop-shadow(0 0 8px rgba(255, 0, 212, 0.4));
}
.lf-item:nth-child(3) .lf-svg {
  color: var(--purple);
  filter: drop-shadow(0 0 8px rgba(123, 47, 190, 0.4));
}
.lf-item:hover .lf-svg {
  transform: scale(1.18) translateY(-2px);
  filter: drop-shadow(0 0 15px currentColor);
}
.lf-label {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--cyan);
  margin-bottom: 0.3rem;
}
.lf-desc { font-size: 0.75rem; color: var(--text-muted); line-height: 1.5; }

/* ─── MUSIC LIBRARY ─── */
.music-library {
  padding: 5rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.section-header { text-align: center; margin-bottom: 2rem; }
.section-title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 900;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}
.section-sub { color: var(--text-muted); font-size: 0.9rem; }

.library-controls {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.library-controls input,
.library-controls select {
  background: var(--glass);
  border: 1px solid rgba(0, 229, 255, 0.15);
  border-radius: var(--radius);
  padding: 0.6rem 1rem;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  outline: none;
  transition: border-color var(--transition);
  backdrop-filter: blur(8px);
}
.library-controls input { flex: 1; min-width: 180px; }
.library-controls input::placeholder { color: var(--text-muted); }
.library-controls input:focus,
.library-controls select:focus { border-color: var(--cyan); box-shadow: 0 0 0 2px rgba(0, 229, 255, 0.12); }
.library-controls select { cursor: pointer; appearance: none; padding-right: 1.5rem; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%2300e5ff' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.5rem center; }

.track-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
}

/* ─── COLLAPSIBLE LIBRARY ─── */
.library-panel {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(-6px) scale(0.985);
  pointer-events: none;
  transition: max-height 0.5s cubic-bezier(0.22, 1, 0.36, 1),
              opacity 0.32s ease,
              transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}
.library-panel.open {
  max-height: 9000px;
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.library-collapse-btn {
  display: block;
  margin: 0 0 1.25rem auto;
  background: var(--glass);
  border: 1px solid rgba(0, 229, 255, 0.25);
  color: var(--cyan);
  font-family: 'Orbitron', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 0.45rem 1rem;
  border-radius: 40px;
  cursor: pointer;
  transition: all var(--transition);
  backdrop-filter: blur(8px);
}
.library-collapse-btn:hover {
  border-color: var(--cyan);
  box-shadow: 0 0 16px rgba(0, 229, 255, 0.3);
  color: #fff;
}
/* Ghost "pop it out" prompt shown while collapsed */
.library-hint[hidden] { display: none; }
.library-hint {
  display: block;
  width: 100%;
  padding: 1.4rem 1rem;
  background: linear-gradient(180deg, rgba(0,229,255,0.04), rgba(255,0,212,0.04));
  border: 1.5px dashed rgba(0, 229, 255, 0.30);
  border-radius: var(--radius-lg);
  color: var(--text-muted);
  font-family: 'Orbitron', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
}
.library-hint:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  box-shadow: 0 0 24px rgba(0, 229, 255, 0.12);
  background: linear-gradient(180deg, rgba(0,229,255,0.07), rgba(255,0,212,0.07));
}
.library-hint-chevron {
  display: inline-block;
  color: var(--cyan);
  margin-right: 0.4rem;
  animation: hintBob 1.8s ease-in-out infinite;
}
@keyframes hintBob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(3px); }
}
@media (prefers-reduced-motion: reduce) {
  .library-panel { transition: opacity 0.2s ease; }
  .library-hint-chevron { animation: none; }
}

.track-card {
  background: var(--glass);
  border: 1px solid rgba(0, 229, 255, 0.08);
  border-radius: var(--radius);
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  cursor: pointer;
  transition: all var(--transition);
  backdrop-filter: blur(8px);
  position: relative;
  overflow: hidden;
}
.track-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.05) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--transition);
}
.track-card:hover { border-color: rgba(0, 229, 255, 0.3); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0, 229, 255, 0.12); }
.track-card:hover::before { opacity: 1; }
.track-card.active { border-color: var(--cyan); box-shadow: 0 0 20px rgba(0, 229, 255, 0.25); }
.track-card.active::before { opacity: 1; }

.track-num {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.65rem;
  color: var(--text-muted);
  min-width: 1.5rem;
  text-align: center;
  flex-shrink: 0;
}
.track-card.active .track-num { color: var(--cyan); }

.track-thumb {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--dark3), #1a3050);
  border: 1px solid rgba(0, 229, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
  overflow: hidden;
}
.track-card.active .track-thumb { border-color: var(--cyan); box-shadow: 0 0 12px rgba(0, 229, 255, 0.3); }

.track-info { flex: 1; min-width: 0; }
.track-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 2px;
}
.track-card.active .track-title { color: var(--cyan); }
.track-meta { font-size: 0.65rem; color: var(--text-muted); }

.track-play-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0, 229, 255, 0.1);
  border: 1px solid rgba(0, 229, 255, 0.2);
  color: var(--cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  flex-shrink: 0;
  transition: all var(--transition);
}
.track-card:hover .track-play-btn,
.track-card.active .track-play-btn {
  background: var(--cyan);
  color: var(--dark);
  box-shadow: 0 0 15px rgba(0, 229, 255, 0.5);
}

.track-add-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: transparent;
  border: 1.5px solid rgba(0, 229, 255, 0.35);
  color: var(--cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  flex-shrink: 0;
  cursor: pointer;
  transition: all var(--transition);
}
.track-add-btn:hover {
  border-color: var(--cyan);
  box-shadow: 0 0 12px rgba(0, 229, 255, 0.4);
  transform: scale(1.12);
}
.track-add-btn.added {
  background: linear-gradient(135deg, var(--cyan), var(--magenta));
  border-color: transparent;
  color: #fff;
  box-shadow: 0 0 12px rgba(255, 0, 212, 0.45);
}

.track-eq {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  height: 18px;
  flex-shrink: 0;
}
.track-eq span {
  display: block;
  width: 3px;
  background: var(--cyan);
  border-radius: 1px;
  animation: eqBar 0.6s ease-in-out infinite alternate;
}
.track-eq span:nth-child(2) { animation-delay: 0.15s; }
.track-eq span:nth-child(3) { animation-delay: 0.3s; }
@keyframes eqBar {
  from { height: 4px; }
  to { height: 18px; }
}

/* ─── ABOUT ─── */
.about {
  padding: 5rem 1.5rem;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: linear-gradient(180deg, transparent, rgba(0, 229, 255, 0.03) 50%, transparent);
}
.about-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(123, 47, 190, 0.15) 0%, transparent 70%);
  pointer-events: none;
}
.about-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.about-text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.about-text strong { color: var(--text); }

.about-stats {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 3rem;
}
.about-stat { text-align: center; }
.stat-num {
  display: block;
  font-family: 'Orbitron', sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--cyan);
  text-shadow: 0 0 20px rgba(0, 229, 255, 0.5);
  margin-bottom: 0.3rem;
}
.stat-label {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--text-muted);
}

/* ─── CONTACT ─── */
.contact {
  padding: 5rem 1.5rem;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.contact-form {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: left;
}
.form-row { display: flex; gap: 1rem; flex-wrap: wrap; }
.form-row input { flex: 1; min-width: 180px; }

.contact-form input,
.contact-form textarea {
  background: var(--glass);
  border: 1px solid rgba(0, 229, 255, 0.15);
  border-radius: var(--radius);
  padding: 0.8rem 1rem;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  outline: none;
  width: 100%;
  transition: border-color var(--transition);
  resize: vertical;
  backdrop-filter: blur(8px);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--text-muted); }
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--cyan); box-shadow: 0 0 0 2px rgba(0, 229, 255, 0.12); }
.contact-form .btn-primary { align-self: flex-start; }

.contact-socials {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.contact-socials a {
  color: var(--text-muted);
  transition: all var(--transition);
  display: flex;
  align-items: center;
}
.contact-socials a:hover { color: var(--cyan); filter: drop-shadow(0 0 8px var(--cyan)); transform: translateY(-2px); }

/* ─── FOOTER ─── */
.site-footer {
  border-top: 1px solid rgba(0, 229, 255, 0.08);
  padding: 2rem 1.5rem;
  position: relative;
  z-index: 1;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-muted);
  font-size: 0.8rem;
}
.footer-logo img { filter: drop-shadow(0 0 6px var(--cyan)); }
.footer-tagline {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  text-align: right;
}

/* ─── ADMIN TOGGLE ─── */
.admin-toggle-btn {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 200;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(10, 22, 40, 0.9);
  border: 1px solid rgba(0, 229, 255, 0.2);
  color: var(--text-muted);
  font-size: 1.1rem;
  cursor: pointer;
  transition: all var(--transition);
  backdrop-filter: blur(8px);
}
.admin-toggle-btn:hover { border-color: var(--cyan); color: var(--cyan); transform: rotate(90deg); }

/* ─── ADMIN PANEL ─── */
.admin-overlay {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.admin-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.admin-panel {
  background: var(--dark2);
  border: 1px solid rgba(0, 229, 255, 0.2);
  border-radius: var(--radius-lg);
  padding: 2rem;
  width: 100%;
  max-width: 540px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(0, 229, 255, 0.1);
}
.admin-header h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.admin-close {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
  transition: all var(--transition);
}
.admin-close:hover { color: var(--magenta); background: rgba(255, 0, 212, 0.1); }

.admin-section h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--cyan);
  margin-bottom: 1rem;
}
.settings-sub { font-size: 0.75rem; color: var(--text-muted); margin-bottom: 1rem; line-height: 1.55; }
.settings-lock { font-size: 0.8rem; }
.settings-playlist { padding-bottom: 1.25rem; margin-bottom: 1.25rem; border-bottom: 1px solid rgba(0, 229, 255, 0.1); }
.settings-playlist .btn-ghost { font-size: 0.65rem; padding: 0.5rem 1.1rem; }
#settings-playlist-count { color: var(--cyan); font-weight: 700; }

.admin-login {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.admin-login input {
  flex: 1;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(0, 229, 255, 0.15);
  border-radius: var(--radius);
  padding: 0.7rem 1rem;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color var(--transition);
}
.admin-login input:focus { border-color: var(--cyan); }

.admin-error { color: var(--magenta); font-size: 0.8rem; margin-top: 0.5rem; }

#upload-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
#upload-form input[type="text"],
#upload-form input[type="file"] {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(0, 229, 255, 0.15);
  border-radius: var(--radius);
  padding: 0.7rem 1rem;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  outline: none;
  transition: border-color var(--transition);
  width: 100%;
}
#upload-form input:focus { border-color: var(--cyan); }
#upload-form input[type="file"] { cursor: pointer; padding: 0.6rem; }

.upload-progress {
  font-size: 0.8rem;
  color: var(--cyan);
  min-height: 1.2rem;
}

.admin-track-list { display: flex; flex-direction: column; gap: 0.5rem; }
.admin-track-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(0, 229, 255, 0.08);
  border-radius: var(--radius);
  padding: 0.6rem 0.8rem;
}
.admin-track-item span { flex: 1; font-size: 0.8rem; color: var(--text-muted); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.admin-track-del {
  background: none;
  border: none;
  color: var(--magenta);
  cursor: pointer;
  font-size: 0.8rem;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  transition: background var(--transition);
  flex-shrink: 0;
}
.admin-track-del:hover { background: rgba(255, 0, 212, 0.12); }

/* ─── PLAYLIST TABS ─── */
.playlist-tabs {
  display: flex;
  gap: 0.5rem;
  width: 100%;
  margin-top: 0.5rem;
  flex-wrap: wrap;
}
.playlist-tab {
  flex: 1;
  min-width: 120px;
  background: var(--glass);
  border: 1px solid rgba(0, 229, 255, 0.12);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  color: var(--text-muted);
  font-family: 'Orbitron', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all var(--transition);
  backdrop-filter: blur(8px);
  text-align: center;
}
.playlist-tab:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  text-shadow: 0 0 8px rgba(0, 229, 255, 0.3);
}
.playlist-tab.active {
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.15), rgba(123, 47, 190, 0.15));
  border-color: var(--cyan);
  color: var(--cyan);
  box-shadow: 0 0 15px rgba(0, 229, 255, 0.15);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  .nav-links, .btn-stream { display: none; }
  .nav-hamburger { display: flex; }
  .nav-inner { gap: 0; }

  #hero {
    min-height: 100svh;
    padding: 5rem 1rem calc(2rem + env(safe-area-inset-bottom));
  }
  .hero-content { gap: 1.1rem; }

  .hero-logo { width: 150px; height: 150px; }
  .hero-logo-wrap::before { width: 230px; height: 230px; }
  .hero-logo-wrap::after { width: 170px; height: 170px; }
  /* keep the waveforms alive but pull them behind the content */
  .hero-waveform { top: 30%; opacity: 0.35; }

  /* Live boombox: center display on top full-width, both speakers in a row below */
  .boombox { padding: 1.1rem 1rem 1.25rem; }
  .boom-body {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }
  .boom-center { order: -1; flex: 1 1 100%; padding: 0; }
  .boom-speaker { flex: 1 1 40%; width: auto; max-width: 132px; height: 118px; }
  .boom-speaker-ring { width: 108px; height: 108px; }

  .boom-controls { gap: 0.85rem; }
  .boom-btn { min-width: 44px; min-height: 44px; }
  .boom-btn-play { min-width: 58px; min-height: 58px; }
  .boom-display { flex-wrap: nowrap; }
  /* horizontal volume on mobile */
  .boom-volume { flex-direction: row; align-self: auto; }
  #volume-slider {
    appearance: auto; -webkit-appearance: none;
    writing-mode: horizontal-tb; direction: ltr;
    width: 60px; height: 6px;
    background:
      repeating-linear-gradient(90deg, rgba(0,229,255,0.5) 0 2px, transparent 2px 5px),
      rgba(0, 229, 255, 0.12);
  }

  .track-grid { grid-template-columns: 1fr; }

  .latest-card { flex-direction: column; }
  .latest-features { flex-direction: row; flex-wrap: wrap; }

  .about-stats { gap: 1.5rem; }
  .stat-num { font-size: 2rem; }

  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-tagline { text-align: left; }
}

@media (max-width: 480px) {
  .hero-title { font-size: clamp(1.4rem, 7vw, 1.9rem); }
  .boom-speaker { flex: 1 1 42%; height: 104px; }
  .boom-speaker-ring { width: 96px; height: 96px; }
  .boom-speaker-grid { font-size: 1.9rem; }
  .boom-track-art { width: 54px; height: 54px; }
  .boom-track-name { font-size: 0.9rem; }
  .latest-features { flex-direction: column; }
}
