.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100vw;
  height: 100vh;
  background-color: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.video-modal-content {
  position: relative;
  width: 100%;
  max-width: 900px;
  aspect-ratio: 16 / 9;
  background-color: black;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.7);
}

.video-modal-content video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background-color: black;
}

.close-video-btn {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 28px;
  background: transparent;
  border: none;
  color: white;
  cursor: pointer;
  z-index: 10;
}

@media screen and (max-width: 768px) {
  .video-modal-content {
    max-width: 100%;
    aspect-ratio: 16 / 9;
  }
}
