/* Reset e base */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
}

body {
  background-color: #fff;
  color: #333;
  text-align: center;
  min-height: 100vh;
  padding: 20px;
}

/* Containers principais */
#quiz-container,
#result-container {
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
  background: #fff;
  padding: 24px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  border-radius: 10px;
}

/* Títulos */
h1 {
  color: #d81b60;
  margin-bottom: 24px;
  font-size: 24px;
  font-weight: 600;
}

/* Imagem da pergunta */
#character-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: top;
  border-radius: 8px;
  margin-bottom: 20px;
}

/* Pergunta */
#question {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 20px;
}

/* Opções */
#options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.option {
  padding: 14px 18px;
  background: #f0f0f0;
  border: 2px solid #d81b60;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: left;
  font-size: 16px;
  color: #333;
  line-height: 1.4;
}

.option:hover,
.option:focus {
  background: #d81b60;
  color: #fff;
  transform: scale(1.02);
  outline: none;
}

/* Resultado */
#result-image {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

#result-text {
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 10px;
}

#result-description {
  font-size: 22px;
  line-height: 1.5;
  color: #444;
}

/* Botão */
.button {
  margin-top: 24px;
  padding: 12px 20px;
  background: #d81b60;
  border: none;
  border-radius: 6px;
  color: white;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s;
}

.button:hover {
  background: #b7154b;
}

/* Responsivo */
@media (max-width: 600px) {
  body {
    padding: 12px;
  }

  #quiz-container,
  #result-container {
    padding: 16px;
  }

  h1 {
    font-size: 20px;
  }

  .option {
    font-size: 15px;
    padding: 12px;
  }

  #question {
    font-size: 16px;
  }

  #result-text {
    font-size: 20px;
  }

  #result-description {
    font-size: 22px;
  }
}
