/* Video Slider Styles */

.wsus__video_slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.wsus__video_slider video {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.video-controls-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    cursor: pointer;
    z-index: 10;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.video-controls-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.play-pause-btn {
    background: rgba(255, 255, 255, 0.8);
    border: none;
    padding: 20px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 30px;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.play-pause-btn:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

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

.mute-unmute-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    z-index: 20;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(4px);
}

.mute-unmute-btn:hover {
    background: rgba(0, 0, 0, 0.8);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.mute-unmute-btn i {
    font-size: 16px;
}

.mute-text {
    font-weight: 500;
    white-space: nowrap;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .play-pause-btn {
        width: 60px;
        height: 60px;
        padding: 15px;
        font-size: 24px;
    }

    .mute-unmute-btn {
        padding: 8px 12px;
        font-size: 12px;
        bottom: 15px;
        right: 15px;
    }

    .mute-unmute-btn i {
        font-size: 14px;
    }

    .wsus__single_slider_text {
        padding: 20px !important;
        max-width: 100% !important;
    }

    .wsus__single_slider_text h1 {
        font-size: 1.8rem !important;
    }

    .wsus__single_slider_text h6 {
        font-size: 1rem !important;
    }
}

@media (max-width: 480px) {
    .play-pause-btn {
        width: 50px;
        height: 50px;
        padding: 12px;
        font-size: 20px;
    }

    .mute-unmute-btn {
        padding: 6px 10px;
        font-size: 11px;
        bottom: 10px;
        right: 10px;
    }

    .mute-text {
        display: none;
    }

    .wsus__single_slider_text {
        padding: 15px !important;
        border-radius: 4px !important;
    }

    .wsus__single_slider_text h1 {
        font-size: 1.4rem !important;
    }

    .wsus__single_slider_text h6 {
        font-size: 0.9rem !important;
    }
}
