/* Estilo geral do site */
body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #f2f2f2;
  color: #333;
}

/* Container principal */
.game-container {
  max-width: 800px;
  margin: 40px auto;
  padding: 20px;
  background: white;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
  border-radius: 12px;
}

/* Títulos */
h1, h2 {
  text-align: center;
  color: #2b2b2b;
  font-weight: bold;
}

h1 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

h2 {
  font-size: 1.6rem;
  margin-top: 30px;
}

/* Texto das perguntas */
#game-text {
  font-size: 1.3rem;
  padding: 20px;
  border: 2px solid #00c4cc;
  background-color: #e5fbfc;
  border-radius: 10px;
  margin-bottom: 20px;
  text-align: center;
}

/* Botões de escolha */
#choices button {
  display: block;
  width: 100%;
  padding: 15px;
  margin: 10px 0;
  font-size: 1.1rem;
  border: none;
  border-radius: 8px;
  background-color: #00c4cc;
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#choices button:hover {
  background-color: #009aa1;
}

/* Botões gerais */
button {
  font-size: 1rem;
  padding: 12px 20px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  background-color: #ff6600;
  color: white;
  font-weight: bold;
  transition: background 0.3s ease;
}

button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

button:hover:enabled {
  background-color: #cc5200;
}

/* Input de nome */
input[type="text"] {
  width: 100%;
  padding: 12px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  margin-bottom: 15px;
}

/* Ranking */
#ranking-list {
  list-style: none;
  padding-left: 0;
  font-size: 1rem;
}

#ranking-list li {
  background: #f5f5f5;
  margin: 8px 0;
  padding: 10px;
  border-left: 6px solid #00c4cc;
  border-radius: 6px;
}

/* Footer */
footer {
  text-align: center;
  margin-top: 30px;
  font-size: 0.9rem;
  color: #999;
}