/* All animations and transitions removed for instant updates */

/* Disable any keyframes */
@keyframes none {}

/* Card placement: instant, no movement */
#dealer .card,
#user-hand .card,
#user-split-hand .card {
	transform: none !important;
	animation: none !important;
	transition: none !important;
}

/* Flipped card: instant flip, no animation */
#dealer .card.flipped {
	transform: none !important;
	animation: none !important;
	transition: none !important;
}