body {
  margin: 0;
  font-family: 'Comic Sans MS', sans-serif;
  background: linear-gradient(135deg, #a8d8ff, #fff7b0, #ffd1b0, #d6ccff);
  background-size: 600% 600%;
  animation: animarFundo 15s ease infinite;
  overflow: hidden;
  position: relative;
}

@keyframes animarFundo {
  0% {background-position: 0% 50%;}
  50% {background-position: 100% 50%;}
  100% {background-position: 0% 50%;}
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #d8ffb4;
  padding: 10px 20px;
  font-size: 1.2em;
  box-shadow: 0 2px 5px #0003;
}

#contador-bencaos {
  font-weight: bold;
  color: #333;
}

main {
  text-align: center;
  padding: 20px;
  position: relative;
  z-index: 1;
}

#jogo {
  max-width: 500px;
  margin: auto;
  background: #ffffffdd;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 0 15px #00000033;
}

#dica {
  font-size: 1.3em;
  margin-bottom: 20px;
}

#opcoes button {
  display: block;
  width: 100%;
  margin: 10px 0;
  padding: 12px;
  font-size: 1.1em;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s;
  background: #a8d8ff;
  color: #000;
  box-shadow: 2px 2px 5px #0002;
}

#opcoes button:hover {
  background: #d6ccff;
  transform: scale(1.05);
}

footer#rodape {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: #d6ccff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 20px;
  font-weight: bold;
  color: #333;
  font-size: 0.9em;
  box-shadow: 0 -2px 5px #0002;
  box-sizing: border-box;
  z-index: 999;
}


.footer-texto {
  text-align: left;
  line-height: 1.2em;
}

#relogioFooter {
  font-weight: bold;
}

canvas#particlesCanvas {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 0;
  pointer-events: none;
}
