/* 1. Configurações de Reset e Layout Centralizado */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #121212; /* Fundo escuro padrão moderno */
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

/* 2. Estilo do Cartão do Jogo */
.container {
    background-color: #1e1e1e;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    text-align: center;
    width: 350px;
}

h1 {
    color: #bb86fc; /* Cor de destaque (Roxo) */
    margin-bottom: 1.5rem;
}

/* 3. Estilização de Entradas e Botões */
input {
    padding: 12px;
    width: 80%;
    border-radius: 8px;
    border: 2px solid #333;
    background-color: #2c2c2c;
    color: white;
    margin-bottom: 1rem;
    outline: none;
}

button {
    padding: 12px 25px;
    background-color: #03dac6; /* Cor de ação (Ciano) */
    border: none;
    border-radius: 8px;
    color: #000;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    width: 90%;
}

button:hover {
    transform: scale(1.05); /* Efeito visual de clique */
}

/* 4. Mensagens e Contador */
#feedback {
    margin-top: 1.5rem;
    font-weight: bold;
}

#displayTentativas {
    font-size: 1.2rem;
    color: #cf6679; /* Cor de alerta para tentativas */
} /* Chave fechada corretamente aqui! */

/* 5. Estilo específico do Botão de Reiniciar */
#btnReiniciar {
    margin-top: 20px;
    background-color: #bb86fc; 
    color: #000;
}