/* =========================================================
   ANIMATIONS.CSS - CONTINUOUS & SMOOTH 60FPS FX
   ========================================================= */

@keyframes rotateAura {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes orbFloat {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, -30px) scale(1.08); }
  100% { transform: translate(-30px, 40px) scale(0.95); }
}

@keyframes neonBreathe {
  0%, 100% {
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.4), 0 0 30px rgba(0, 240, 255, 0.2);
    border-color: rgba(0, 240, 255, 0.5);
  }
  50% {
    box-shadow: 0 0 25px rgba(0, 240, 255, 0.7), 0 0 45px rgba(0, 240, 255, 0.35);
    border-color: rgba(0, 240, 255, 0.85);
  }
}

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

@keyframes pulseScale {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes slideInRight {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

@keyframes shimmerGlow {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* Helper Animation Classes */
.fx-breathe {
  animation: neonBreathe 3s ease-in-out infinite;
}

.fx-levitate {
  animation: levitate 4s ease-in-out infinite;
}

.fx-pulse {
  animation: pulseScale 2s ease-in-out infinite;
}

/* Magnetic / Click Ripple FX */
.ripple-fx {
  position: relative;
  overflow: hidden;
}
.ripple-fx .ripple-wave {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  transform: scale(0);
  animation: rippleAnim 0.6s linear;
  pointer-events: none;
}
@keyframes rippleAnim {
  to {
    transform: scale(4);
    opacity: 0;
  }
}
