.gated-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    max-height: 100vh;
    overflow-y: auto;
}

.gated-modal.active {
    display: flex;
}

.gated-modal-container {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
    margin: auto;
}

.gated-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.gated-modal-title {
    color: #003d79;
    font-size: 20px;
    font-weight: bold;
}


.gated-modal-close {
    cursor: pointer;
}