/* Flying Emoji */
.flying-emoji {
  position: fixed;
  font-size: 2.5rem;
  z-index: 9999;
  pointer-events: none;
  will-change: transform, opacity;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.15));
  top: 0;
  left: 0;
}

/* Caret Blink */
.caret { animation: blink 1s step-end infinite; }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }
