/* Long-strip reel motion adapted from the imported Base44 animation flow. */
.pra-motion-strip{display:block;height:auto;will-change:transform}
.pra-motion-strip .pra-symbol{height:var(--pra-cell);min-height:var(--pra-cell)}
.pra-reel.is-spinning .pra-motion-strip{animation:pra-reel-loop var(--pra-speed) linear infinite;filter:blur(1.6px) saturate(1.12)}
.pra-reel.is-spinning:nth-child(2n) .pra-motion-strip{animation-delay:-.17s}
.pra-reel.is-spinning:nth-child(3n) .pra-motion-strip{animation-delay:-.31s}
.pra-reel.is-braking .pra-motion-strip{filter:none}
.pra-reel.is-settled{animation:pra-reel-settle .22s cubic-bezier(.2,.8,.3,1)}
@keyframes pra-reel-loop{from{transform:translateY(var(--pra-loop))}to{transform:translateY(0)}}
@keyframes pra-reel-settle{0%{transform:translateY(-5px)}55%{transform:translateY(3px)}100%{transform:translateY(0)}}
@media(prefers-reduced-motion:reduce){.pra-reel.is-spinning .pra-motion-strip{animation-duration:1s;filter:none}.pra-reel.is-settled{animation:none}}
