.video-footer {
    display: flex;
    gap: 20px;
    justify-content: center;
    background: transparent;
}

.video-box {
    text-align: center;
}

.video-title {
    margin-bottom: 10px;
    font-size: 16px;
    color: #fff;
}

.video-thumbnail {
    cursor: pointer;
    width: 100%;
    border-radius: 6px;
    transition: 0.3s;
}

.video-thumbnail:hover {
    transform: scale(1.05);
    border-color: #f00;
}

/* Modal */
.video-modal {
    display: none;
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
}

.video-modal-content {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    max-width: 800px;
    width: 90%;
    position: relative;
}

.video-close {
    position: absolute;
    top: -40px;
    right: 0px;
    font-size: 30px;
    cursor: pointer;
    color: #fff;
    background: red;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#video-modal-title {
    margin: 0 0 15px 0;
    font-size: 18px;
    color: #000;
    text-align: center;
}