/* =========================================
   Splash Notifications
   ========================================= */
.splash-notification,
.splash-toast {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: rgba(129, 140, 248, 0.95);
    color: #fff;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    z-index: 99999;
    box-shadow: 0 4px 20px rgba(129, 140, 248, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.splash-notification.show,
.splash-toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

@keyframes splashFadeIn {
    from {
        opacity: 0;
        transform: translate(-50%, -20px);
    }

    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

@keyframes splashFadeOut {
    from {
        opacity: 1;
        transform: translate(-50%, 0);
    }

    to {
        opacity: 0;
        transform: translate(-50%, -20px);
    }
}
