.carrusel-scroll {
  display: flex;
  overflow-x: auto;
  gap: 1rem;
  padding: 1rem;
  scroll-snap-type: x mandatory;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 10px;
  max-width: 100%;
  box-shadow: 0 0 10px #01efd5;
  scroll-padding: 1rem;
}

.carrusel-scroll::-webkit-scrollbar {
  height: 8px;
}
.carrusel-scroll::-webkit-scrollbar-thumb {
  background: #01efd5;
  border-radius: 5px;
}
.carrusel-scroll::-webkit-scrollbar-track {
  background: #222;
}

.dj-card {
  position: relative;
  flex: 0 0 auto;
  width: 140px;
  background: linear-gradient(145deg, #222, #111);
  border: 2px solid #01efd5;
  border-radius: 10px;
  text-align: center;
  padding: 1rem 0.5rem;
  color: #fff;
  scroll-snap-align: start;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  cursor: pointer;
  overflow: visible;
  margin: 0 8px;
}

/* 👇 EFECTO HOVER/TOUCH para destacar */
.dj-card:hover,
.dj-card:active {
  background-color: #e74c3c; /* rojo fuerte */
  transform: scale(1.08);
  box-shadow: 0 0 20px #ff9f43; /* naranja glow */
}

/* 🔥 FUEGO RESPONSIVO */
.dj-card::after {
  content: "🔥";
  position: absolute;
  top: -10px;
  right: -10px;
  font-size: 1.6rem;
  animation: flame 0.8s infinite alternate;
  pointer-events: none;
  z-index: 5;
}

/* 🔥 Animación de llama */
@keyframes flame {
  0% {
    transform: scale(1) translate(30%, -30%);
    opacity: 1;
  }
  100% {
    transform: scale(1.2) translate(30%, -35%);
    opacity: 0.7;
  }
}

.dj-card img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #01efd5;
  margin-bottom: 0.5rem;
  box-shadow: 0 0 8px #00ffcc;
  transition: transform 0.3s ease;
}

.dj-card:hover img,
.dj-card:active img {
  transform: scale(1.1);
  filter: brightness(1.2);
  border-color: #ffcc00;
}

.dj-card p {
  font-weight: bold;
  font-size: 1rem;
  color: #01efd5;
  margin: 0;
}

.lema-djs {
  text-align: center;
  font-size: 1.05rem;
  margin-top: 1.8em;
  padding: 0.8em 1em;
  background: radial-gradient(circle, #18587d, #133560);
  color: #fff;
  border-radius: 12px;
  box-shadow: 0 0 12px #01efd5;
  animation: glowLema 3s ease-in-out infinite alternate;
}

@keyframes glowLema {
  0% { box-shadow: 0 0 10px #01efd5; }
  100% { box-shadow: 0 0 25px #01efd5; }
}

/* Modal */
.modal-horario {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(10, 10, 10, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.modal-contenido {
  background: linear-gradient(to right, #1f7596, #133560);
  padding: 25px 20px;
  border-radius: 14px;
  color: #fff;
  width: 90%;
  max-width: 420px;
  text-align: center;
  border: 3px solid #8e5d6b;
  box-shadow: 0 0 18px #01efd5;
}

.modal-contenido h3 {
  margin-top: 0;
  font-size: 1.4rem;
  color: #01efd5;
}

.modal-contenido #horariosDJ {
  font-size: 1rem;
  line-height: 1.6;
  margin-top: 12px;
}

.cerrar {
  position: absolute;
  top: 15px;
  right: 25px;
  color: #fff;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s ease;
}

.cerrar:hover {
  color: #ff3366;
}
