  /* Pastikan kontainer utama pembungkus video berposisi relative */
  .middle-left {
    position: relative;
    display: inline-block;
    width: 100%;
  }

  /* Area Subtitle di Center Bottom dari #main-video */
  #subtitle_container {
    position: absolute;
    bottom: 40px; /* Jarak dari bawah video */
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: 90%;
    max-width: 800px;
    pointer-events: none; /* Mencegah subtitle menghalangi klik pada video */
    z-index: 10;
  }

  /* Gaya Teks Ala YouTube (Gelap Transparan + Teks Putih) */
  .yt-caption-text {
    color: #ffffff;
    font-family: "YouTube Noto", Roboto, Arial, Helvetica, sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.3;
    background-color: rgba(8, 8, 8, 0.75); /* Warna hitam khas subtitle YouTube */
    padding: 4px 8px;
    border-radius: 2px;
    display: inline-block;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
    word-wrap: break-word;
    text-shadow: 0 0 2px rgba(0, 0, 0, 0.8);
  }