/* Reset de estilos para garantir consistÃªncia */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background-color: #f5f5f5;
  color: #333;
  text-align: center;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

h1 {
  font-family: Verdana, Tahoma, sans-serif, sans-serif;
  font-size: 24px;
  color: #d81b60;
  margin-bottom: 20px;
}

#quiz-container {
  max-width: 600px;
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  width: 100%;
}

#question {
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: bold;
}

#options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.option {
  background: #eee;
  padding: 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
  text-align: center;
  font-size: 16px;
  border: 1px solid #ccc;
}

.option:hover {
  background: #d81b60;
  color: #fff;
}

.option.selected {
  background: #d81b60;
  color: #fff;
  font-weight: bold;
}

.button {
  margin-top: 20px;
  background: #d81b60;
  color: white;
  padding: 10px 15px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  transition: background 0.3s;
}

.button:hover {
  background: #b7154b;
}

#result-container {
  max-width: 600px;
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  width: 100%;
}

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

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

/* Estilos anteriores mantidos */

#character-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: top;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  margin-bottom: 20px;
  display: block;
}

#options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}

.option {
  background: #f0f0f0;
  border: 2px solid #d81b60;
  color: #333;
  padding: 15px;
  border-radius: 8px;
  font-size: 16px;
  transition: all 0.3s ease;
}

.option:hover {
  background: #d81b60;
  color: white;
  transform: scale(1.05);
}

/* Estilos responsivos */
@media (max-width: 600px) {
  #result-container img {
    max-width: 100%;
  }
}