   /* Your CSS styles */
        #intro {
            position: relative;
            width: 100%;
            height: 110vh;
            overflow: hidden;
            background-color: black;
            margin-top: 2%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .video-container {
            position: relative;
            width: 100%;
            height: 100vh;
            overflow: hidden;
            visibility: hidden; /* Hide the video container initially */
        }

        .video-container.loaded {
            visibility: visible; /* Show the video container when loaded */
        }

        .video-background {
            object-fit: cover;
            width: 100%;
            height: 100%;
            object-position: bottom;
        }

        .overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.2);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .mute-button {
            position: absolute;
            top: 50px;
            right: 20px;
            z-index: 1;
            cursor: pointer;
            padding: .6rem .8rem;
            border: 1px solid white;
            border-radius: 50%;
            color: #fff;
        }

        .mute-button svg {
            width: 20px;
            height: 20px;
            fill: #fff;
        }

        /* Button Styling */
        .btn-container {
            padding: 10px;
            z-index: 2;
            display: flex;
            justify-content: center;
            align-items: center;
            background-color: black;
            position: relative;
        }

        /* Responsive design */
        @media (max-width: 768px) {
            .video-container {
                height: 50vh;
            }

            .mute-button {
                top: 20px;
                right: 20px;
                padding: .3rem;
            }

            .mute-button svg {
                width: 15px;
                height: 15px;
            }

            .btn-container {
                margin-top: -150px; /* Adjust for smaller screens */
            }
        }

        @media (max-width: 480px) {
            .video-container {
                height: 30vh;
            }

            .mute-button {
                top: 10px;
                right: 10px;
                padding: .6rem .8rem;
            }

            #intro {
                height: 40vh;
            }

            .btn-container {
                margin-top: -50px; /* Adjust for very small screens */
            }
        }