/* ── Notification Toast ── */
#notif {
  position: absolute;
  top: 14px; right: 14px;
  background: rgba(10, 10, 28, 0.93);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 10px 14px;
  z-index: 9998;
  display: none;
  max-width: 220px;
  animation: slideInNotif 0.25s ease;
}

@keyframes slideInNotif {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.notif-title { font-size: 10px; color: rgba(255,255,255,0.28); margin-bottom: 2px; }
#nmsg        { font-size: 12px; color: rgba(255,255,255,0.9); }