.main-screen__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.main-screen__image video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Mobile-specific video styling */
@media (max-width: 991px) {
  .main-screen__image {
    width: 100%;
    height: 100%;
  }
  
  .main-screen__image video {
    width: 100%;
    height: 100%;
    min-width: unset;
    min-height: unset;
  }
}
