.video-popup-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999999999;
}

.video-popup-modal {
  background: #000;
  border-radius: 8px;
  position: relative;
  max-width: 600px;
  max-height: 80vh;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  z-index: 999999999;
}

.video-popup-modal video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #000;
  border: none;
  color: #fff;
  font-size: 36px;
  line-height: 1;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  text-align: center;
  cursor: pointer;
  z-index: 999999999;
}


@media (max-width: 768px) {
  .video-popup-close {
    top: 25px !important;
    right: 15px !important;
    background: #111 !important;
    z-index: 100001 !important;
  }
}