/* Reset e fonte */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Courier New', monospace;
}

body {
  background: linear-gradient(120deg, #1a1a1a, #0a0a2a);
  color: #e0e0ff;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.main-container {
  background: rgba(10,10,40,0.95);
  border-radius: 12px;
  padding: 30px;
  max-width: 700px;
  width: 100%;
  text-align: center;
  box-shadow: 0 0 20px #00ffff, 0 0 40px #6600ff inset;
}

header h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #00ffff;
  text-shadow: 0 0 10px #00ffff, 0 0 20px #6600ff;
}

header p {
  font-size: 1rem;
  margin-bottom: 20px;
  color: #c0c0ff;
}

button {
  background: linear-gradient(90deg, #00ffff, #6600ff);
  color: #fff;
  border: none;
  padding: 12px 20px;
  margin: 10px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.3s ease;
}

button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px #00ffff, 0 0 30px #6600ff;
}

/* Perguntas e opções */
.question-box h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: #99ffff;
}

.option-btn {
  display: block;
  width: 100%;
  margin: 8px 0;
  background: linear-gradient(45deg, #00ffff, #6600ff);
  color: #fff;
  border-radius: 6px;
  padding: 10px;
  transition: all 0.3s;
}

.option-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 10px #00ffff, 0 0 20px #6600ff;
}

/* Resultado */
.result-screen h2 {
  color: #00ffff;
  margin-bottom: 15px;
}

.result-text {
  font-size: 1.1rem;
  color: #d0d0ff;
  margin-bottom: 15px;
}