body {
  margin: 0;
  background: #ec20db;
  font-family: Arial, sans-serif;
  overflow: hidden;
}

/* HEADER */
.header {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 30px;
  z-index: 10;
  background: linear-gradient(to bottom, rgba(0,0,0,0.8), transparent);
}

.title {
  color: #fff;
  font-size: 3rem;
  font-weight: bold;
  opacity: 0;
  transform: translateY(-30px);
  animation: fadeSlide 2s ease forwards;
}

/* Animación título */
@keyframes fadeSlide {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* efecto glow sutil */
.title span {
  color: #e50914;
  animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
  from { text-shadow: 0 0 5px #e50914; }
  to { text-shadow: 0 0 20px #e50914; }
}

/* CONTENIDO */
.container {
  display: flex;
  flex-direction: column;
  height: 100vh;
}

.row {
  flex: 1;
  overflow: hidden;
}

.track {
  display: flex;
  height: 100%;
  width: max-content;
}

.track img {
  height: 100%;
  margin-right: 10px;
  border-radius: 6px;
  transition: transform 0.3s;
}

.track img:hover {
  transform: scale(1.1);
}

/* Animaciones carrusel */
@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes scroll-right {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.left {
  animation: scroll-left 25s linear infinite;
}

.right {
  animation: scroll-right 25s linear infinite;
}

/* Pausa al pasar el mouse */
.track:hover {
  animation-play-state: paused;
}
