  /* Main Container */



  .video-container {
            position: relative;
            width: 100%;
            overflow: hidden;

    border-radius: 20px;

        }

        /* Inner Wrapper */
        .video-wrapper {
            position: relative;
            width: 100%;
            height: 100%;
        }

        /* Video Content Box */
        .video-content {
            position: relative;
            width: 100%;
            height: 100%;
        }

        /* Header with Mute Button and Title */
        .video-header {
            position: absolute;
            top: 20px;
            left: 20px;
            z-index: 10;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        /* Mute Button */
        .mute-button {
            width: 48px;
            height: 48px;
            background: rgba(255, 255, 255, 0.9);
            border: none;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
        }

        .mute-button:hover {
            background: white;
            transform: scale(1.1);
        }

        .mute-button img {
            width: 20px;
            height: 20px;
        }

        /* Title */
        .video-title {
            color: white;
            font-size: 2rem;
            font-weight: 700;
            margin: 0;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        }

        /* Play Overlay */
        .play-overlay {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 5;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .play-overlay:hover {
            transform: translate(-50%, -50%) scale(1.1);
        }

        .play-overlay img {
            width: 117px;
            height: 117px;
            filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
        }

        /* Hide overlay when video is playing */
        .play-overlay.hidden {
            display: none;
        }

        /* Video Element */
        .background-video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        /* Video Controls */
        .video-controls {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 10;
            display: flex;
            align-items: center;
            gap: 15px;
            background: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(10px);
            padding: 12px 20px;
            border-radius: 50px;
        }

        .control-btn {
            width: 48px;
            height: 48px;
            background: rgba(255, 255, 255, 0.9);
            border: none;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
        }

        .control-btn:hover {
            background: white;
            transform: scale(1.1);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
        }

        .control-btn:active {
            transform: scale(0.95);
        }

        .play-pause-btn img {
            width: 24px;
            height: 24px;
        }

        .rewind-btn i,
        .fast-forward-btn i {
            font-size: 20px;
            color: #333;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .video-title {
                font-size: 1.5rem;
            }

            .video-header {
                top: 10px;
                left: 10px;
                gap: 10px;
            }

            .mute-button {
                width: 40px;
                height: 40px;
            }

            .play-overlay img {
                width: 80px;
                height: 80px;
            }

            .video-controls {
                bottom: 15px;
                padding: 10px 16px;
                gap: 12px;
            }

            .control-btn {
                width: 42px;
                height: 42px;
            }

            .play-pause-btn img {
                width: 20px;
                height: 20px;
            }

            .rewind-btn i,
            .fast-forward-btn i {
                font-size: 18px;
            }
        }