.email-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.65);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
}

.email-popup-overlay.show {
    display: flex;
}

.email-popup {
    width: 100%;
    max-width: 460px;
    background: white;
    border-radius: 28px;
    padding: 36px 28px;
    text-align: center;
    position: relative;
    box-shadow: 0 25px 70px rgba(0,0,0,0.35);
}

.email-popup-close {
    position: absolute;
    top: 14px;
    right: 16px;
    border: none;
    background: #f3f4f6;
    color: #111827;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
}

.email-popup-badge {
    display: inline-block;
    background: linear-gradient(135deg, #002F5B, #0A5EA8, #3FA7D6, #A7D8F5);
    color: #06220f;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 16px;
}

.email-popup h2 {
    margin: 0 0 12px;
    color: #0f172a;
    font-size: 30px;
    line-height: 1.15;
}

.email-popup p {
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 22px;
}

.email-popup-form {
    display: flex;
    gap: 10px;
    flex-direction: column;
}

.email-popup-form input {
    padding: 15px 16px;
    border-radius: 14px;
    border: 1px solid #d1d5db;
    font-size: 16px;
}

.email-popup-form button {
    padding: 15px 16px;
    border-radius: 14px;
    border: none;
    background: linear-gradient(135deg, #002F5B, #0A5EA8, #3FA7D6, #A7D8F5);
    color: white;
    font-weight: 800;
    cursor: pointer;
}

.email-popup small {
    display: block;
    margin-top: 14px;
    color: #6b7280;
}