.video-container {
    padding: 10px;
    max-width: 600px;
    margin: 0 auto;
}

.video-card {
    display: flex;
    flex-direction: column;
    background-color: #282828;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s;
}

.video-card video {
    width: 100%;
    height: auto;
}

.video-info {
    padding: 10px;
}

.video-title {
    font-size: 1em;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 8px;
}

.video-description {
    font-size: 0.9em;
    color: #aaaaaa;
}

@media (min-width: 600px) {
    .video-card {
        flex-direction: row;
        align-items: flex-start;
    }

    .video-info {
        padding-left: 15px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}

/* Video container */
.video-bg-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}


.video-bg-placeholder {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px; /* Sesuaikan ukuran loader */
    height: auto;
    object-fit: cover;
    z-index: -2; /* ditaruh di belakang saja */
    animation: flip 2s infinite ease-in-out;
}

@keyframes flip {
    0%, 100% {
        transform: translate(-50%, -50%) rotateY(0deg);
    }
    50% {
        transform: translate(-50%, -50%) rotateY(180deg);
    }
}

.video-bg-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}



/* Unmute button */
#unmute-btn {
    position: fixed;
    bottom: 75px;
    right: 20px;
    padding: 10px 20px;
    font-size: 1rem;
    background-color: rgba(0, 0, 0, 0.5); /* Transparansi 50% */
    color: white;
    border: 1px solid white; /* Batas putih untuk tampilan lebih baik */
    border-radius: 5px; /* Membulatkan sudut */
    cursor: pointer;
    z-index: 2;
    transition: background-color 0.3s ease, color 0.3s ease; /* Efek hover */
}

/* Hover effect */
#unmute-btn:hover {
    background-color: rgba(0, 0, 0, 0.7); /* Sedikit lebih gelap saat hover */
    color: #f0f0f0; /* Sedikit lebih terang saat hover */
}


/* Responsive adjustments */
@media screen and (max-width: 768px) {
    #unmute-btn {
        font-size: 0.9rem;
        padding: 8px 16px;
    }
}