/* Video-Popup / Lightbox Styles */
.video-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.video-modal-overlay.active {
  display: flex;
}
.video-modal-box {
  position: relative;
  width: 90%;
  max-width: 900px;
  aspect-ratio: 16 / 9;
}
.video-modal-content {
  width: 100%;
  height: 100%;
}
.video-modal-content iframe,
.video-modal-content video {
  width: 100%;
  height: 100%;
  border: 0;
}
.video-modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
}
.video-modal-close:hover {
  opacity: 0.7;
}

/* Optionaler Button-Style, kann angepasst oder entfernt werden */
.video-popup-btn {
  cursor: pointer;
}
