.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: transparent;
    filter: brightness(1.2) contrast(1.1);
}

/* Custom video controls styling */
video::-webkit-media-controls {
    background-color: rgba(18, 18, 18, 0.7);
}

video::-webkit-media-controls-panel {
    background-color: rgba(18, 18, 18, 0.7);
}

video::-webkit-media-controls-play-button {
    background-color: var(--neon-blue);
    border-radius: 50%;
    transition: all 0.3s ease;
}

video::-webkit-media-controls-timeline {
    background-color: var(--dark-surface-lighter);
    border-radius: 4px;
    height: 4px;
}

video::-webkit-media-controls-current-time-display,
video::-webkit-media-controls-time-remaining-display {
    color: var(--text-color);
    font-family: 'Montserrat', sans-serif;
}

/* Focus styling */
video:focus {
    outline: 2px solid var(--neon-blue);
    outline-offset: 2px;
}
