/* ========================================
   HOOVA — World-Class Artist Website
   Brand: Cosmic Minimalist | Underground
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');
@font-face {
  font-family: 'Good Times';
  src: url('fonts/good-times-rg.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ---- CSS Variables ---- */
:root {
  --cosmic-blue: #03091a;
  --indigo-deep: #070d28;
  --stellar-white: #F2F7FF;
  --neon-orange: #FF5E00;
  --aurora-green: #39FF14;
  --cosmic-magenta: #00E5FF; /* was magenta, now cyan */
  --solar-yellow: #FFE600;
  --text-muted: rgba(242,247,255,0.6);
  --glow-orange: 0 0 20px rgba(255,94,0,0.5);
  --glow-green: 0 0 20px rgba(57,255,20,0.5);
  --glow-magenta: 0 0 20px rgba(0,229,255,0.4);
  --section-pad: 6rem 2rem;
  --border-cosmic: 1px solid rgba(242,247,255,0.1);
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

/* ========================================
   ANIMATED GRADIENTS — Living Color System
   ======================================== */

/* Core animated gradient: cyan → green → yellow → orange → cyan */
@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* For glowing borders and accents */
@keyframes glowPulse {
  0%, 100% { opacity: 0.5; filter: hue-rotate(0deg); }
  33%       { opacity: 0.9; filter: hue-rotate(40deg); }
  66%       { opacity: 0.7; filter: hue-rotate(80deg); }
}

/* Utility class: animated gradient text */
.grad-text {
  background: linear-gradient(135deg,
    #00E5FF 0%,
    #39FF14 25%,
    #FFE600 50%,
    #FF5E00 75%,
    #00E5FF 100%);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 6s ease infinite;
}

/* Utility class: animated gradient border-bottom line */
.grad-line {
  background: linear-gradient(90deg,
    #00E5FF 0%,
    #39FF14 33%,
    #FFE600 66%,
    #00E5FF 100%);
  background-size: 200% 100%;
  animation: gradientShift 4s linear infinite;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scrollbar-width: thin; scrollbar-color: var(--indigo-deep) var(--cosmic-blue); }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cosmic-blue); }
::-webkit-scrollbar-thumb { background: var(--indigo-deep); border-radius: 3px; }

body {
  background-color: var(--cosmic-blue);
  color: var(--stellar-white);
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; }

/* ---- Typography ---- */
.font-title { font-family: 'Good Times', sans-serif; }

h1, h2, h3 { font-family: 'Good Times', sans-serif; letter-spacing: 0.1em; line-height: 1.2; }

.section-title {
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  display: block;
  height: 2px;
  width: 80px;
  background: linear-gradient(90deg, #00E5FF 0%, #39FF14 33%, #FFE600 66%, #FF5E00 90%, #00E5FF 100%);
  background-size: 300% 100%;
  animation: gradientShift 3s linear infinite;
  margin-top: 0.6rem;
  border-radius: 2px;
  box-shadow: 0 0 8px rgba(0,229,255,0.3), 0 0 16px rgba(57,255,20,0.15);
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 3rem;
}

/* ---- Layout ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
section { padding: var(--section-pad); position: relative; overflow: hidden; }

/* ---- Cosmic Decorations ---- */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  opacity: 0.15;
  z-index: 0;
}
.orb-1 { width: 500px; height: 500px; background: var(--indigo-deep); top: -100px; right: -150px; }
.orb-2 { width: 300px; height: 300px; background: var(--cosmic-magenta); bottom: -50px; left: -100px; }
.orb-3 { width: 400px; height: 400px; background: var(--neon-orange); top: 50%; right: -200px; opacity: 0.08; }

.sacred-geo {
  position: absolute;
  opacity: 0.04;
  pointer-events: none;
}

/* ========================================
   COSMIC UNIVERSE — Planets & Geometry
   ======================================== */
#cosmic-universe {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.planet {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  will-change: transform;
}

/* Planet 1 — Large distant planet, top right — very subtle */
.planet-1 {
  width: 220px; height: 220px;
  top: 12vh; right: -70px;
  background: radial-gradient(circle at 38% 32%,
    #0d1a35 0%, #060d1c 50%, #020610 100%);
  box-shadow:
    inset -15px -15px 35px rgba(0,0,0,0.95),
    inset 8px 8px 18px rgba(57,255,20,0.025),
    0 0 50px rgba(57,255,20,0.03),
    0 0 100px rgba(57,255,20,0.015);
  opacity: 0.45;
  filter: blur(0.5px);
}
.planet-1::after {
  content: '';
  position: absolute;
  inset: -25px;
  border-radius: 50%;
  border: 1px solid rgba(57,255,20,0.04);
}

/* Planet 2 — Medium, left side, barely visible */
.planet-2 {
  width: 120px; height: 120px;
  top: 50vh; left: -40px;
  background: radial-gradient(circle at 40% 32%,
    #1e0d05 0%, #0e0602 55%, #040202 100%);
  box-shadow:
    inset -10px -10px 22px rgba(0,0,0,0.95),
    0 0 35px rgba(255,94,0,0.04),
    0 0 70px rgba(255,94,0,0.02);
  opacity: 0.4;
  filter: blur(0.5px);
}

/* Planet 3 — Small magenta hint, mid right */
.planet-3 {
  width: 70px; height: 70px;
  top: 75vh; right: 6vw;
  background: radial-gradient(circle at 35% 30%,
    #18060f 0%, #0c040a 55%, #030103 100%);
  box-shadow:
    inset -6px -6px 14px rgba(0,0,0,0.95),
    0 0 25px rgba(0,229,255,0.06),
    0 0 50px rgba(0,229,255,0.03);
  opacity: 0.5;
  filter: blur(0.5px);
}

/* Planet 4 — Tiny accent, left */
.planet-4 {
  width: 42px; height: 42px;
  top: 165vh; left: 8vw;
  background: radial-gradient(circle at 35% 30%,
    #070f20 0%, #040a15 60%, #020610 100%);
  box-shadow:
    0 0 18px rgba(57,255,20,0.07),
    0 0 35px rgba(57,255,20,0.03);
  opacity: 0.55;
}

/* Planet 5 — Large deep indigo, far below */
.planet-5 {
  width: 300px; height: 300px;
  top: 230vh; right: -110px;
  background: radial-gradient(circle at 30% 32%,
    #0d0828 0%, #060518 55%, #020210 100%);
  box-shadow:
    inset -20px -20px 45px rgba(0,0,0,0.95),
    0 0 70px rgba(0,229,255,0.025);
  opacity: 0.35;
  filter: blur(1px);
}

/* Planet 6 — tiny accent */
.planet-6 {
  width: 28px; height: 28px;
  top: 320vh; left: 22vw;
  background: radial-gradient(circle at 35% 30%,
    #0e0e1e 0%, #080810 100%);
  box-shadow: 0 0 12px rgba(57,255,20,0.1);
  opacity: 0.5;
}

/* Orbiting rings */
@keyframes orbitRing {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Sacred Geometry floating elements */
.sacred-shape {
  position: absolute;
  pointer-events: none;
  opacity: 0.018;
  will-change: transform;
}

.sacred-shape svg {
  display: block;
}

/* Nebula clouds */
.nebula {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  opacity: 0;
  animation: nebulaFloat 12s ease-in-out infinite alternate;
}

.nebula-1 {
  width: 700px; height: 450px;
  top: 15vh; left: -15vw;
  background: radial-gradient(ellipse, rgba(57,255,20,0.025) 0%, transparent 65%);
  animation-delay: 0s;
}
.nebula-2 {
  width: 600px; height: 350px;
  top: 55vh; right: -10vw;
  background: radial-gradient(ellipse, rgba(0,229,255,0.03) 0%, transparent 65%);
  animation-delay: -5s;
}
.nebula-3 {
  width: 800px; height: 550px;
  top: 145vh; left: 15vw;
  background: radial-gradient(ellipse, rgba(255,94,0,0.02) 0%, transparent 65%);
  animation-delay: -9s;
}

@keyframes nebulaFloat {
  0%   { opacity: 0; transform: scale(0.95) translateX(-10px); }
  50%  { opacity: 1; }
  100% { opacity: 0.6; transform: scale(1.05) translateX(10px); }
}

/* Star field */
.star-field {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 10% 15%, rgba(242,247,255,0.6) 0%, transparent 100%),
    radial-gradient(1px 1px at 25% 35%, rgba(242,247,255,0.4) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 40% 10%, rgba(242,247,255,0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 55% 60%, rgba(242,247,255,0.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 70% 25%, rgba(242,247,255,0.6) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 80% 50%, rgba(242,247,255,0.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 90% 80%, rgba(242,247,255,0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 15% 75%, rgba(242,247,255,0.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 35% 90%, rgba(242,247,255,0.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 60% 85%, rgba(242,247,255,0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 5% 45%, rgba(242,247,255,0.35) 0%, transparent 100%),
    radial-gradient(1px 1px at 45% 55%, rgba(57,255,20,0.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 85% 15%, rgba(0,229,255,0.3) 0%, transparent 100%);
  background-size: 200% 400px;
  animation: starScroll 60s linear infinite;
  opacity: 0.8;
}

@keyframes starScroll {
  from { background-position: 0 0; }
  to   { background-position: 0 400px; }
}

/* Ensure all content sections appear above cosmic layer */
nav, section, footer { position: relative; z-index: 1; }
/* Cards y fotos por encima del canvas de animación (z-index: 2) */
.about-photo-wrap, .about-photo-frame, .about-photo,
.release-card, .music-card { position: relative; z-index: 3; }
#hero .hero-content { position: relative; z-index: 2; }

/* ---- Scroll Animations ---- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2.2rem;
  border-radius: 2px;
  font-family: 'Good Times', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: var(--transition);
}

.btn-primary {
  position: relative;
  background: linear-gradient(135deg,
    #FF5E00 0%, #FFE600 25%, #39FF14 50%, #00E5FF 75%, #FF5E00 100%);
  background-size: 300% 300%;
  animation: gradientShift 4s ease infinite;
  color: var(--cosmic-blue);
  box-shadow: var(--glow-orange);
}
/* Bloom glow behind primary button */
.btn-primary::before {
  content: '';
  position: absolute;
  inset: -8px;
  background: linear-gradient(135deg,
    #FF5E00 0%, #FFE600 25%, #39FF14 50%, #00E5FF 75%, #FF5E00 100%);
  background-size: 300% 300%;
  animation: gradientShift 4s ease infinite;
  border-radius: 6px;
  filter: blur(18px);
  opacity: 0.45;
  z-index: -1;
  transition: opacity 0.3s ease, filter 0.3s ease;
}
.btn-primary:hover::before { opacity: 0.7; filter: blur(24px); }
.btn-primary:hover { transform: translateY(-2px); }

.btn-outline {
  border: 1px solid rgba(242,247,255,0.3);
  color: var(--stellar-white);
}
.btn-outline:hover { border-color: var(--aurora-green); color: var(--aurora-green); box-shadow: var(--glow-green); }

.btn-ghost {
  position: relative;
  color: var(--text-muted);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  padding: 0.6rem 1.2rem;
  border: 1px solid rgba(242,247,255,0.15);
  border-radius: 2px;
  transition: var(--transition);
}
.btn-ghost::before {
  content: '';
  position: absolute;
  inset: -6px;
  background: linear-gradient(135deg, #00E5FF, #39FF14, #FFE600);
  background-size: 300% 300%;
  animation: gradientShift 5s ease infinite;
  border-radius: 4px;
  filter: blur(14px);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s ease;
}
.btn-ghost:hover { color: var(--stellar-white); border-color: rgba(0,229,255,0.4); }
.btn-ghost:hover::before { opacity: 0.3; }

.card-platforms {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.5rem;
  flex-wrap: wrap;
}
.platform-link {
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(242,247,255,0.35);
  border: 1px solid rgba(242,247,255,0.12);
  border-radius: 2px;
  padding: 0.2rem 0.45rem;
  text-decoration: none;
  transition: color 0.2s, border-color 0.2s;
}
.platform-link:hover {
  color: rgba(0,229,255,0.8);
  border-color: rgba(0,229,255,0.3);
}

/* ========================================
   NAVIGATION
   ======================================== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: var(--transition);
}

#navbar.scrolled {
  background: rgba(11,30,60,0.95);
  backdrop-filter: blur(20px);
  padding: 1rem 0;
  border-bottom: var(--border-cosmic);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  transition: var(--transition);
}
.nav-logo:hover { opacity: 0.8; }
.nav-logo-img {
  height: 28px;
  width: auto;
  display: block;
  filter: brightness(1);
  transition: var(--transition);
}
.nav-logo:hover .nav-logo-img { filter: brightness(1.2) drop-shadow(0 0 8px rgba(255,94,0,0.4)); }
.footer-logo-img {
  height: 36px;
  width: auto;
  margin-bottom: 0.5rem;
  filter: brightness(0.85);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, #00E5FF, #39FF14, #FFE600);
  background-size: 200% 100%;
  animation: gradientShift 3s linear infinite;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.nav-links a:hover { color: var(--stellar-white); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta {
  background: transparent;
  border: 1px solid var(--neon-orange);
  color: var(--neon-orange) !important;
  padding: 0.5rem 1.2rem;
  border-radius: 2px;
  transition: var(--transition) !important;
}
.nav-cta:hover { background: var(--neon-orange) !important; color: var(--stellar-white) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}
.hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--stellar-white);
  transition: var(--transition);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(11,30,60,0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  font-family: 'Good Times', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.3em;
  color: var(--text-muted);
  transition: var(--transition);
}
.mobile-menu a:hover { color: var(--stellar-white); }

.mobile-close {
  position: absolute;
  top: 2rem; right: 2rem;
  font-size: 2rem;
  color: var(--text-muted);
  cursor: pointer;
}

/* ========================================
   HERO
   ======================================== */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 0;
}
.hero-split {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  padding: 0 2rem;
  gap: 3rem;
}
.hero-split .hero-content {
  flex: 1;
  max-width: 520px;
}
.hero-photo-wrap {
  flex: 0 0 auto;
  width: 340px;
  position: relative;
}
.hero-photo {
  width: 100%;
  border-radius: 4px;
  display: block;
  filter: drop-shadow(0 0 40px rgba(0,229,255,0.15));
}
@media (max-width: 768px) {
  .hero-split {
    flex-direction: column-reverse;
    padding: 2rem 1.5rem 0;
    gap: 1.5rem;
    text-align: center;
  }
  .hero-photo-wrap {
    width: 220px;
  }
  .hero-split .hero-content {
    max-width: 100%;
  }
}

#particles-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.aurora-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 80% 50% at 20% 80%, rgba(57,255,20,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 20%, rgba(0,229,255,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 100% 60% at 50% 50%, rgba(28,26,74,0.8) 0%, transparent 70%);
  animation: auroraShift 8s ease-in-out infinite alternate;
}

@keyframes auroraShift {
  0%   { background-position: 0% 50%; opacity: 1; }
  100% { background-position: 100% 50%; opacity: 0.8; }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
  max-width: 900px;
}

.hero-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--aurora-green);
  margin-bottom: 1.5rem;
  display: block;
}

.hero-title {
  font-size: clamp(5rem, 18vw, 14rem);
  letter-spacing: 0.15em;
  line-height: 0.9;
  color: var(--stellar-white);
  text-shadow: 0 0 60px rgba(255,94,0,0.15);
  margin-bottom: 1.5rem;
  animation: fadeInUp 1s ease forwards;
}

.hero-tagline {
  font-size: clamp(0.8rem, 1.5vw, 1rem);
  letter-spacing: 0.4em;
  text-transform: uppercase;
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeInUp 1s ease 0.2s forwards, taglineGlow 8s ease 1.2s infinite;
  background: linear-gradient(90deg,
    rgba(242,247,255,0.5) 0%,
    #00E5FF 25%,
    #39FF14 50%,
    rgba(242,247,255,0.5) 75%,
    rgba(242,247,255,0.5) 100%);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@keyframes taglineGlow {
  0%, 100% { background-position: 0% 50%; }
  50%       { background-position: 100% 50%; }
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease 0.4s forwards;
  opacity: 0;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(180deg, var(--text-muted), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.5); opacity: 0.4; }
}

/* ========================================
   LATEST RELEASE
   ======================================== */
#release {
  background: linear-gradient(180deg, var(--cosmic-blue) 0%, var(--indigo-deep) 50%, var(--cosmic-blue) 100%);
}

.release-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.release-info { position: relative; z-index: 1; }

.release-label {
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--neon-orange);
  margin-bottom: 0.8rem;
  display: block;
}

.release-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
}

.release-meta {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}

.release-desc {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 480px;
}

.streaming-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.stream-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(242,247,255,0.15);
  border-radius: 2px;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  transition: var(--transition);
}
.stream-link:hover { color: var(--stellar-white); border-color: var(--aurora-green); box-shadow: var(--glow-green); }

.spotify-embed-wrap {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  position: relative;
  z-index: 1;
}

/* ========================================
   ABOUT
   ======================================== */
#about {
  background: var(--cosmic-blue);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
}

.about-photo-wrap {
  position: relative;
}

.about-photo {
  width: 100%;
  border-radius: 4px;
  display: block;
  filter: saturate(0.9) brightness(0.9);
  transition: filter 0.5s ease;
}
.about-photo:hover { filter: saturate(1.1) brightness(1.0); }

.about-photo-frame {
  position: absolute;
  inset: -15px;
  border: 1px solid rgba(57,255,20,0.15);
  border-radius: 4px;
  pointer-events: none;
}
.about-photo-frame::before {
  content: '';
  position: absolute;
  top: -2px; left: 20px; right: 20px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--aurora-green), transparent);
}

.about-traits {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.5rem 0;
}

.trait-badge {
  padding: 0.35rem 1rem;
  border: 1px solid rgba(242,247,255,0.15);
  border-radius: 2px;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.about-bio { line-height: 1.9; color: var(--text-muted); margin-bottom: 1.5rem; }
.about-bio strong { color: var(--stellar-white); }

/* ========================================
   MUSIC / DISCOGRAPHY
   ======================================== */
#music {
  background: linear-gradient(180deg, var(--cosmic-blue) 0%, var(--indigo-deep) 100%);
}

.music-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.release-card {
  background: rgba(28,26,74,0.4);
  border: var(--border-cosmic);
  border-radius: 4px;
  overflow: hidden;
  transition: var(--transition);
}
.release-card {
  position: relative;
}
.release-card::before {
  content: '';
  position: absolute;
  inset: -12px;
  background: linear-gradient(135deg, #00E5FF, #39FF14, #FFE600, #FF5E00);
  background-size: 300% 300%;
  animation: gradientShift 5s ease infinite;
  border-radius: 8px;
  filter: blur(28px);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.4s ease;
}
.release-card:hover::before { opacity: 0.18; }
.release-card:hover { transform: translateY(-6px); border-color: rgba(0,229,255,0.2); box-shadow: 0 20px 50px rgba(0,0,0,0.5); }

.release-card--featured { border-color: rgba(255,94,0,0.2); }
.release-card--coming { opacity: 0.7; }

.release-badge {
  position: absolute;
  top: 0.75rem; left: 0.75rem;
  background: var(--neon-orange);
  color: var(--stellar-white);
  font-size: 0.55rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-family: 'Good Times', sans-serif;
  padding: 0.3rem 0.6rem;
  border-radius: 2px;
  z-index: 2;
}

.coming-soon-badge {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.coming-soon-badge span {
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  opacity: 0.25;
  text-align: center;
  line-height: 1.3;
}

.release-card-cover {
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--indigo-deep), #0d0d2b);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.release-card-cover--image img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.9;
  transition: transform 0.5s ease, opacity 0.3s ease;
}
.release-card:hover .release-card-cover--image img { transform: scale(1.04); opacity: 1; }

.release-card-cover .cover-glyph {
  font-family: 'Good Times', sans-serif;
  font-size: 3rem;
  opacity: 0.2;
  color: var(--stellar-white);
  letter-spacing: 0.2em;
}

.cover-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(57,255,20,0.05), transparent 70%);
}

.release-card-body { padding: 1.25rem; }
.release-card-body h3 { font-size: 0.85rem; letter-spacing: 0.1em; margin-bottom: 0.3rem; }
.release-card-year { font-size: 0.7rem; color: var(--text-muted); letter-spacing: 0.1em; margin-bottom: 0.8rem; }

.release-tags { display: flex; flex-wrap: wrap; gap: 0.3rem; margin-bottom: 1rem; }
.tag {
  font-size: 0.6rem;
  padding: 0.2rem 0.6rem;
  background: rgba(255,94,0,0.1);
  border: 1px solid rgba(255,94,0,0.2);
  border-radius: 2px;
  color: var(--neon-orange);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ========================================
   MIXES / SETS
   ======================================== */
#mixes {
  background: var(--cosmic-blue);
}

.mixes-embed-wrap {
  border-radius: 4px;
  overflow: hidden;
  border: var(--border-cosmic);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

/* ========================================
   SOLFEGIOS
   ======================================== */
#solfegios {
  background: linear-gradient(135deg, #080d1f 0%, #0a1428 40%, #0d1020 100%);
  position: relative;
}

#solfegios::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 30% 60%, rgba(0,229,255,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 50% 30% at 70% 30%, rgba(57,255,20,0.05) 0%, transparent 60%);
  pointer-events: none;
}

.solfegios-intro {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.freq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 4rem;
}

.freq-card {
  position: relative;
  background: rgba(28,26,74,0.3);
  border: 1px solid rgba(242,247,255,0.06);
  border-radius: 4px;
  padding: 1.5rem;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
}
.freq-card::before {
  content: '';
  position: absolute;
  inset: -8px;
  background: linear-gradient(135deg, #00E5FF, #39FF14, #FFE600);
  background-size: 300% 300%;
  animation: gradientShift 5s ease infinite;
  border-radius: 8px;
  filter: blur(22px);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.4s ease;
}
.freq-card:hover { border-color: rgba(0,229,255,0.25); transform: translateY(-3px); }
.freq-card:hover::before { opacity: 0.2; }

.freq-hz {
  font-family: 'Good Times', sans-serif;
  font-size: 1.8rem;
  background: linear-gradient(135deg,
    #00E5FF 0%, #39FF14 25%, #FFE600 50%, #00E5FF 100%);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 5s ease infinite;
  margin-bottom: 0.5rem;
}

.freq-name {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stellar-white);
  margin-bottom: 0.4rem;
}

.freq-desc {
  font-size: 0.7rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Lead Magnet Grid */
.lead-magnets-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.lead-magnet-card {
  background: rgba(7,13,40,0.6);
  border: 1px solid rgba(0,229,255,0.15);
  border-radius: 4px;
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
}
.lead-magnet-card:hover { border-color: rgba(0,229,255,0.4); transform: translateY(-4px); box-shadow: 0 10px 30px rgba(0,229,255,0.1); }

.lm-icon {
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00E5FF;
  animation: glowPulse 4s ease infinite;
  filter: drop-shadow(0 0 8px rgba(0,229,255,0.3));
}
.lead-magnet-card:nth-child(2) .lm-icon { color: #39FF14; filter: drop-shadow(0 0 8px rgba(57,255,20,0.3)); }
.lead-magnet-card:nth-child(3) .lm-icon { color: #FFE600; filter: drop-shadow(0 0 8px rgba(255,230,0,0.3)); }
.lead-magnet-card h4 { font-size: 0.9rem; letter-spacing: 0.1em; margin-bottom: 0.4rem; }
.lead-magnet-card p { font-size: 0.75rem; color: var(--text-muted); margin-bottom: 1.5rem; }

/* Email Gate Modal */
#email-gate-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(3,9,26,0.92);
  backdrop-filter: blur(10px);
}
.modal-box {
  position: relative;
  z-index: 1;
  background: #070d28;
  border: 1px solid rgba(0,229,255,0.25);
  border-radius: 6px;
  padding: 2.5rem;
  max-width: 440px;
  width: 100%;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 0 40px rgba(0,229,255,0.08);
}
.modal-close {
  position: absolute;
  top: 1rem; right: 1.2rem;
  color: var(--text-muted);
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition);
}
.modal-close:hover { color: var(--stellar-white); }

/* Old lead magnet box (kept for reference) */
.lead-magnet-box {
  background: rgba(28,26,74,0.5);
  border: 1px solid rgba(0,229,255,0.2);
  border-radius: 4px;
  padding: 3rem;
  text-align: center;
  max-width: 580px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.lead-magnet-box h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}
.lead-magnet-box p { color: var(--text-muted); margin-bottom: 2rem; }

.email-form {
  display: flex;
  gap: 0.5rem;
  max-width: 440px;
  margin: 0 auto;
}

.email-input {
  flex: 1;
  padding: 0.9rem 1.2rem;
  background: rgba(11,30,60,0.8);
  border: 1px solid rgba(242,247,255,0.15);
  border-radius: 2px;
  color: var(--stellar-white);
  font-family: 'Roboto', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition);
}
.email-input:focus { border-color: var(--cosmic-magenta); box-shadow: 0 0 10px rgba(0,229,255,0.2); }
.email-input::placeholder { color: var(--text-muted); }

.btn-magnet {
  position: relative;
  padding: 0.9rem 1.8rem;
  background: linear-gradient(135deg,
    #00E5FF 0%, #39FF14 33%, #FFE600 66%, #00E5FF 100%);
  background-size: 300% 300%;
  animation: gradientShift 4s ease infinite;
  border: none;
  border-radius: 2px;
  color: var(--cosmic-blue);
  font-family: 'Good Times', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
/* Bloom glow behind magnet button */
.btn-magnet::before {
  content: '';
  position: absolute;
  inset: -10px;
  background: linear-gradient(135deg,
    #00E5FF 0%, #39FF14 33%, #FFE600 66%, #00E5FF 100%);
  background-size: 300% 300%;
  animation: gradientShift 4s ease infinite;
  border-radius: 6px;
  filter: blur(20px);
  opacity: 0.4;
  z-index: -1;
  transition: opacity 0.3s ease, filter 0.3s ease;
}
.btn-magnet:hover::before { opacity: 0.65; filter: blur(28px); }
.btn-magnet:hover { transform: translateY(-2px); filter: brightness(1.08); }

/* ========================================
   PRESS
   ======================================== */
#press {
  background: var(--cosmic-blue);
}

.press-quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.press-quote-card {
  background: rgba(28,26,74,0.3);
  border: var(--border-cosmic);
  border-radius: 4px;
  padding: 2rem;
  position: relative;
}
.press-quote-card::before {
  content: '"';
  font-size: 4rem;
  color: var(--neon-orange);
  opacity: 0.3;
  position: absolute;
  top: 1rem; left: 1.5rem;
  font-family: Georgia, serif;
  line-height: 1;
}

.press-quote-text {
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.7;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.press-quote-source {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--neon-orange);
}

.press-logos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.press-logo-box {
  background: rgba(28,26,74,0.3);
  border: var(--border-cosmic);
  border-radius: 4px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 2.5/1;
  color: var(--text-muted);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: var(--transition);
}
.press-logo-box:hover { border-color: rgba(242,247,255,0.3); color: var(--stellar-white); }

/* ========================================
   CONTACT
   ======================================== */
#contact {
  background: linear-gradient(180deg, var(--cosmic-blue) 0%, var(--indigo-deep) 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
  align-items: start;
}

.contact-info h3 {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--text-muted);
  letter-spacing: 0.15em;
}

.contact-email {
  font-size: 1.1rem;
  color: var(--neon-orange);
  letter-spacing: 0.05em;
  margin-bottom: 2.5rem;
  display: block;
  transition: var(--transition);
}
.contact-email:hover { color: var(--stellar-white); }

.social-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-muted);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  transition: var(--transition);
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(242,247,255,0.05);
}
.social-link:hover { color: var(--stellar-white); }

.social-icon { font-size: 1rem; width: 24px; text-align: center; }

.contact-form { display: flex; flex-direction: column; gap: 1rem; }

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-field label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-field input,
.form-field select,
.form-field textarea {
  background: rgba(11,30,60,0.6);
  border: 1px solid rgba(242,247,255,0.1);
  border-radius: 2px;
  padding: 0.8rem 1rem;
  color: var(--stellar-white);
  font-family: 'Roboto', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--neon-orange);
  box-shadow: 0 0 10px rgba(255,94,0,0.1);
}

.form-field select { cursor: pointer; }
.form-field select option { background: var(--indigo-deep); }
.form-field textarea { min-height: 130px; resize: vertical; }

/* ========================================
   FOOTER
   ======================================== */
footer {
  background: #020610;
  border-top: var(--border-cosmic);
  padding: 4rem 2rem 2rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 3rem;
  gap: 2rem;
}

.footer-brand h2 {
  font-size: 2rem;
  letter-spacing: 0.3em;
  margin-bottom: 0.5rem;
}
.footer-brand p { color: var(--text-muted); font-size: 0.8rem; letter-spacing: 0.2em; }

.footer-links {
  display: flex;
  gap: 4rem;
}

.footer-col h4 {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul a {
  font-size: 0.8rem;
  color: var(--text-muted);
  transition: var(--transition);
}
.footer-col ul a:hover { color: var(--stellar-white); }

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social-icon {
  width: 38px; height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(242,247,255,0.1);
  border-radius: 2px;
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-social-icon:hover { border-color: var(--neon-orange); color: var(--neon-orange); }

.footer-bottom {
  border-top: var(--border-cosmic);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}

.footer-mantra {
  font-family: 'Good Times', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  color: rgba(242,247,255,0.2);
  text-transform: uppercase;
}

/* ========================================
   STICKY BOTTOM PLAYER
   ======================================== */
#sticky-player {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 900;
  background: rgba(8, 13, 31, 0.97);
  backdrop-filter: blur(20px);
  border-top: 2px solid transparent;
  border-image: linear-gradient(90deg, #00E5FF 0%, #39FF14 33%, #FFE600 66%, #FF5E00 100%) 1;
  border-image-slice: 1;
  padding: 0.6rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}

#sticky-player.visible {
  transform: translateY(0);
}

.player-toggle {
  position: absolute;
  top: -36px; right: 2rem;
  background: rgba(8,13,31,0.97);
  border: 1px solid rgba(242,247,255,0.1);
  border-bottom: none;
  border-radius: 6px 6px 0 0;
  padding: 0.4rem 1.2rem;
  cursor: pointer;
  color: var(--text-muted);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-family: 'Good Times', sans-serif;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
}
.player-toggle:hover { color: var(--stellar-white); }

.player-label {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 120px;
}

.player-label span:first-child {
  font-family: 'Good Times', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--stellar-white);
}

.player-label span:last-child {
  font-size: 0.6rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}

.player-embed {
  flex: 1;
  height: 80px;
  overflow: hidden;
  border-radius: 4px;
}

.player-embed iframe {
  display: block;
  width: 100%;
  height: 80px;
  border: none;
}

.player-links {
  display: flex;
  gap: 0.75rem;
}

.player-platform {
  width: 32px; height: 32px;
  border: 1px solid rgba(242,247,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  transition: var(--transition);
}
.player-platform:hover { color: var(--neon-orange); border-color: var(--neon-orange); }

/* Adjust footer so player doesn't overlap */
body.player-open footer { padding-bottom: 6rem; }

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
  .release-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-photo-wrap { max-width: 400px; margin: 0 auto; }
  .music-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .freq-grid { grid-template-columns: repeat(2, 1fr); }
  .press-quotes { grid-template-columns: 1fr; }
  .press-logos { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --section-pad: 4rem 1.5rem; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .music-grid { grid-template-columns: 1fr; }
  .freq-grid { grid-template-columns: 1fr; }
  .lead-magnets-grid { grid-template-columns: 1fr; }
  .footer-top { flex-direction: column; }
  .footer-links { flex-direction: column; gap: 2rem; }
  .email-form { flex-direction: column; }
  .hero-title { font-size: clamp(3.5rem, 18vw, 8rem); }
}

/* ========================================
   AUDIO PLAYER CARDS
   ======================================== */
.lm-player-card {
  background: linear-gradient(135deg, rgba(10,8,32,0.9) 0%, rgba(6,14,24,0.9) 100%);
  border: 1px solid rgba(0,229,255,0.12);
  border-radius: 6px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: border-color 0.3s;
}
.lm-player-card:hover { border-color: rgba(0,229,255,0.3); }
.lmp-header { margin-bottom: 0.25rem; }
.lmp-label {
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(0,229,255,0.6);
  font-family: 'Good Times', sans-serif;
}
.lmp-title {
  font-size: 0.9rem;
  color: var(--stellar-white);
  margin: 0;
  line-height: 1.3;
}
.lmp-sub {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin: 0 0 0.75rem;
}
.lmp-controls {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(0,0,0,0.3);
  border-radius: 30px;
  padding: 0.5rem 0.75rem;
  border: 1px solid rgba(255,255,255,0.06);
}
.lmp-play-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(0,229,255,0.4);
  background: rgba(0,229,255,0.08);
  color: #00E5FF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s;
}
.lmp-play-btn:hover { background: rgba(0,229,255,0.2); border-color: rgba(0,229,255,0.7); }
.lmp-play-btn.playing { background: rgba(0,229,255,0.2); }
.lmp-progress-wrap {
  flex: 1;
  height: 3px;
  background: rgba(255,255,255,0.1);
  border-radius: 3px;
  cursor: pointer;
  position: relative;
  overflow: visible;
}
.lmp-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #00E5FF, rgba(0,229,255,0.5));
  border-radius: 3px;
  width: 0%;
  transition: width 0.1s linear;
  pointer-events: none;
}
.lmp-time {
  font-size: 0.6rem;
  color: rgba(242,247,255,0.4);
  font-family: monospace;
  flex-shrink: 0;
  min-width: 32px;
}
