/* Effetto bagliore per il contenitore del video */
.video-wrapper {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 123, 255, 0.4); /* Bagliore blu soft */
  transition: box-shadow 0.5s ease;
}

/* Animazione pulsante per il titolo "Ora in onda" */
#current-track {
  color: #00d4ff; /* Un blu più acceso per risaltare */
  font-weight: bold;
  animation: pulse-blue 3s infinite ease-in-out;
}

@keyframes pulse-blue {
  0% { opacity: 0.7; }
  50% { opacity: 1; text-shadow: 0 0 10px rgba(0, 212, 255, 0.5); }
  100% { opacity: 0.7; }
}

/* Hover sul link YouTube per renderlo più interattivo */
#current-track-link {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  padding: 4px 12px;
  border-radius: 20px;
  transition: all 0.3s ease;
  text-decoration: none;
  border: 1px solid transparent;
}

#current-track-link:hover {
  background: rgba(0, 212, 255, 0.2);
  border-color: #00d4ff;
  box-shadow: 0 0 15px rgba(0, 212, 255, 0.3);
}

#current-track {
  transition: opacity 0.5s ease-in-out;
}

#current-track {
  transition: opacity 0.5s ease-in-out;
  display: block; /* o inline-block */
  min-height: 1.2em;
}