#video-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: black;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

#loader-video {
  width: 33vw;  /* 1/3rd of viewport width */
  height: auto;
  max-height: 80vh; /* optional: limits height */
  object-fit: contain;
  border-radius: 8px; /* optional: rounded edges */
}
