/* ===== VIDEO BACKGROUND (GLOBAL) ===== */
.video-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -10;
  overflow: hidden;
}

.video-background .hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.video-background .video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(7, 27, 42, 0.85) 0%,
    rgba(15, 23, 42, 0.75) 100%
  );
}

/* Fallback for browsers without video support */
@supports not (object-fit: cover) {
  .video-background {
    background: linear-gradient(
      135deg,
      var(--color-deep-blue) 0%,
      #0a1929 100%
    );
  }
  .video-background .hero-video {
    display: none;
  }
}
