

@media (prefers-reduced-motion: no-preference) {

  .rb-fx-touch .tile[data-fx~='tilt'],
  .rb-fx-touch .game[data-fx~='tilt'] {
    animation: mfx-drift 7s ease-in-out infinite;
    will-change: transform;
  }
  .rb-fx-touch .rail > *:nth-child(2),
  .rb-fx-touch .games > *:nth-child(even) { animation-delay: -2.3s }
  .rb-fx-touch .rail > *:nth-child(3),
  .rb-fx-touch .games > *:nth-child(3n) { animation-delay: -4.6s }

  @keyframes mfx-drift {
    0%, 100% { transform: perspective(900px) rotateY(-4deg) rotateX(1deg) translateY(0) }
    50%      { transform: perspective(900px) rotateY(4deg) rotateX(-1.5deg) translateY(-5px) }
  }

  .rb-fx-touch .tier[data-fx~='spotlight'] {
    animation: mfx-glow 4.2s ease-in-out infinite;
  }
  .rb-fx-touch .tier:nth-child(2) { animation-delay: -1s }
  .rb-fx-touch .tier:nth-child(3) { animation-delay: -2s }
  .rb-fx-touch .tier:nth-child(4) { animation-delay: -3s }

  @keyframes mfx-glow {
    0%, 100% { box-shadow: 0 0 0 1px rgba(245, 196, 81, .18), 0 6px 22px rgba(0, 0, 0, .45) }
    50%      { box-shadow: 0 0 0 1px rgba(245, 196, 81, .55), 0 10px 34px rgba(217, 154, 43, .35) }
  }

  .rb-fx-touch .step { animation: mfx-lift 6.5s ease-in-out infinite }
  .rb-fx-touch .step:nth-child(2) { animation-delay: -2.1s }
  .rb-fx-touch .step:nth-child(3) { animation-delay: -4.2s }
  @keyframes mfx-lift {
    0%, 100% { transform: translateY(0) }
    50%      { transform: translateY(-6px) }
  }

  .rb-fx-touch .btn-gold[data-fx~='magnet'],
  .rb-fx-touch .cta-star[data-fx~='magnet'] {
    animation: mfx-pulse 2.8s ease-in-out infinite;
  }
  .rb-fx-touch .cta-star[data-fx~='magnet'] { animation-delay: -1.4s }
  @keyframes mfx-pulse {
    0%, 100% { transform: translateY(0) scale(1) }
    50%      { transform: translateY(-2px) scale(1.022) }
  }

  .rb-fx-touch .jp-amt strong {
    background-size: 220% auto;
    animation: mfx-goldflow 3.6s linear infinite;
  }
  @keyframes mfx-goldflow {
    to { background-position: 220% center }
  }

  .rb-fx-touch .jackpot { animation: mfx-jpedge 4s ease-in-out infinite }
  @keyframes mfx-jpedge {
    0%, 100% { border-color: rgba(245, 196, 81, .26) }
    50%      { border-color: rgba(245, 196, 81, .62) }
  }

  .rb-fx-touch .prose article { animation: mfx-edge 7.5s ease-in-out infinite }
  .rb-fx-touch .prose article:nth-child(even) { animation-delay: -3.5s }
  @keyframes mfx-edge {
    0%, 100% { border-color: rgba(245, 196, 81, .13) }
    50%      { border-color: rgba(245, 196, 81, .42) }
  }
}

.rb-fx-touch [data-fx~='marquee'] {
  -webkit-mask-image: none;
  mask-image: none;
}

.provs.provs-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  padding: 2px 0 0;
  overflow: visible;
  -webkit-mask-image: none;
  mask-image: none;
}
.provs.provs-grid img {
  flex: 0 0 calc((100% - 16px) / 3);
  
  min-width: 0;
  max-width: calc((100% - 16px) / 3);
  width: auto;
  height: auto;
  aspect-ratio: 2.9 / 1;
  object-fit: contain;
  padding: 6px 8px;
  border-radius: 9px;
  background: linear-gradient(180deg, #f4edda, #e2d5b8);
  border: 1px solid rgba(245, 196, 81, .32);
  box-shadow: 0 2px 7px rgba(0, 0, 0, .32);
}
@media (min-width: 431px) and (max-width: 900px) {
  .provs.provs-grid img { flex-basis: calc((100% - 24px) / 4) }
}

.wins.wins-static {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 100%;
  overflow: visible;
  -webkit-mask-image: none;
  mask-image: none;
  padding-top: 2px;
}
.wins.wins-static i {
  font-size: .8rem;
  white-space: normal;
}
