.modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.68);
  display: grid;
  place-items: center;
  padding: var(--space-4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
  z-index: 1100;
}

.modal.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-dialog {
  width: min(900px, 100%);
  background: #0b0d12;
  color: #fff;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,0.08);
}

.modal-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-4) var(--space-5);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.modal-video {
  aspect-ratio: 16/9;
  background: #11151d;
  display: grid;
  place-items: center;
  padding: var(--space-6);
  text-align: center;
}

.modal-video p {
  color: rgba(255,255,255,0.75);
}
