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

.video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translateX(-50%) translateY(-50%);
  object-fit: cover;
  z-index: 0;
}

.mobile-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}

/* Mobil cihazlar için video gizleme ve görsel gösterme */
@media (max-width: 768px), (pointer: coarse) {
  .video-bg {
    display: none;
  }
  
  .mobile-bg {
    display: block;
  }
}

/* Video arka plan için hero__bg sınıfı düzenlemesi */
.hero__bg {
  position: relative;
  overflow: hidden;
}