.newsletter-modal{
    display:none;
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.72);
    backdrop-filter:blur(8px);
    justify-content:center;
    align-items:center;
    z-index:9999;
}

.newsletter-content{
    width:520px;
    max-width:92%;
    background:linear-gradient(135deg,#33426f,#222d48);
    border-radius:24px;
    padding:40px;
    position:relative;
    color:#fff;
    box-shadow:0 30px 80px rgba(0,0,0,.45);
}

.newsletter-close{
    position:absolute;
    right:20px;
    top:16px;
    font-size:34px;
    cursor:pointer;
}

.newsletter-icon{
    width:72px;
    height:72px;
    margin:0 auto 18px;
    border-radius:50%;
    background:rgba(37,99,235,.18);
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:34px;
}

.newsletter-content h2{
    text-align:center;
    font-size:30px;
    margin-bottom:10px;
}

.newsletter-desc{
    text-align:center;
    color:#d1d5db;
    margin-bottom:24px;
}

.newsletter-note{
    display:flex;
    gap:14px;
    padding:16px;
    margin-bottom:24px;
    border-radius:14px;
    background:rgba(255,255,255,.06);
}

.newsletter-note-icon{
    font-size:22px;
}

.newsletter-note-text strong{
    display:block;
    margin-bottom:4px;
}

.newsletter-note-text span{
    color:#cbd5e1;
    font-size:14px;
}

.newsletter-content input{
    width:100%;
    margin-bottom:18px;
}

.newsletter-content button{
    width:100%;
}