.video-container {
    position: relative;
    width: 100%;
    max-width: 960px;
    margin: auto;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    background-color: black;
    touch-action: none;
}

/* Hilangkan border-radius */

.no-rounded {
    border-radius: 0 !important;
    overflow: hidden;
}

/* Hilangkan lengkungan dari video & gambar thumbnail juga */

.no-rounded video,
.no-rounded img {
    border-radius: 0 !important;
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    z-index: 30;
    padding: 1rem;
    box-sizing: border-box;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 9999px;
    padding: 1rem 1.25rem;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.2s ease, background 0.3s ease;
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background-color: rgba(255, 255, 255, 1);
}

.hidden {
    display: none;
}

@media (max-width: 640px) {
    body {
        background-position: center top;
    }
}