/* Video Accessibility Styles */
.video-control-btn {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: 2px solid white;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s;
}

.video-control-btn:hover {
    background: rgba(0, 0, 0, 0.9);
}

.video-control-btn:focus {
    outline: 3px solid #3B82F6;
    outline-offset: 2px;
}

/* Ensure videos have proper aspect ratio */
video {
    max-width: 100%;
    height: auto;
}

/* Caption styles */
video::cue {
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    font-size: 1.1em;
}