/* Popup Trailer */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.7);
}

/* Popup box */
.modal-content {
  position: relative;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: #000;
  width: 90%;
  max-width: 800px;
  border-radius: 8px;
  overflow: hidden;
}

/* Bikin rasio 16:9 */
.modal-content::before {
  content: "";
  display: block;
  padding-bottom: 56.25%; /* 16:9 */
}

.modal-content iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Tombol close */
.close {
  position: absolute;
  top: 5px; right: 8px;
  font-size: 28px;
  font-weight: bold;
  color: red;
  cursor: pointer;
  z-index: 2;
}
