/* ─────────────────────────────────────────────────────────────
   VIDEO MODAL
   File: static/css/modal.css
───────────────────────────────────────────────────────────── */

/* Overlay gelap fullscreen */
.vmodal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .88);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;

  /* State tersembunyi */
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s ease, visibility .35s;
}

.vmodal-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Box pembungkus iframe */
.vmodal-box {
  position: relative;
  width: 100%;
  max-width: 960px;
  transform: scale(.92) translateY(24px);
  transition: transform .38s cubic-bezier(.4, 0, .2, 1);
}

.vmodal-overlay.active .vmodal-box {
  transform: scale(1) translateY(0);
}

/* Wrapper rasio 16:9 */
.vmodal-iframe-wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 9/16 = 56.25% */
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0, 0, 0, .6);
}

.vmodal-iframe-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Tombol tutup (×) */
.vmodal-close {
  position: absolute;
  top: -44px;
  right: 0;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, .15);
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 50%;
  color: #fff;
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, transform .2s;
  z-index: 10;
}

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

@media (max-width: 600px) {
  .vmodal-close {
    top: -40px;
    right: 0;
  }
}
