@keyframes pixelFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}
@keyframes pixelGlow {
  0%, 100% { filter: drop-shadow(0 0 6px rgba(255,216,36,0.6)); }
  50% { filter: drop-shadow(0 0 16px rgba(255,216,36,1)); }
}
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes tntBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}
@keyframes coinSpin {
  from { transform: rotateY(0deg); }
  to { transform: rotateY(360deg); }
}
@keyframes slideInDown {
  from { opacity: 0; transform: translateY(-16px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes borderPulse {
  0%, 100% { border-color: rgba(255,216,36,0.25); }
  50% { border-color: rgba(255,216,36,0.7); }
}

.anim-float { animation: pixelFloat 3.5s ease-in-out infinite; }
.anim-glow { animation: pixelGlow 2s ease-in-out infinite; }
.anim-blink { animation: tntBlink 1.2s ease-in-out infinite; }

.btn--yellow:hover,
.btn--green:hover {
  animation: none;
}

.hero-eyebrow { animation: slideInDown 0.5s ease both; }

.game-info-table { animation: borderPulse 3s ease-in-out infinite; }

.feature-tile-icon svg {
  transition: transform 0.25s ease;
}
.feature-tile:hover .feature-tile-icon svg {
  transform: scale(1.18) rotate(-6deg);
}

.demo-block {
  transition: box-shadow 0.3s ease;
}
.demo-block:hover {
  box-shadow: 0 8px 40px rgba(255,216,36,0.12), var(--shadow-card);
}

.faq-item {
  transition: box-shadow 0.22s ease, transform 0.22s ease;
}
.faq-item:hover {
  transform: translateX(3px);
}

.author-photo {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.author-photo:hover {
  transform: scale(1.06);
  box-shadow: 0 0 0 6px rgba(255,216,36,0.2);
}

.trust-badge {
  transition: background 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}
.trust-badge:hover {
  background: rgba(255,216,36,0.1);
  border-color: rgba(255,216,36,0.3);
  color: var(--clr-btn-y);
}

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