/* Custom styles for video player to use object-fit: cover */

/* Override the object-fit property */
.video-player {
  object-fit: cover !important;
}

/* Add a custom background for the video container */
.video-container {
  position: relative;
  background-color: rgba(0, 0, 0, 0.6);
  overflow: hidden;
}

/* Add a subtle gradient overlay to the video container */
.video-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.6) 100%
  );
  z-index: 1;
  pointer-events: none;
}

/* Ensure the video is above the gradient overlay */
.video-player {
  position: relative;
  z-index: 2;
}

/* Add a subtle blur effect to the video background */
.video-container::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.2);
  filter: blur(10px);
  z-index: 0;
} 