/* Modal de base, caché par défaut */
.modal {
  display: none;
  /* caché */
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  justify-content: center;
  /* centre le contenu */
  align-items: center;
}

/* Contenu du modal */
.modal-content {
  position: relative;
  width: 80%;
  max-width: 800px;
  background: white;
  border-radius: 8px;
  padding: 10px;
  text-align: center;
}

/* La vidéo prend toute la largeur du modal et est limitée en hauteur */
.modal-content video {
  width: 100%;
  height: auto;
  max-height: 450px;
  /* limite la hauteur sur desktop */
}

/* Bouton de fermeture */
.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
}

/* Responsive Tablettes */
@media screen and (max-width: 768px) {
  .modal-content video {
    max-height: 350px;
  }
}

/* Responsive Mobile */
@media screen and (max-width: 480px) {
  .modal-content video {
    max-height: 250px;
  }
}