/* Анимация победы */
@keyframes flashWin {
    0%, 100% { background-color: yellow; }
    50% { background-color: orangered; }
}

.cell.win {
    animation: flashWin 0.5s ease-in-out infinite;
}

/* Анимация неверного хода */
@keyframes flashRed {
    0%, 100% { background-color: #bbb; }
    50% { background-color: yellow; }
}

.cell.invalid {
    animation: flashRed 0.5s ease-in-out 2;
}

/* Анимация плавного передвижения */
.cell.moving {
    transition: transform 0.2s linear;
}
