.thumb {
  width: 300px;
  cursor: pointer;
}

/* Fondo oscuro */
/* .modal {
  display: flex;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
} */

/* Contenedor del video */
.video-container {
  width: 90%;
  max-width: 1000px;
}

/* Video grande y responsive */
.video-container video {
  width: 100%;
  height: auto;
  max-height: 80vh;
  border-radius: 8px;
}

/* Botón cerrar */
.close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 36px;
  color: white;
  cursor: pointer;
}

#lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  display: none;           /* IMPORTANTE */
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

#lightbox video {
  width: 90%;
  max-width: 1000px;
  max-height: 90vh;
}

#closeBtn {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 40px;
  cursor: pointer;
}