/* Video Modal Styles */
.video-modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(5px);
}

.video-modal-content {
  position: relative;
  margin: auto;
  padding: 0;
  width: 90%;
  max-width: 1200px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.video-modal-close {
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  position: absolute;
  top: -50px;
  right: 0;
  cursor: pointer;
  transition: color 0.3s;
  z-index: 10001;
}

.video-modal-close:hover {
  color: #ff6600;
}

.video-modal-frame {
  width: 100%;
  height: 70vh;
  min-height: 400px;
  border-radius: 12px;
}

/* Responsive */
@media (max-width: 768px) {
  .video-modal-frame {
    height: 50vh;
    min-height: 300px;
  }
  
  .video-modal-close {
    font-size: 30px;
    top: -40px;
  }
}

