/* MODAL */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.7);
    padding-top: 60px;
}

.modal-content {
    background-color: #222;
    margin: 5% auto;
    padding: 20px;
    border: 1px solid #444;
    width: 90%;
    max-width: 700px;
    color: #fff;
    position: relative;
    border-radius: 5px;
}

.modal-content h2 {
    margin-bottom: 1rem;
}

.modal-content p {
    margin-bottom: 1rem;
}

.video-container {
    width: 100%;
    margin-bottom: 1rem;
}

.video-container video {
    width: 100%;
    height: auto;
    border: none;
}

.close {
    color: #aaa;
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.2s;
}

.close:hover,
.close:focus {
    color: #fff;
}
