/* ./css/modal.css */


/* 모달 스타일 */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.modal-content {
    position: relative;
    width: 90%;
    background-color: var(--quinary-color);
    border-radius: 8px;
    overflow: hidden;
}

.modal-content video {
    width: 100%;
    height: auto;
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    color: var(--text-color);
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.3s;
}

.modal-close:hover {
    color: var(--primary-color);
}

