#jogo-decisao { width: 100%; max-width: 500px; }
.recorde { margin-bottom: 1rem; font-weight: 600; }
.decisao-info-bar { display: flex; justify-content: space-between; width: 100%; margin-bottom: 1rem; font-size: 1.2rem; font-weight: 600; }

.game-options {
    margin-top: 1.5rem;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.option-group {
    width: 100%;
    max-width: 400px;
    text-align: center;
}

.difficulty-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.difficulty-btn {
    border: none;
    display: block;
    width: 100%;
    max-width: 280px;
    cursor: pointer;
    font-size: 1.1rem;
    padding: 1rem;
    border-radius: 12px;
    transition: all 0.2s ease-in-out;
    font-weight: 600;
    color: white;
    background: var(--cor-titulo);
}

.difficulty-btn:hover {
    background-color: var(--cor-principal-acao);
    transform: translateY(-2px);
}

.decisao-regra-container {
    background-color: var(--cor-principal-acao);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px var(--cor-sombra);
    font-size: 1.2rem;
}

body.dark-mode .decisao-regra-container {
    background-color: var(--cor-painel);
    color: var(--cor-texto);
}

#regra-atual {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

#carta-container { width: 150px; height: 200px; background-color: var(--cor-painel); border: 1px solid var(--cor-borda); border-radius: 12px; display: flex; align-items: center; justify-content: center; box-shadow: 0 5px 15px var(--cor-sombra); margin-bottom: 2rem; }
.carta-desenho { font-size: 5rem; }

/* REVISÃO COMPLETA DOS ESTILOS DOS BOTÕES */
.botoes-decisao {
    display: flex;
    flex-wrap: wrap; /* Permite que os botões quebrem a linha se necessário */
    gap: 1.5rem;
    justify-content: center;
}

.btn-decisao {
    width: 160px;
    height: 80px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 8px;
    border: 2px solid var(--cor-borda);
    background-color: var(--cor-painel);
    color: var(--cor-titulo);
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 4px 8px var(--cor-sombra);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.btn-decisao:hover:not(:disabled) {
    transform: translateY(-5px);
    border-color: var(--cor-principal-acao);
}

.btn-decisao:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Animações de feedback */
#jogo-decisao.correct { animation: pulse-success 0.3s; }
#jogo-decisao.incorrect { animation: shake-horizontal 0.3s; }

@keyframes pulse-success {
    0% { transform: scale(1); }
    50% { transform: scale(1.01); }
    100% { transform: scale(1); }
}

@keyframes shake-horizontal {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    50% { transform: translateX(5px); }
    75% { transform: translateX(-5px); }
}

.novo-recorde { color: var(--cor-sucesso); font-size: 1rem; display: block; margin-top: 5px; }