:root {
  --accent: #ff3333;
  --accent-weak: #9f0100;
  --background-dark: #0B0B0F;
}

body {
  background-color: var(--background-dark);
  color: #EAECF0;
  font-family: 'Inter', sans-serif;
  transition: background-color 0.5s ease;
  position: relative;
  overflow-x: hidden;
}

#ambient-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: var(--bg-image-url);
  background-size: cover;
  background-position: center;
  filter: blur(40px) brightness(0.6);
  transform: scale(1.2);
  transition: background-image 0.5s ease, filter 0.5s ease;
  z-index: 0;
}

/* Gradiente general para algunos elementos */
#ambient-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, transparent 0%, rgba(11, 11, 15, 0.85) 100%);
  z-index: 1;
  pointer-events: none;
}

.gradient-bg {
  background: linear-gradient(180deg, var(--accent) 0%, transparent 50%, var(--background-dark) 100%);
  transition: background 0.5s ease;
}

/* Tarjetas de vidrio (liquid glass effect) - PREMIUM ENHANCED */
.glass-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.4),
    0 2px 8px rgba(0, 0, 0, 0.3),
    inset 0 1px 1px rgba(255, 255, 255, 0.1),
    inset 0 -1px 1px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  opacity: 0.6;
}

.glass-card:hover {
  transform: translateY(-6px) scale(1.02);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow:
    0 16px 48px rgba(0, 0, 0, 0.5),
    0 4px 16px rgba(0, 0, 0, 0.4),
    inset 0 2px 2px rgba(255, 255, 255, 0.15),
    inset 0 -2px 2px rgba(0, 0, 0, 0.1),
    0 0 40px rgba(255, 255, 255, 0.05);
}

/* Elementos del tracklist */
.tracklist-item {
  transition: background-color 0.2s ease;
}

.tracklist-item:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

/* Ocultar scrollbar para carruseles */
.no-scrollbar::-webkit-scrollbar {
  display: none;
}

.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Imagen de fondo desenfocada */
.background-blur {
  filter: blur(40px) brightness(0.6);
  transform: scale(1.2);
}

/* Pantalla de presentación */
.logo-splash {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #0B0B0F;
  z-index: 100;
  opacity: 1;
  transition: opacity 0.5s ease-out;
}

/* Modal */
.modal {
  background-color: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-content {
  background: rgba(11, 11, 15, 0.85);
  backdrop-filter: blur(32px) saturate(160%);
  -webkit-backdrop-filter: blur(32px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.6),
    0 8px 32px rgba(0, 0, 0, 0.5),
    inset 0 1px 2px rgba(255, 255, 255, 0.1),
    0 0 60px rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  max-width: 1200px;
  width: 90%;
  padding: 2.5rem;
  z-index: 51;
  display: flex;
  gap: 2.5rem;
  overflow-y: auto;
  max-height: 90vh;
  animation: scaleIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@media (max-width: 768px) {
  .modal-content {
    flex-direction: column;
    padding: 1.5rem;
    gap: 1.5rem;
  }
}

/* Scroll class applied only on desktop to Left and Right panels */
@media (min-width: 769px) {
  .desktop-modal-scroll {
    max-height: 90vh;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 4px;
  }
}

/* Release Modal Premium Restyling */
.premium-modal {
  /* Garantizar esquinas redondeadas y altura estricta fuera de Tailwind JIT */
  border-radius: 28px !important;
  max-height: 90vh !important;
  overflow: hidden !important; 
  box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.8), inset 0 1px 1px rgba(255,255,255,0.1);
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  padding: 0 !important;
  background: var(--glass-bg);
}

@media (max-width: 768px) {
  .premium-modal {
    border-radius: 32px 32px 0 0 !important;
    max-height: 92vh !important;
    border-bottom: none !important;
    overflow-y: hidden !important;
    overflow-x: hidden !important;
  }
}

/* Coming Soon oculto por defecto */
#coming-soon-section {
  display: none;
  transform: translateX(100%);
  opacity: 0;
  visibility: hidden;
}

#coming-soon-section.visible {
  display: block;
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}

/* Ajustes de colores para el Easter Egg */
.glass-card>p.text-5xl {
  color: var(--accent);
}

.glass-card:hover {
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.37), 0 0 5px rgba(142, 45, 226, 0.3), inset 0 0 5px white;
}

/* Estilos para el menú móvil */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -300px;
  width: 280px;
  height: 100%;
  background: rgba(11, 11, 15, 0.75);
  backdrop-filter: blur(40px) saturate(180%);
  -webkit-backdrop-filter: blur(40px) saturate(180%);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 60;
  transition: right 0.3s ease-in-out;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 50;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  display: none;
}

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

/* Premium Lyrics Fade Mask */
.lyrics-mask {
  mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
}
.lyrics-mask.expanded {
  mask-image: none !important;
  -webkit-mask-image: none !important;
}

.mobile-menu.active+.mobile-menu-overlay {
  display: block;
}

/* Estilos para el botón de scroll */
#scroll-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 40;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}

#scroll-btn.visible {
  opacity: 1;
  visibility: visible;
}

#scroll-btn:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.2);
}

/* Nueva clase para el hover dinámico de los enlaces del dropdown */
.dynamic-link-hover:hover {
  background-color: rgba(var(--accent-rgb), 0.15);
}

/* Estilos para el pop-up del newsletter */
#newsletter-modal {
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: opacity 0.3s ease-in-out;
  pointer-events: none;
}

#newsletter-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.newsletter-content {
  background: rgba(11, 11, 15, 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  /* Borde y brillo minimalista en blanco */
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.1), inset 0 0 5px rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  max-width: 500px;
  width: 90%;
  padding: 2.5rem;
  z-index: 51;
  position: relative;
}

/* Clases para animaciones y hover */
.animate-hover-grow {
  transition: transform 0.3s ease-in-out;
}

.animate-hover-grow:hover {
  transform: scale(1.05);
}

.logo-hover-effect {
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  animation: pulseBorder 2s infinite ease-in-out;
}

.logo-hover-effect:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.nav-link-hover:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* ============================================================ */
/* ESTILOS NUEVOS: CÍRCULO PRIVADO (BLOG & GOOGLE SHEETS) */
/* ============================================================ */
.private-trigger {
  color: #ff4444;
  /* Color rojo original del span */
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
  font-weight: 700;
  border-bottom: 1px solid transparent;
}

.private-trigger:hover {
  text-shadow: 0 0 10px rgba(255, 68, 68, 0.6);
  border-bottom: 1px solid #ff4444;
  letter-spacing: 0.02em;
}

/* Estilos específicos para los posts del blog */
.blog-post {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 2rem;
  margin-bottom: 2rem;
}

.blog-post:last-child {
  border-bottom: none;
}

.blog-audio-player {
  width: 100%;
  height: 40px;
  margin-top: 1rem;
  border-radius: 20px;
  outline: none;
}

.blog-audio-player::-webkit-media-controls-panel {
  background-color: rgba(255, 255, 255, 0.1);
}

.blog-audio-player::-webkit-media-controls-current-time-display,
.blog-audio-player::-webkit-media-controls-time-remaining-display {
  color: white;
}

/* ============================================================ */
/* PREMIUM UTILITY CLASSES */
/* ============================================================ */

/* Premium Glass Button */
.glass-button {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 4px 16px rgba(0, 0, 0, 0.3),
    inset 0 1px 1px rgba(255, 255, 255, 0.1);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.glass-button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.glass-button:hover::before {
  width: 300px;
  height: 300px;
}

.glass-button:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.4),
    inset 0 1px 2px rgba(255, 255, 255, 0.15);
}

.glass-button:active {
  transform: translateY(0);
  box-shadow:
    0 2px 8px rgba(0, 0, 0, 0.3),
    inset 0 1px 1px rgba(255, 255, 255, 0.1);
}

/* Premium Glass Input */
.glass-input {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.2);
}

.glass-input:focus {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(226, 45, 45, 0.5);
  outline: none;
  box-shadow:
    0 0 0 3px rgba(226, 45, 45, 0.1),
    inset 0 1px 2px rgba(0, 0, 0, 0.2);
}

.glass-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

/* Premium Card Enhancement */
.premium-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 8px 16px rgba(0, 0, 0, 0.3),
    inset 0 1px 2px rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.premium-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.6),
    0 12px 24px rgba(0, 0, 0, 0.4),
    inset 0 2px 3px rgba(255, 255, 255, 0.15),
    0 0 50px rgba(255, 255, 255, 0.08);
}

/* Floating Animation */
.animate-float {
  animation: float 3s ease-in-out infinite;
}

/* Shimmer Effect for Loading */
.shimmer {
  background: linear-gradient(90deg,
      rgba(255, 255, 255, 0.0) 0%,
      rgba(255, 255, 255, 0.1) 50%,
      rgba(255, 255, 255, 0.0) 100%);
  background-size: 200% 100%;
  animation: shimmer 2s linear infinite;
}

/* Custom Scrollbar - Premium Style */
.custom-scrollbar {
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.25) transparent;
}

.custom-scrollbar::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

.custom-scrollbar::-webkit-scrollbar-track {
  background: transparent;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.25);
  border-radius: 10px;
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
  background: rgba(226, 45, 45, 0.8);
}

/* Smooth Scroll Behavior */
html {
  scroll-behavior: smooth;
}

/* Enhanced Focus States */
*:focus-visible {
  outline: 2px solid rgba(226, 45, 45, 0.5);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Smooth Image Loading */
img {
  transition: opacity 0.3s ease;
}

img[loading="lazy"] {
  opacity: 0;
}

img.loaded {
  opacity: 1;
}

/* ============================================================ */
/* PREMIUM VISUAL EFFECTS */
/* ============================================================ */

/* Spotlight Borders for Glass Cards */
.glass-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
  background: radial-gradient(
    600px circle at var(--mouse-x, -500px) var(--mouse-y, -500px),
    rgba(255, 255, 255, 0.15),
    transparent 40%
  );
  z-index: 1;
  border-radius: inherit;
}

/* Smoothness for Magnetic Buttons */
.glass-button, .smartlink-button {
  will-change: transform;
}
.glass-button > *, .smartlink-button > * {
  display: inline-block;
  pointer-events: none;
  will-change: transform;
}

/* ============================================================ */
/* NEW ANIMATIONS (SPLASH & MARQUEE) */
/* ============================================================ */

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.group:hover .group-hover\:animate-shimmer-fast {
  animation: shimmer 1.5s infinite;
}

@keyframes playing-pulse {
  0% { box-shadow: 0 0 20px rgba(226, 45, 45, 0.4); opacity: 1; transform: scale(1); }
  50% { box-shadow: 0 0 50px rgba(226, 45, 45, 0.8), 0 0 80px rgba(226, 45, 45, 0.2); opacity: 1; transform: scale(1.02); }
  100% { box-shadow: 0 0 20px rgba(226, 45, 45, 0.4); opacity: 1; transform: scale(1); }
}

#modal-cover-container.playing {
  animation: playing-pulse 2s infinite ease-in-out forwards;
  opacity: 1 !important;
  border-radius: 20px;
}

#preloader {
  transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), transform 1s cubic-bezier(0.4, 0, 0.2, 1), filter 1s ease;
}


.animate-marquee {
  animation: marquee 45s linear infinite;
  min-width: 100%;
}

/* ============================================================ */
/* NEW PREMIUM MODAL FEATURES: Stagger, Vinyl, Glow, Karaoke  */
/* ============================================================ */

/* 1. Staggered Reveal Animation */
@keyframes fadeSlideUp {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

.stagger-item {
  opacity: 0;
  animation: fadeSlideUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* 2. Ambient Pulse Glow */
@keyframes pulseGlow {
  0% { transform: scale(1); opacity: 0.15; }
  50% { transform: scale(1.05); opacity: 0.3; }
  100% { transform: scale(1); opacity: 0.15; }
}

#modal-ambient-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 120%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
  pointer-events: none;
  animation: pulseGlow 6s ease-in-out infinite;
  transition: background 1s ease;
}

.lyrics-mask {
  mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
  -webkit-mask-image: -webkit-linear-gradient(top, black 60%, transparent 100%);
}


/* 3. Vinyl Spin Animation */
@keyframes spin-vinyl {
  from { transform: translateX(45%) rotate(0deg); }
  to { transform: translateX(45%) rotate(360deg); }
}

.vinyl-record {
  position: absolute;
  top: 5%;
  right: 15%;
  height: 90%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: 
    repeating-radial-gradient(#111 0, #111 2px, #222 3px, #222 4px),
    #111;
  box-shadow: 0 0 20px rgba(0,0,0,0.8), inset 0 0 10px rgba(0,0,0,0.9);
  z-index: -1;
  opacity: 0;
  transform: translateX(-50%) rotate(0deg);
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
}

.vinyl-record::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 30%; height: 30%;
  border-radius: 50%;
  background: var(--accent);
  border: 4px solid #000;
}

.playing .vinyl-record {
  opacity: 1;
  transform: translateX(45%) rotate(0deg);
  animation: spin-vinyl 4s linear infinite forwards;
  animation-delay: 0.5s;
}

.playing #modal-cover {
  transform: none;
}

/* 4. Karaoke (Expanded Lyrics) Mode */
.karaoke-active::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--bg-image-url);
  background-size: cover;
  background-position: center;
  filter: blur(30px) brightness(0.3) saturate(1.5);
  z-index: 0;
  pointer-events: none;
}

.karaoke-active #modal-content {
  max-width: none !important;
  width: 100vw !important;
  max-height: none !important;
  height: 100vh !important;
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
  transform: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
}

.karaoke-active #modal-content > div.border-r {
  /* Ocultar el panel izquierdo completo */
  display: none !important;
}

.karaoke-active #youtube-embed {
  position: fixed !important;
  inset: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  max-width: none !important;
  z-index: 9990 !important;
  filter: blur(30px) brightness(0.4) saturate(1.5);
  transform: scale(1.1) !important;
  pointer-events: none;
  border-radius: 0 !important;
  opacity: 1 !important;
}

.karaoke-active #lyrics-container {
  position: fixed !important;
  inset: 0 !important;
  z-index: 9999 !important;
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  background: rgba(0,0,0,0.6);
  border-radius: 0 !important;
}

.karaoke-active #lyrics-container > div:first-child {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 100%;
  justify-content: flex-end !important;
  padding-right: 4rem;
}

.karaoke-active #lyrics-container pre {
  font-size: 2rem !important;
  line-height: 2 !important;
  max-width: 90vw;
  width: 100%;
  height: 75vh;
  margin: 0 auto;
  mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
  overflow-y: auto;
}

.karaoke-active #lyrics-container > div:nth-child(2) {
  max-height: none !important;
  height: auto !important;
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  overflow: visible !important;
  width: 100%;
}

@media (min-width: 768px) {
  .karaoke-active #lyrics-container pre {
    font-size: 2.5rem !important;
    max-width: 800px;
    height: 70vh;
  }
}

/* ========================================================================= */
/* MEJORAS MODAL 2.0: Ecualizador Animado */
/* ========================================================================= */
.equalizer {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 2px;
  height: 14px;
  width: 14px;
}
.equalizer span {
  display: block;
  width: 3px;
  background-color: currentColor;
  border-radius: 1px;
  animation: equalize 1s ease-in-out infinite;
}
.equalizer span:nth-child(1) { animation-delay: -0.4s; }
.equalizer span:nth-child(2) { animation-delay: -0.2s; }
.equalizer span:nth-child(3) { animation-delay: 0s; }

@keyframes equalize {
  0%, 100% { height: 4px; }
  50% { height: 14px; }
}

.equalizer.paused span {
  animation-play-state: paused;
}

/* ========================================================================= */
/* LYRICS EXCLUSIVE STYLES (Letras Module) */
/* ========================================================================= */
.lyric-line {
  display: block;
  opacity: 0.7;
  transition: all 0.3s ease;
  padding: 2px 0;
}
.lyric-line:hover {
  opacity: 1;
  transform: scale(1.02) translateX(10px);
  color: #fff;
  border-left: 2px solid #FF3333;
  padding-left: 10px;
}

/* Mobile Video Responsive: Hide Cover if Video Present */
@media (max-width: 768px) {
  #modal-content.has-video #modal-cover-container {
    display: none !important;
  }
}