.video-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  align-items: center;
}

.video-modal.active {
  display: flex;
}

.video-modal-content {
  position: relative;
  max-width: 800px;
  width: 90%;
  max-height: 80vh;
  margin: 0 auto;
}

.video-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.video-modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  color: #fff;
  font-size: 24px;
  padding: 10px;
  cursor: pointer;
}

.video-modal iframe,
.video-modal video {
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
}
