.dp-video-modal {
  width: min(960px, calc(100% - 32px));
  max-width: none;
  max-height: calc(100dvh - 32px);
  padding: 0;
  overflow: auto;
  color: #f3f5f3;
  background: #080e0b;
  border: 1px solid #8dca2e80;
  border-radius: 20px;
  box-shadow: 0 32px 100px #000c, 0 0 50px #8dca2e20;
  opacity: 0;
  transform: translateY(20px) scale(.97);
  transition: opacity .25s ease, transform .25s ease;
}
.dp-video-modal::backdrop {
  background: #020605dc;
  backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity .25s ease;
}
.dp-video-modal.is-visible { opacity: 1; transform: translateY(0) scale(1); }
.dp-video-modal.is-visible::backdrop { opacity: 1; }
.dp-video-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: linear-gradient(120deg, #8dca2e14, transparent);
}
.dp-video-modal__eyebrow { margin: 0 0 6px; color: #b9f45a; font-size: 10px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; }
.dp-video-modal__title { margin: 0; font-size: clamp(18px, 4vw, 25px); line-height: 1.2; }
.dp-video-modal__close {
  flex: 0 0 auto;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid #8dca2e66;
  border-radius: 10px;
  background: #8dca2e12;
  color: #f3f5f3;
  font: 700 13px Inter, Arial, sans-serif;
  cursor: pointer;
}
.dp-video-modal__close:hover { background: #8dca2e30; }
.dp-video-modal__close:focus-visible { outline: 2px solid #b9f45a; outline-offset: 3px; }
.dp-video-modal__video { display: block; width: 100%; max-height: calc(100dvh - 190px); aspect-ratio: 16 / 9; background: #000; object-fit: contain; }
.dp-video-modal__status { margin: 0; padding: 15px 24px; color: #b1beb2; font-size: 12px; line-height: 1.5; }
@media (max-width: 480px) {
  .dp-video-modal { border-radius: 14px; }
  .dp-video-modal__header { padding: 16px; gap: 10px; }
  .dp-video-modal__status { padding: 12px 16px; }
}
@media (prefers-reduced-motion: reduce) {
  .dp-video-modal, .dp-video-modal::backdrop { transition: none; transform: none; }
}
