/* Make the video full-screen like a Reel */
.video-container {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/* Ensure the iframe covers the screen */
.video-container iframe {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    border: none;
}

/* Disable user interaction to hide play buttons */
iframe {
    pointer-events: none; /* Prevents clicking on YouTube UI */
}
