/* Shared video background styles for all security landing pages */
.landing-video-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.45;
  filter: saturate(1.2) brightness(1.05);
}

.landing-video-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(3, 7, 18, 0.85) 0%,
    rgba(3, 7, 18, 0.75) 40%,
    rgba(3, 7, 18, 0.92) 100%
  );
  pointer-events: none;
}
