
#bg-video {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -2;
    object-fit: cover;
}

.video-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75); 
    z-index: -1;
}

.video-controls {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 100;
    display: flex;
    gap: 10px;
}

.video-controls button {
    background-color: rgba(0, 0, 0, 0);
    /* border: 1px solid rgba(255, 255, 255, 0.5); */
    border: none;
    color: white;
    
    width: 45px;
    height: 45px;
    /* border-radius: 50%; */
    display: flex;
    justify-content: center;
    align-items: center;

    cursor: pointer;
    backdrop-filter: blur(5px);
    transition: background-color 0.2s;
}

.video-controls button i {
    font-size: 18px;
}

.video-controls button:hover {
    background-color: rgba(255, 255, 255, 0.4);
}
