/* Additional animations for Dogymorbis */

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-10px); }
  60% { transform: translateY(-5px); }
}

@keyframes glow {
  0% { box-shadow: 0 0 5px 0 var(--color-gold); }
  50% { box-shadow: 0 0 15px 5px var(--color-gold); }
  100% { box-shadow: 0 0 5px 0 var(--color-gold); }
}

/* Example usage: apply to .bone-icon */
.bone-icon {
  animation: bounce 1.5s infinite ease-in-out;
}

.bone-icon.gold {
  animation: glow 2s infinite ease-in-out;
}
