/* =============================================================
   XP POPUP — ruhigere Variante (kein Mega-Glow)
   ============================================================= */
.xp-popup {
  position: fixed; z-index: 80; pointer-events: none;
  font-family: var(--font-display);
  font-size: 20px; color: var(--xp);
  text-shadow: 0 0 8px color-mix(in srgb, var(--xp) 50%, transparent);
  font-variant-numeric: tabular-nums;
  animation: float-up 1.1s var(--ease) forwards;
}
@keyframes float-up {
  0%   { transform: translateY(0) scale(1); opacity: 1; }
  40%  { transform: translateY(-30px) scale(1.1); opacity: 1; }
  100% { transform: translateY(-80px) scale(0.85); opacity: 0; }
}
