/* Reset styles */
html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: auto;
  }
  
  /* Background video */
  #bg-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover; /* Key line for scaling */
    z-index: -1;
    pointer-events: none; /* Let clicks pass through */
  }
  
  /* Foreground content */
  .content {
    position: relative;
    z-index: 1;
    color: white;
    text-align: center;
    padding: 2rem;
    font-family: sans-serif;
  }
  