/* Fondo general */
body {
  margin: 0;
  background: #000;
  font-family: "Poppins", sans-serif;
  color: #fff;
}

/* Botón regresar */
.red-label {
  background: #ff0000;
  color: #fff;
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 2px;
}

.back-btn {
  position: fixed;
  top: 25px;
  left: 25px;
  text-decoration: none;
  z-index: 1000;
}

.back-btn:hover {
  background: #d40000;
}


.covers-container {
  padding-top: 100px;
  padding-bottom: 120px;   /* ← ESPACIO INFERIOR NUEVO */
  width: 90%;
  margin: auto;
  text-align: center;
}


/* Título grande */
.covers-title {
  font-size: 3rem;
  margin-bottom: 40px;
  letter-spacing: 3px;
}

/* GRID de 5 columnas */
.covers-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
  margin-top: 40px;
}

/* Caja de cada item */
.cover-item {
  text-align: center;
}

/* Imagen pequeña */
.cover-item img {
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: 6px;
  transition: transform 0.3s ease, filter 0.3s ease;
  cursor: pointer;
}

/* Efecto hover */
.cover-item img:hover {
  transform: scale(2.4);
  z-index: 10;
  filter: brightness(1.15);
}

/* Título pequeño debajo */
.cover-title {
  margin-top: 15px;
  font-size: 0.9rem;
  opacity: 0.85;
}

/* Responsive (pantallas pequeñas) */
@media (max-width: 900px) {
  .covers-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .covers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
