body {
  margin: 0;
  color: #fff;
  background: linear-gradient(-45deg, #1a1a1a, #3e3e3e, #1a1a1a);
  background-size: 400% 400%;
  animation: gradientBG 15s ease infinite;
}

@keyframes gradientBG {
  0% {background-position: 0% 50%;}
  50% {background-position: 100% 50%;}
  100% {background-position: 0% 50%;}
}

#tsparticles {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.container {
  max-width: 800px;
  margin: auto;
  padding: 30px;
  text-align: center;
}

h1, h2 {
  font-family: 'Cinzel Decorative', cursive;
  font-weight: 700;            
  color: #f5c518;             
  text-shadow: 2px 2px 6px #000; 
}

.oculto {
  display: none;
}

button {
  padding: 10px 20px;
  margin: 10px;
  font-size: 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  background-color: #9a9690;
  color: #fff;
  transition: transform 0.2s, background 0.3s;
}

button:hover {
  background-color: #e67e22;
  transform: scale(1.05);
}


.question {
  margin-top: 30px;
  font-size: 1.6em;           
  font-family: 'Cinzel Decorative', cursive; 
  font-weight: 700;            
  color: #f5c518;             
  text-shadow: 2px 2px 6px #000; 
}



.respostas button {
  position: relative;
  display: block;
  margin: 10px auto;
  background-color: #0a7fcc;
  font-family: 'Segoe UI', sans-serif; 
  overflow: hidden;
}


.respostas button:hover {
  background-color: #74787c;
}
 .botao-clicado {
  background-color: #4caf50; /* Verde, por exemplo */
  color: white;
  transition: background-color 0.3s ease;
}



.respostas button .letra {
  font-family: 'Harry Potter', serif;
  font-size: 28px;
  margin-right: 12px;
  color: #f5c518;
  text-shadow: 2px 2px 5px #000;
}

.respostas button::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(245,197,24,0.35) 0%, transparent 70%);
  animation: smokePulse 2s infinite ease-in-out;
  pointer-events: none;
}
.destaque-pontuacao {
  font-size: 2em;
  font-weight: bold;
  color: #f5c518; 
  margin-top: 10px;
}

@keyframes smokePulse {
  0%   { transform: scale(0.8); opacity: 0.6; }
  50%  { transform: scale(1.2); opacity: 0.3; }
  100% { transform: scale(0.8); opacity: 0.6; }
}

/* Dissipar ao clicar */
button.dissipar::before {
  animation: smokeDissipate 1s forwards;
}

@keyframes smokeDissipate {
  0%   { opacity: 0.6; transform: scale(1); }
  100% { opacity: 0; transform: scale(2); }
}

/* Card do personagem final */
.caracteristica-carta{
  background-color: rgba(0,0,0,0.6);
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 0 20px #fff;
  margin-top: 20px;
}

.caracteristica-carta img {
  max-width: 200px;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
  border: 4px solid #fff;
}
