
    /* Optional bounce animation if Tailwind is not available
  @keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
  }
  .animate-bounce {
    animation: bounce 1s infinite;
  } */

    /* Blinking animation */
  @keyframes svelte-1bwud0q-blink {
    0%, 50%, 100% { opacity: 1; }
    25%, 75% { opacity: 0.5; }
  }

  .animate-blink.svelte-1bwud0q {
    animation: svelte-1bwud0q-blink 3s step-start infinite;
  }
