.wa-rotator-modal {
    position: fixed;
    z-index: 999999;
    top: 0; left: 0;
    width: 100%; height: 100%;
    backdrop-filter: blur(6px);
    background: rgba(0, 0, 0, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
}

.wa-rotator-modal-content {
    width: 95%;
    max-width: 410px;
    background: #ffffff;
    padding: 25px 30px;
    border-radius: 18px;
    box-shadow: 0 15px 45px rgba(0,0,0,0.25);
    animation: popupFade 0.25s ease-out;
    position: relative;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

@keyframes popupFade {
    from { opacity: 0; transform: translateY(20px) scale(.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.wa-rotator-close {
    position: absolute;
    top: 10px;
    right: 12px;
    font-size: 22px;
    color: #777;
    cursor: pointer;
}

.wa-rotator-modal-content h3 {
    margin-top: 0;
    margin-bottom: 15px;
    color: #128C7E;
    font-size: 20px;
    font-weight: 600;
}

#wa-rotator-form input[type="text"],
#wa-rotator-form input[type="email"] {
    width: 100%;
    padding: 11px 14px;
    margin-bottom: 12px;
    border-radius: 8px;
    border: 1.5px solid #ddd;
    font-size: 15px;
    box-sizing: border-box;
}

#wa-rotator-form button[type="submit"] {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    background: #25D366;
    border: none;
    color: white;
    font-size: 17px;
    cursor: pointer;
    transition: 0.2s;
}

#wa-rotator-form button[type="submit"]:hover {
    background: #1ebe5d;
}
