/* Container responsive 16:9 */
.youtube-lite {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; 
    cursor: pointer;
    overflow: hidden;
    background-color: #000;
}

/* Thumbnail image fill container dan crop jika perlu */
.youtube-lite img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; 
}

/* Iframe sama ukuran container */
.youtube-lite iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Tombol play di tengah thumbnail */
.youtube-lite .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    margin-top: -40px;
    margin-left: -40px;
    background: url('https://img.icons8.com/ios-filled/100/ffffff/play--v1.png') no-repeat center;
    background-size: contain;
}