/* Entry Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}
@keyframes typing {
  from { width: 0; }
  to { width: 100%; }
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* Staggered reveals */
.animate-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }

/* Hero specific */
.hero-content { animation: fadeInUp 0.7s ease-out; }
.hero-demo { animation: fadeIn 0.8s ease-out 0.3s both; }

/* Context menu animation sequence */
.ctx-menu { animation: menuSlideIn 0.35s cubic-bezier(0.16, 1, 0.3, 1); }
.ctx-submenu { animation: slideInRight 0.25s cubic-bezier(0.16, 1, 0.3, 1); }

/* Cursor blink for demo */
.cursor-blink {
  animation: blink 1s step-start infinite;
}

/* Glow pulse for CTA */
.glow-pulse {
  animation: glowPulse 2s ease-in-out infinite;
}
@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 20px rgba(249, 115, 22, 0.2); }
  50% { box-shadow: 0 0 30px rgba(249, 115, 22, 0.4); }
}

/* Score bar animation */
.score-bar-fill {
  width: 0;
}
.score-bar-fill.animated {
  transition: width 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
