/* One wooden mounting surface replaces the two lower green panels. */
.roulette-connected-table .roulette-console:after{border-color:#98744b80;background:linear-gradient(140deg,#4b3529,#36281f 55%,#694a32);box-shadow:inset 0 0 16px #0003}
.roulette-connected-table .wheel-zone:before{border:0;background:none;box-shadow:none}

/* Enter, hold, and fade out within the original 1.2-second lifetime.
   Keep .visible through the exit so the game-centered coordinates stay put. */
#win-notice{transition:none}
#win-notice.visible{animation:result-notice-lifetime var(--notice-duration,1200ms) linear both}
@keyframes result-notice-lifetime{
 0%{opacity:0;transform:translate(-50%,-50%) scale(.88);animation-timing-function:ease-out}
 13.333%,75%{opacity:1;transform:translate(-50%,-50%) scale(1);animation-timing-function:ease-in-out}
 100%{opacity:0;transform:translate(-50%,-50%) scale(.96)}
}
@media(prefers-reduced-motion:reduce){
 #win-notice.visible{animation-name:result-notice-fade}
 @keyframes result-notice-fade{0%,75%{opacity:1}100%{opacity:0}}
}
