.anim-in {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

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

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

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

.hero-content h1 {
  animation: slideUp 0.7s ease both;
}
.hero-content p {
  animation: slideUp 0.7s 0.15s ease both;
}
.hero-content .btn {
  animation: fadeInScale 0.5s 0.3s ease both;
}

.btn--reg,
.btn--login {
  position: relative;
  overflow: hidden;
}
.btn--reg::after,
.btn--login::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(255, 255, 255, 0.22) 50%,
    transparent 60%
  );
  background-size: 200% auto;
  animation: shimmer 2.8s linear infinite;
}

@keyframes glow {
  0%,
  100% {
    box-shadow: 0 0 8px rgba(245, 197, 66, 0.3);
  }
  50% {
    box-shadow: 0 0 22px rgba(245, 197, 66, 0.6);
  }
}

.sticky-widget {
  animation: slideUp 0.5s ease both;
}

.promo-section {
  animation: fadeInScale 0.6s ease both;
}

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