:root {
    --cor-fundo: #0e0f1a;
    --cor-card: #1a1c2c;
    --cor-botao: #2e2f4e;
    --cor-hover: #4be0fc;
    --cor-texto: #e0f7ff;
    --cor-destaque: #36c2f0;
    --fonte: 'Segoe UI', sans-serif;
}

body {
    background-color: var(--cor-fundo);
    font-family: var(--fonte);
    color: var(--cor-texto);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    min-height: 100vh;
}

.container {
    background-color: var(--cor-card);
    width: 100%;
    max-width: 700px;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 0 15px rgba(75, 224, 252, 0.1);
    text-align: center;
}

header h1 {
    color: var(--cor-destaque);
    margin-bottom: 10px;
}

.descricao {
    font-size: 0.95rem;
    margin-bottom: 25px;
    color: #b2e9f7;
}

.enunciado {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

button {
    background-color: var(--cor-botao);
    color: var(--cor-texto);
    border: none;
    border-radius: 12px;
    padding: 12px 18px;
    margin: 8px 0;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
}

button:hover {
    background-color: var(--cor-hover);
    color: #0e0f1a;
    font-weight: bold;
}

.area-resultado {
    margin-top: 20px;
}

.oculto {
    display: none;
}

.numero-pergunta {
    color: var(--cor-hover);
    margin-bottom: 10px;
    font-size: 0.9rem;
    font-weight: bold;
}
