#in-notifiche-popup {
    position: fixed;
    bottom: 20px;
    right: 20px;
    max-width: 380px;
    z-index: 99999;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
#in-notifiche-popup.in-notifiche-hidden {
    display: none;
}
.in-notifiche-inner {
    position: relative;
    background: #050505;
    background: radial-gradient(circle at top left, #222 0, #050505 55%);
    color: #f5f5f5;
    border-radius: 16px;
    padding: 18px 18px 20px;
    box-shadow: 0 14px 34px rgba(0,0,0,0.6);
    border: 1px solid #333;
    overflow: hidden;
}
.in-notifiche-close {
    position: absolute;
    top: 8px;
    right: 10px;
    border: none;
    background: transparent;
    color: #ffffff;
    font-size: 18px;
    cursor: pointer;
    line-height: 1;
    opacity: 0.7;
}
.in-notifiche-close:hover {
    opacity: 1;
    transform: scale(1.05);
}
.in-notifiche-header {
    display: flex;
    align-items: center;
    margin-bottom: 14px;
}
.in-notifiche-logo .in-logo-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 6px;
    background: #ffffff;
    color: #000000;
    font-weight: 800;
    font-size: 20px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: 1px solid #000;
}
.in-notifiche-title {
    margin-left: 12px;
}
.in-notifiche-title h3 {
    margin: 0;
    font-size: 16px;
    color: #ffffff;
}
.in-notifiche-title p {
    margin: 4px 0 0;
    font-size: 13px;
    color: #e0e0e0;
}
.in-notifiche-form {
    margin-top: 12px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
}
.in-notifiche-email {
    flex: 1 1 auto;
    min-width: 170px;
    padding: 9px 11px;
    border-radius: 999px;
    border: 1px solid #555;
    background: #050505;
    color: #ffffff;
    font-size: 13px;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.in-notifiche-email::placeholder {
    color: #8a8a8a;
}
.in-notifiche-email:focus {
    border-color: #ffffff;
    box-shadow: 0 0 0 1px #ffffff20;
    background: #0b0b0b;
}
.in-notifiche-submit {
    flex: 0 0 auto;
    padding: 9px 16px;
    border-radius: 999px;
    border: 1px solid #ffffff;
    background: #ffffff;
    color: #000000;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    transition: background 0.15s ease, color 0.15s ease, transform 0.1s ease, box-shadow 0.15s ease;
}
.in-notifiche-submit-email {
    margin-right: 4px;
}
.in-notifiche-submit-push {
    background: transparent;
    color: #ffffff;
}
.in-notifiche-submit:hover {
    background: #000000;
    color: #ffffff;
    box-shadow: 0 6px 18px rgba(0,0,0,0.7);
    transform: translateY(-1px);
}
.in-notifiche-note {
    margin-top: 6px;
    font-size: 11px;
    color: #aaaaaa;
}
.in-notifiche-message {
    margin-top: 10px;
    font-size: 13px;
}
@media (max-width: 600px) {
    #in-notifiche-popup {
        left: 10px;
        right: 10px;
        bottom: 12px;
    }
}
