

        /* --- Custom Video Player CSS --- */

        /* * 1. Video Container: This is a wrapper for the video and the custom button.
         * Using a relative position allows us to position the button absolutely inside it.
        */
        .hero-video {
            position: relative;
            width: 100%;
            border-radius: 12px;
            overflow: hidden; /* Ensures the button doesn't spill out if padding is added */
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }

        /* * 2. Video Element Styling: Ensure the video fills its container.
        */
        .hero-video video {
            width: 100%;
            height: auto;
            display: block; /* Removes any extra space below the video */
            border-radius: 12px;
        }

        /* * 3. Mute/Unmute Button: Positioned at the bottom-right corner.
         * It has a semi-transparent background to be visible on any video content.
        */
        .mute-btn {
            position: absolute;
            bottom: 15px;
            right: 15px;
            background-color: rgba(0, 0, 0, 0.5);
            color: white;
            border: none;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            cursor: pointer;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 18px;
            transition: background-color 0.3s ease, transform 0.2s ease;
            z-index: 10;
        }

        .mute-btn:hover {
            background-color: rgba(0, 0, 0, 0.7);
            transform: scale(1.1);
        }
