#nova-check-age-overlay.nova-check-age-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999999;
    background: rgba(0, 0, 0, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

#nova-check-age-overlay.nova-check-age-hidden {
    display: none;
}

.nova-check-age-modal {
    width: 100%;
    max-width: 520px;
    background: #ffffff;
    border-radius: 14px;
    padding: 30px 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    text-align: center;
}

.nova-check-age-modal h2 {
    margin: 0 0 16px;
    font-size: 28px;
    line-height: 1.2;
    color: #1f1f1f;
}

.nova-check-age-modal p {
    margin: 0 0 12px;
    font-size: 16px;
    line-height: 1.6;
    color: #444444;
}

.nova-check-age-minimum {
    font-weight: 700;
    color: #7a1027;
}

.nova-check-age-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 24px;
}

.nova-check-age-btn {
    border: none;
    border-radius: 8px;
    padding: 12px 18px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.nova-check-age-btn:hover {
    opacity: 0.92;
    transform: translateY(-1px);
}

.nova-check-age-btn-yes {
    background: #7a1027;
    color: #ffffff;
}

.nova-check-age-btn-no {
    background: #e9e9e9;
    color: #222222;
}