@keyframes float-up {
  0% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateY(-100px) scale(1.2);
    opacity: 0;
  }
}

.floating-emoji {
  position: fixed;
  pointer-events: none;
  animation: float-up 1s ease-out forwards;
  z-index: 50;
}
