.video-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
}

.video-modal.active {
  display: flex;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(4, 49, 111, 0.26);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.video-container {
  position: relative;
  width: 85vw;
  max-width: 1000px;
  z-index: 2;
  margin: 0 auto;
  padding: 0 20px;
}

.video-container video {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.video-close {
  position: absolute;
  top: 16px;
  right: 34px;
  width: 44px;
  height: 44px;
  font-size: 28px;
  color: #fff;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  line-height: 1;
  z-index: 3;
}

.video-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}
