/* 
 * LSPD Premium Notifications
 * Glassmorphism Update Toast
 */

#hud-notification-container {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 16px;
    pointer-events: none;
}

.hud-notification {
    width: 380px;
    background: rgba(16, 24, 40, 0.9);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    pointer-events: auto;
    animation: notificationSlideIn 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    position: relative;
}

@keyframes notificationSlideIn {
    from { transform: translateX(100%) scale(0.9); opacity: 0; }
    to { transform: translateX(0) scale(1); opacity: 1; }
}

.hud-notification.fade-out {
    animation: notificationFadeOut 0.4s ease forwards;
}

@keyframes notificationFadeOut {
    to { transform: translateX(20px); opacity: 0; }
}

.notif-close {
    position: absolute;
    top: 16px;
    right: 16px;
    color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: color 0.2s;
    font-size: 1.1rem;
}

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

.notif-header {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.notif-icon-box {
    width: 48px;
    height: 48px;
    background: rgba(26, 117, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a75ff;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.notif-icon-box.success {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.notif-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.notif-title {
    color: #fff;
    font-weight: 700;
    font-size: 1.05rem;
}

.notif-desc {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    line-height: 1.5;
}

.notif-footer {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.notif-btn {
    padding: 10px 20px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.notif-btn.secondary {
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.6);
}

.notif-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.notif-btn.primary {
    background: #1a75ff;
    color: #fff;
    box-shadow: 0 4px 12px rgba(26, 117, 255, 0.3);
}

.notif-btn.primary:hover {
    background: #0066ff;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(26, 117, 255, 0.4);
}
