@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-24px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(24px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.94);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}
@keyframes winnerIn {
  from {
    opacity: 0;
    transform: translateX(-12px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes heroFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes glowPulse {
  0%,
  100% {
    box-shadow: 0 0 8px rgba(255, 216, 77, 0.3);
  }
  50% {
    box-shadow: 0 0 22px rgba(255, 216, 77, 0.7);
  }
}

.hero-block {
  animation: fadeIn 0.8s ease both;
}
.hero-badge {
  animation: slideInLeft 0.6s ease 0.1s both;
}
.hero-title {
  animation: fadeInUp 0.7s ease 0.15s both;
}
.hero-sub {
  animation: fadeInUp 0.7s ease 0.25s both;
}
.hero-stats {
  animation: fadeInUp 0.7s ease 0.35s both;
}
.hero-btns {
  animation: fadeInUp 0.7s ease 0.45s both;
}

.casino-card {
  animation: fadeInUp 0.5s ease both;
}
.casino-card:nth-child(1) {
  animation-delay: 0.05s;
}
.casino-card:nth-child(2) {
  animation-delay: 0.1s;
}
.casino-card:nth-child(3) {
  animation-delay: 0.15s;
}
.casino-card:nth-child(4) {
  animation-delay: 0.2s;
}
.casino-card:nth-child(5) {
  animation-delay: 0.25s;
}

.strategy-card {
  animation: scaleIn 0.5s ease both;
}
.strategy-card:nth-child(1) {
  animation-delay: 0.05s;
}
.strategy-card:nth-child(2) {
  animation-delay: 0.1s;
}
.strategy-card:nth-child(3) {
  animation-delay: 0.15s;
}
.strategy-card:nth-child(4) {
  animation-delay: 0.2s;
}

.review-card {
  animation: fadeInUp 0.5s ease both;
}

.casino-card--top1 {
  animation: glowPulse 3s ease-in-out infinite;
}
.sticky-widget {
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn {
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.12);
  opacity: 0;
  transition: opacity 0.2s;
  border-radius: inherit;
}
.btn:active::after {
  opacity: 1;
}
.faq-item {
  transition: border-color 0.2s;
}
.faq-item:has(.faq-question[aria-expanded="true"]) {
  border-color: rgba(255, 216, 77, 0.25);
}
.toc-link {
  transition:
    background 0.2s,
    border-color 0.2s,
    color 0.2s,
    transform 0.15s;
}
.toc-link:hover {
  transform: translateY(-1px);
}

.winners-table tr {
  animation: winnerIn 0.3s ease both;
}
.winners-table tr:nth-child(1) {
  animation-delay: 0.05s;
}
.winners-table tr:nth-child(2) {
  animation-delay: 0.1s;
}
.winners-table tr:nth-child(3) {
  animation-delay: 0.12s;
}
.winners-table tr:nth-child(4) {
  animation-delay: 0.14s;
}
.winners-table tr:nth-child(5) {
  animation-delay: 0.16s;
}

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