/* Video Background Container */
.yt-bg iframe {
    /* ... diğer stiller ... */
    opacity: 0.8; /* İsteğe bağlı: Videonun opaklığını ayarlayarak okunabilirliği artırabilirsiniz */
}

.video-overlay {
    /* ... diğer stiller ... */
    background: rgba(0, 0, 0, 0.7); /* %20 opaklığında siyah bir katman */
}

.video-bg {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  overflow: hidden;
  pointer-events: none; /* arka planda tıklanmasın */
}
.video-bg iframe {
  width: 100vw;
  height: 100vh;
  min-width: 100vw;
  min-height: 100vh;
  border: none;
}


.video-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  overflow: hidden;
}
.video-bg iframe {
  width: 100vw;
  height: 100vh;
  pointer-events: none;
}
.content {
  position: relative;
  z-index: 1;
}
