@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-24px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(24px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes goldGlow {
  0%,
  100% {
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.2);
  }
  50% {
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.4);
  }
}
@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
@keyframes countUp {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes borderPulse {
  0%,
  100% {
    border-color: rgba(255, 215, 0, 0.2);
  }
  50% {
    border-color: rgba(255, 215, 0, 0.5);
  }
}

.anim-fade-up {
  animation: fadeInUp 0.6s ease both;
}
.anim-fade-left {
  animation: fadeInLeft 0.6s ease both;
}
.anim-fade-right {
  animation: fadeInRight 0.6s ease both;
}
.anim-delay-1 {
  animation-delay: 0.1s;
}
.anim-delay-2 {
  animation-delay: 0.2s;
}
.anim-delay-3 {
  animation-delay: 0.3s;
}
.anim-delay-4 {
  animation-delay: 0.4s;
}
.anim-delay-5 {
  animation-delay: 0.5s;
}

.casino-card.rank-1 {
  animation: borderPulse 3s ease-in-out infinite;
}

.btn--gold,
.btn--red {
  position: relative;
  overflow: hidden;
}
.btn--gold::after,
.btn--red::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.18),
    transparent
  );
  transition: left 0.4s ease;
}
.btn--gold:hover::after,
.btn--red:hover::after {
  left: 100%;
}

.hero-slide.active .hero-title {
  animation: fadeInUp 0.6s ease both 0.1s;
}
.hero-slide.active .hero-desc {
  animation: fadeInUp 0.6s ease both 0.25s;
}
.hero-slide.active .hero-btns {
  animation: fadeInUp 0.6s ease both 0.4s;
}
.hero-slide.active .hero-badge {
  animation: fadeInUp 0.6s ease both 0s;
}

.strategy-card:hover .strategy-img {
  transform: scale(1.04);
}
.strategy-img {
  transition: transform 0.4s ease;
}

.sticky-widget.show-pulse {
  animation: goldGlow 2.5s ease-in-out infinite;
}

.section-title,
.section-subtitle {
  animation: fadeInUp 0.5s ease both;
}
