/* ============================================================
   RAWR BEAUTY — Micro-Animations (animations.css)
   ============================================================ */

@keyframes rawr-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes rawr-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(0.98); }
}

@keyframes rawr-fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.rawr-animate-float {
  animation: rawr-float 4s ease-in-out infinite;
}

.rawr-animate-fade {
  animation: rawr-fade-up 0.6s ease forwards;
}

.card-glow { animation: rawr-float 4s ease-in-out infinite; }
.card-lash { animation: rawr-float 4.5s ease-in-out infinite 0.5s; }
.card-laser { animation: rawr-float 5s ease-in-out infinite 1s; }
