.ez-update-overlay {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px 16px;
    background:
        radial-gradient(circle at 15% 15%, rgba(0, 126, 122, 0.09), transparent 28%),
        radial-gradient(circle at 85% 10%, rgba(192, 49, 95, 0.08), transparent 26%),
        #f2f5f7;
}

.ez-update-overlay.is-visible {
    display: flex;
}

.ez-update-card {
    width: 100%;
    max-width: 760px;
    padding: 28px 24px;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 24px 48px rgba(25, 35, 63, 0.14);
    text-align: center;
    font-family: Arial, sans-serif;
    color: #1d1d1b;
}

.ez-update-illustration {
    width: min(100%, 420px);
    height: auto;
    margin: 0 auto 18px;
    display: block;
}

.ez-update-title {
    margin: 0 0 10px;
    font-size: clamp(1.7rem, 3.6vw, 2.2rem);
    font-weight: 700;
    line-height: 1.2;
    color: #1f2937;
}

.ez-update-subtitle {
    margin: 0 auto 18px;
    max-width: 620px;
    font-size: clamp(0.95rem, 2vw, 1.05rem);
    color: #3e4a59;
    line-height: 1.5;
}

.ez-update-alert {
    margin: 0 auto 22px;
    max-width: 660px;
    background: #fbf2db;
    border-radius: 12px;
    padding: 14px 16px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    text-align: left;
}

.ez-update-alert-icon {
    color: #2f3a46;
    font-size: 16px;
    line-height: 1.2;
    margin-top: 2px;
}

.ez-update-alert p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.45;
    color: #2f3a46;
}

.ez-update-primary {
    width: min(100%, 380px);
    border: 0;
    border-radius: 10px;
    padding: 14px 18px;
    background: #007e7a;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: filter 0.2s ease;
}

.ez-update-primary:hover {
    filter: brightness(0.93);
}

.ez-update-link {
    margin-top: 14px;
    border: 0;
    background: transparent;
    color: #007e7a;
    font-size: 0.97rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: underline;
}

@media (max-width: 640px) {
    .ez-update-card {
        border-radius: 14px;
        padding: 22px 16px;
    }

    .ez-update-alert {
        padding: 12px;
        gap: 8px;
    }
}
