/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(12, 27, 58, 0.6);
    backdrop-filter: blur(4px);
    z-index: 999;
    display: none;
    justify-content: center;
    align-items: center;
}

.modal-overlay.show {
    display: flex;
}

.modal-content {
    background: var(--white);
    width: 90%;
    max-width: 900px;
    height: 90vh;
    border-radius: var(--r-lg);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: var(--red-bg);
    color: var(--red-dark);
    border: 1px solid var(--red-border);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
}

.modal-close:hover {
    background: var(--red);
    color: #fff;
}

.modal-iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: var(--r-lg);
}