/* --------------------------------------------------------
  MODAL OVERLAY
-------------------------------------------------------- */
.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0,0,0,0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.video-modal.active {
  opacity: 1;
  pointer-events: auto;
}

/* Overlay clickable area to close modal */
.video-modal::before {
  content: '';
  position: absolute;
  inset: 0;
}

/* --------------------------------------------------------
  MODAL CONTENT
-------------------------------------------------------- */
.modal-content {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 100vw;
  max-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ------------------------------------------------------*
