/* Corpo e fundo */
body {
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: black;
  font-family: 'Arial', sans-serif;
  color: #00ffff;
}

/* Estrelas dinâmicas */
.stars {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 0;
}

/* Planetas fixos e bônus */
.planet, .bonus-bonus {
  position: absolute;
  border-radius: 50%;
  text-align: center;
  font-size: 1.5em;
  padding: 10px;
  color: #00ffff;
  text-shadow: 0 0 10px #00ffff, 0 0 20px #00ffff;
}
.planet-terra {
  width: 120px; height: 120px;
  background: radial-gradient(circle at 30% 30%, #0f0, #060);
  top: 20%; left: 10%;
}
.planet-marte {
  width: 100px; height: 100px;
  background: radial-gradient(circle at 30% 30%, #f00, #600);
  top: 50%; left: 70%;
}
.planet-jupiter {
  width: 140px; height: 140px;
  background: radial-gradient(circle at 20% 20%, #fa0, #a50);
  top: 70%; left: 30%;
}
.bonus-bonus {
  top: 10%; left: 80%;
  position: absolute;
  width: 200px;
  font-size: 1.2em;
}

/* Container dos objetivos */
.objetivos-container {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}
.objetivos {
  text-align: center;
  background: rgba(0,0,0,0.5);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 0 50px #00ffff, 0 0 100px #00ffff;
  animation: floatObjectives 6s ease-in-out infinite alternate;
}
.objetivos h1, .objetivos h2, .objetivos p {
  margin: 15px 0;
}

/* Botão */
button {
  margin-top: 30px;
  padding: 15px 40px;
  font-size: 1.2em;
  color: #000;
  background: #00ffff;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  box-shadow: 0 0 20px #00ffff, 0 0 40px #00ffff;
  transition: 0.3s;
}
button:hover {
  transform: scale(1.1);
  box-shadow: 0 0 30px #00ffff, 0 0 60px #00ffff;
}

/* Animação do texto flutuando */
@keyframes floatObjectives {
  0% { transform: translateY(0); }
  100% { transform: translateY(-20px); }
}