.video-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.72);
}

.video-modal[hidden] {
  display: none;
}

.video-modal__panel {
  position: relative;
  width: min(900px, 100%);
  aspect-ratio: 16 / 9;
  background: #000;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.45);
}

.video-modal__frame {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 1;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 0 0;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.video-modal__close:hover,
.video-modal__close:focus-visible {
  background: #fff;
  color: #111;
}

@media (max-width: 680px) {
  .video-modal {
    padding: 16px;
  }

  .video-modal__close {
    top: 10px;
    right: 10px;
  }
}
