/* === DEMO VIDEO MODAL === */
.demo-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.demo-modal.active {
  display: flex;
  animation: modalFadeIn 0.3s ease;
}

.demo-modal-content {
  position: relative;
  width: min(1100px, 92vw);
  height: 80vh;
  max-height: 80vh;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(152, 158, 161, 0.18);
  background: linear-gradient(135deg, #1a1c22 0%, #0f1115 100%);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  animation: modalZoomIn 0.3s ease;
}

.demo-modal-frame {
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 768px) {
  .demo-modal {
    padding: 1.25rem;
  }
  .demo-modal-content {
    width: 95vw;
    height: 80vh;
  }
}

