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

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

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

@keyframes shimmer {
  0% { background-position: -1000px 0; }
  100% { background-position: 1000px 0; }
}

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

@keyframes glow-pulse {
  0% { box-shadow: 0 0 5px rgba(201, 168, 76, 0.2); }
  50% { box-shadow: 0 0 20px rgba(201, 168, 76, 0.6); }
  100% { box-shadow: 0 0 5px rgba(201, 168, 76, 0.2); }
}

@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.animate-fade-in-up {
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

.animate-fade-in {
  opacity: 0;
  animation: fadeIn 0.6s ease forwards;
}

[data-animate] {
  opacity: 0;
}

[data-animate].animated {
  animation: fadeInUp 0.6s ease forwards;
}

.stagger-children [data-animate] {
  animation-delay: calc(var(--stagger, 0) * 100ms);
}

.stagger-children [data-animate]:nth-child(1) { --stagger: 1; }
.stagger-children [data-animate]:nth-child(2) { --stagger: 2; }
.stagger-children [data-animate]:nth-child(3) { --stagger: 3; }
.stagger-children [data-animate]:nth-child(4) { --stagger: 4; }
.stagger-children [data-animate]:nth-child(5) { --stagger: 5; }
.stagger-children [data-animate]:nth-child(6) { --stagger: 6; }

.shimmer-gold {
  position: relative;
  overflow: hidden;
}

.shimmer-gold::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.2), transparent);
  animation: shimmer 2s infinite linear;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}
