/* Estilos base */
body {
  margin: 0;
  padding: 0;
  background-color: #080e1c;
  color: #ffffff;
  font-family: 'Orbitron', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  text-align: center;
  overflow: hidden;
}

.container {
  max-width: 700px;
  padding: 20px;
  position: relative;
  z-index: 0;
}

.logo {
  position: relative;
  width: 180px;
  margin-bottom: 20px;
  animation: bounce 3s ease-in-out infinite, softGlow 4s ease-in-out infinite;
  border-radius: 20px;
  user-select: none;
  z-index: 1;
  border: none;
  filter: none;
}

.logo::before {
  content: "";
  position: absolute;
  top: -6px;
  left: -6px;
  right: -6px;
  bottom: -6px;
  border-radius: 26px;
  background: linear-gradient(90deg, #062eaa, #FF003C);
  z-index: -1;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

@keyframes softGlow {
  0%, 100% { filter: drop-shadow(0 0 4px #062eaa); }
  50% { filter: drop-shadow(0 0 8px #FF003C); }
}

/* ESTILO DO TÍTULO MODIFICADO */
h1 span {
  display: inline-block;
  font-size: 3rem;
  font-weight: bold;
  background: linear-gradient(90deg, #062eaa, #FF003C);
  background-size: 100% auto; /* Ajustado para preencher estaticamente */
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  /* A linha de animação foi removida */
}

/* O @keyframes rainbow foi removido pois não é mais necessário */

p {
  font-size: 1.1rem;
  margin-top: 15px;
  color: #c9d1d9;
}

.footer {
  font-size: 0.8rem;
  margin-top: 30px;
  color: #8b949e;
}

.admin-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.admin-link {
  color: #ffffff;
  font-weight: bold;
  text-decoration: none;
  padding: 15px 30px;
  border-radius: 8px;
  border: 2px solid #062eaa;
  background-color: rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.admin-link:hover {
  background: linear-gradient(90deg, #062eaa, #FF003C);
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(255, 0, 60, 0.5);
  border-color: #FF003C;
}

@media (max-width: 480px) {
  .logo { width: 140px; }
  h1 span { font-size: 2.2rem; }
  .admin-links { flex-direction: column; }
}