/* Плавные переходы для игровых состояний */
.game-area {
    transition: all 0.3s ease-in-out;
}

/* Анимация появления карточек игроков */
.player-card {
    transition: all 0.2s ease-in-out;
}

.player-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Стили для победившего ответа */
.winner-answer {
    background-color: #fbbf24 !important;
    border: 2px solid #f59e0b !important;
    box-shadow: 0 10px 15px -3px rgba(251, 191, 36, 0.3) !important;
    color: black !important;
    transition: all 0.3s ease-in-out;
}

/* Стили для значка трофея */
.trophy-badge {
    position: absolute;
    top: -8px;
    left: -8px;
    z-index: 10;
    background-color: #fbbf24;
    color: #78350f;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 2px solid #f59e0b;
    transition: transform 0.3s ease-in-out;
}

