/* Efecto Cristal Oscuro */
.glass-dark {
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.glass-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Marquesina de Radio */
.ticker-wrap {
  width: 100%;
  overflow: hidden;
  background: linear-gradient(90deg, #7f1d1d 0%, #dc2626 100%);
  color: white;
  padding: 6px 0;
  display: flex;
  align-items: center;
}
.ticker-move {
  display: inline-block;
  white-space: nowrap;
  animation: ticker 35s linear infinite;
}
@keyframes ticker {
  0% { transform: translate3d(100%, 0, 0); }
  100% { transform: translate3d(-100%, 0, 0); }
}

/* Gradientes de texto Radio Aroma */
.text-gradient-aroma {
  background: linear-gradient(135deg, #b91c1c 0%, #ef4444 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Animación Ecualizador (Barras de música) */
.eq-bar {
  width: 4px;
  background: #dc2626;
  border-radius: 2px;
  animation: eq-bounce 1s infinite ease-in-out;
}
.eq-bar:nth-child(1) { animation-delay: 0.1s; }
.eq-bar:nth-child(2) { animation-delay: 0.4s; height: 16px; }
.eq-bar:nth-child(3) { animation-delay: 0.2s; height: 24px; }
.eq-bar:nth-child(4) { animation-delay: 0.5s; height: 12px; }
.eq-bar:nth-child(5) { animation-delay: 0.3s; height: 20px; }

@keyframes eq-bounce {
  0%, 100% { transform: scaleY(0.5); }
  50% { transform: scaleY(1); }
}

/* Botón Vivo Pulso */
.live-glow {
  box-shadow: 0 0 15px rgba(220, 38, 38, 0.5);
  animation: smooth-pulse 2s infinite;
}
@keyframes smooth-pulse {
  0% { box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.6); }
  70% { box-shadow: 0 0 0 10px rgba(220, 38, 38, 0); }
  100% { box-shadow: 0 0 0 0 rgba(220, 38, 38, 0); }
}

/* --- CLASES DE ANIMACIÓN AL HACER SCROLL (Reemplazo de <FadeIn>) --- */
.fade-in-element {
  opacity: 0;
  transform: translateY(3rem) scale(0.95);
  transition: all 1s ease-out;
}
.fade-in-element.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}