.video-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: auto;
    height: auto;
    background: rgba(0,0,0,0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.video-container {
    position: relative;
    max-width: 80%;
    max-height: 80%;
}

.video-container video {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.close-btn {
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 36px;
    color: white;
    cursor: pointer;
}


