/* Estilo base do site  */
html, body {
  height: 100%;
  margin: 0px;
  min-height: 100vh;
  background: radial-gradient(ellipse at center, #0b0c1c 0%, #000000 100%);
  color: white;
  font-family: Verdana, sans-serif;
  position: relative;
  overflow-x: hidden;
  padding: 20px; /* Pequeno espaçamento interno */
}

body::before {
  content: "";
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle 1.5px at 20px 30px, white 99%, transparent 100%),
    radial-gradient(circle 1.2px at 50px 80px, white 99%, transparent 100%),
    radial-gradient(circle 1.3px at 120px 150px, white 99%, transparent 100%),
    radial-gradient(circle 1.6px at 200px 100px, white 99%, transparent 100%),
    radial-gradient(circle 1.1px at 300px 50px, white 99%, transparent 100%),
    radial-gradient(circle 1.4px at 400px 120px, white 99%, transparent 100%),
    radial-gradient(circle 1.2px at 500px 200px, white 99%, transparent 100%),
    radial-gradient(circle 1.3px at 600px 90px, white 99%, transparent 100%),
    radial-gradient(circle 1.5px at 700px 140px, white 99%, transparent 100%),
    radial-gradient(circle 1.2px at 750px 220px, white 99%, transparent 100%),
    radial-gradient(circle 1.3px at 820px 40px, white 99%, transparent 100%);
  animation: twinkle 3s infinite alternate;
  z-index: -2;
}

/* Animação das estrelas */
@keyframes twinkle {
  from { opacity: 0.6; }
  to { opacity: 1; }
}

/* Animação dos cometas */
@keyframes cometMove {
  0% {
    transform: translateX(0) translateY(0) rotate(45deg);
  }
  100% {
    transform: translateX(120vw) translateY(-120vh) rotate(45deg);
  }
}

/* Cometas animados */
.comet {
  position: fixed;
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, white, transparent);
  border-radius: 50%;
  top: 100vh; /* Começa fora da tela */
  left: -100px;
  filter: drop-shadow(0 0 6px white);
  animation: cometMove 6s linear infinite;
  z-index: -1;
}

.comet:nth-child(1) {
  top: 20vh;
  animation-duration: 5s;
  animation-delay: 0s;
  opacity: 0.8;
}
.comet:nth-child(2) {
  top: 50vh;
  animation-delay: 2s;
  animation-duration: 7s;
  opacity: 0.5;
}
.comet:nth-child(3) {
  top: 70vh;
  animation-delay: 4s;
  animation-duration: 6s;
  opacity: 0.7;
}

/* Dashboard centralizado e responsivo */
.dashboard {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  align-items: center;
  margin: 40px 0;
  flex-wrap: wrap;
  padding: 0 10px; /* para dar espaço nas laterais em celular */
}

/* Títulos com fonte Orbitron */
h1, h2 {
  font-family: 'Orbitron', sans-serif;
  text-align: center;
  margin: 16px 0;
  color: #7f5af0;
  text-shadow: 0 0 8px #7f5af0;
}

h3{
  font-family: 'Orbitron', sans-serif;
  text-align: center;
  margin: 16px 0;
  color: white;
  text-shadow: 0 0 8px #7f5af0;
}

/* Texto geral */
p {
  font-family: Verdana, sans-serif;
  font-size: 1rem;
  color: #ddd;
  max-width: 600px;
  margin: 0 auto 20px auto;
  text-align: center;
  line-height: 1.5;
}

/* Botões estilizados */
.botao {
  background-color: rgba(127, 90, 240, 0.15);
  border: 2px solid #7f5af0;
  color: #ffffff;
  text-shadow: 0 0 5px #7f5af0;
  padding: 15px 25px;
  text-decoration: none;
  border-radius: 12px;
  font-family: 'Orbitron', sans-serif;
  font-size: 16px;
  transition: background-color 0.3s, box-shadow 0.3s, transform 0.3s;
  width: 220px;
  max-width: 90%;
  text-align: center;
  box-shadow: 0 0 10px #7f5af0;
  cursor: pointer;
  user-select: none;
}

.botao:hover {
  background-color: #7f5af0;
  box-shadow: 0 0 20px #7f5af0;
  color: white;
  transform: scale(1.05);
}

/* Container para músicas */
.musica {
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  padding: 10px;
  background: rgba(127, 90, 240, 0.1);
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(127, 90, 240, 0.3);
  transition: box-shadow 0.3s ease;
}

.musica:hover {
  box-shadow: 0 0 25px rgba(127, 90, 240, 0.7);
}

.musica h2 {
  font-family: 'Orbitron', sans-serif;
  font-weight: 600;
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.musica p {
  font-size: 1rem;
  line-height: 1.4;
  margin-bottom: 12px;
  color: #ccc;
}

.musica h3 {
  font-family: 'Orbitron', sans-serif;
  font-weight: 600;
  font-size: 1.6rem;
  margin-bottom: 8px;
}

/* Iframes responsivos */
iframe {
  border-radius: 8px;
  width: 100%;
  height: 180px;
  box-shadow: 0 0 15px #7f5af0aa;
  transition: box-shadow 0.3s ease-in-out;
}

iframe:hover {
  box-shadow: 0 0 25px #7f5af0ff;
}

/* Responsividade */
@media (max-width: 600px) {
  body::before {
    display: block !important;
    z-index: -2;
  }

  .botao {
    width: 100%;
  }

  p {
    font-size: 0.9rem;
    max-width: 100%;
    padding: 0 10px;
  }
  
  .entrada{
    max-width: 600px;
    margin: 0 auto;
    padding: 30px 20px;
    background-color: rgba(255, 255, 255, 0.05); /* fundo sutil */
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(127, 90, 240, 0.4); /* leve roxinho */
    font-family: 'Verdana', sans-serif;
    line-height: 1.6;
    color: #black;
  }
  
  
  
}
