/* Notification Popup */
.notif-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
}

.notif-popup-inner {
    background: #1a1b2e;
    border: 1px solid rgba(167, 139, 250, 0.2);
    border-radius: 16px;
    padding: 32px 28px 28px;
    max-width: 420px;
    width: 90%;
    position: relative;
    box-shadow: 0 0 60px rgba(167, 139, 250, 0.15);
}

.notif-popup-close {
    position: absolute;
    top: 10px;
    right: 14px;
    font-size: 22px;
    color: #888;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
}

.notif-popup-close:hover {
    color: #fff;
}

.notif-popup-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #a78bfa;
    margin-bottom: 12px;
}

.notif-popup-msg {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #ccc;
}

.notif-popup-msg a {
    color: #a78bfa;
    text-decoration: underline;
}
