.franks-video-slider {
  position: relative;
  overflow: hidden;
}
.video-slide {
  position: absolute;
  inset: 0;
  display: none;
}
.video-slide.active {
  display: block;
}
.video-slide video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.video-slide .bg-blur {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(40px) brightness(0.4);
  z-index: 1;
}
.video-slide .main-video {
  position: relative;
  z-index: 2;
}
.overlay {
  position: absolute;
  padding: 10px 20px;
  border-radius: 8px;
  z-index: 3;
}
.overlay.top-left { top: 10%; left: 10%; }
.overlay.top-right { top: 10%; right: 10%; }
.overlay.bottom-left { bottom: 10%; left: 10%; }
.overlay.bottom-right { bottom: 10%; right: 10%; }
.overlay.bottom-center { bottom: 10%; left: 50%; transform: translateX(-50%); }
.overlay.center { top: 50%; left: 50%; transform: translate(-50%, -50%); }
