/* === ANIMAȚII IMPRESIONANTE === */

/* Fade effects */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Slide animations */
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(60px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-60px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Scale animations */
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes scaleUp {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Rotate animations */
@keyframes spinIn {
  from {
    opacity: 0;
    transform: rotate(-180deg) scale(0);
  }
  to {
    opacity: 1;
    transform: rotate(0) scale(1);
  }
}

@keyframes rotate360 {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Glow animations */
@keyframes glow {
  0%, 100% { box-shadow: 0 0 5px rgba(0,240,255,0.5), inset 0 0 5px rgba(0,240,255,0.1); }
  50% { box-shadow: 0 0 20px rgba(0,240,255,0.8), inset 0 0 10px rgba(0,240,255,0.3); }
}

@keyframes glowPulse {
  0% { 
    box-shadow: 0 0 5px var(--accent-cyan),
                0 0 10px var(--accent-cyan),
                0 0 15px var(--accent-cyan);
  }
  50% {
    box-shadow: 0 0 10px var(--accent-cyan),
                0 0 20px var(--accent-cyan),
                0 0 30px var(--accent-cyan),
                0 0 40px var(--accent-cyan);
  }
  100% {
    box-shadow: 0 0 5px var(--accent-cyan),
                0 0 10px var(--accent-cyan),
                0 0 15px var(--accent-cyan);
  }
}

/* Float animation */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

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

/* Bounce animations */
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

@keyframes bounceIn {
  0% { opacity: 0; transform: scale(0); }
  50% { opacity: 1; transform: scale(1.1); }
  100% { opacity: 1; transform: scale(1); }
}

/* Shimmer animation */
@keyframes shimmer {
  0% { background-position: -1000px 0; }
  100% { background-position: 1000px 0; }
}

/* Gradient shift */
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Neon flicker */
@keyframes neonFlicker {
  0%, 18%, 22%, 25%, 53%, 57%, 100% {
    text-shadow: 0 0 10px rgba(0,240,255,0.8),
                 0 0 20px rgba(0,240,255,0.5),
                 0 0 30px rgba(255,215,0,0.3);
  }
  20%, 24%, 55% {
    text-shadow: 0 0 5px rgba(0,240,255,0.4),
                 0 0 10px rgba(0,240,255,0.2);
  }
}

/* Wave animation */
@keyframes wave {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(5deg); }
  75% { transform: rotate(-5deg); }
}

/* Utility animation classes */
.animate-fadeIn {
  animation: fadeIn 0.6s ease-out;
}

.animate-fadeInUp {
  animation: fadeInUp 0.8s ease-out;
}

.animate-slideInUp {
  animation: slideInUp 0.8s ease-out;
}

.animate-slideInDown {
  animation: slideInDown 0.8s ease-out;
}

.animate-scaleIn {
  animation: scaleIn 0.6s ease-out;
}

.animate-scaleUp {
  animation: scaleUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.animate-spinIn {
  animation: spinIn 0.8s ease-out;
}

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

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

.animate-bounce {
  animation: bounce 2s infinite;
}

.animate-bounceIn {
  animation: bounceIn 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.animate-glow {
  animation: glow 2s ease-in-out infinite;
}

.animate-glowPulse {
  animation: glowPulse 2s ease-in-out infinite;
}

.animate-neonFlicker {
  animation: neonFlicker 3s infinite;
  font-weight: bold;
}

.animate-wave {
  animation: wave 1s ease-in-out infinite;
  transform-origin: center center;
}

.animate-rotate {
  animation: rotate360 2s linear infinite;
}

/* Stagger animations for lists */
.stagger-item {
  opacity: 0;
  animation: fadeInUp 0.6s ease-out forwards;
}

.stagger-item:nth-child(1) { animation-delay: 0.1s; }
.stagger-item:nth-child(2) { animation-delay: 0.2s; }
.stagger-item:nth-child(3) { animation-delay: 0.3s; }
.stagger-item:nth-child(4) { animation-delay: 0.4s; }
.stagger-item:nth-child(5) { animation-delay: 0.5s; }

/* Text reveal animation */
@keyframes textReveal {
  from { 
    opacity: 0;
    clip-path: inset(0 100% 0 0);
  }
  to {
    opacity: 1;
    clip-path: inset(0 0 0 0);
  }
}

.animate-textReveal {
  animation: textReveal 1s ease-out forwards;
}

/* Parallax effect */
@keyframes parallax {
  from { transform: translateY(0px); }
  to { transform: translateY(50px); }
}