.neon-text {
  font-size: 48px; /* Размер шрифта */
  font-weight: bold;
  color: #00FFFF; /* Неоновый цвет */
  text-shadow: 0 0 10px #00FFFF, 0 0 20px #00FFFF, 0 0 40px #0088FF;
  animation: flicker 1.5s infinite alternate;
}

@keyframes flicker {
  0% { opacity: 1; }
  50% { opacity: 0.8; }
  100% { opacity: 1; }
}neon-text {
  font-size: 48px; /* Размер шрифта */
  font-weight: bold;
  color: #00FFFF; /* Неоновый цвет */
  text-shadow: 0 0 10px #00FFFF, 0 0 20px #00FFFF, 0 0 40px #0088FF;
  animation: flicker 1.5s infinite alternate;
}

@keyframes flicker {
  0% { opacity: 1; }
  50% { opacity: 0.8; }
  100% { opacity: 1; }
}
neon-text {
  font-size: 48px; /* Размер шрифта */
  font-weight: bold;
  color: #00FFFF; /* Неоновый цвет */
  text-shadow: 0 0 10px #00FFFF, 0 0 20px #00FFFF, 0 0 40px #0088FF;
  animation: flicker 1.5s infinite alternate;
}

@keyframes flicker {
  0% { opacity: 1; }
  50% { opacity: 0.8; }
  100% { opacity: 1; }
}
.moving-star {
  position: absolute;
  top: 0;
  left: 50%;
  width: 40px;
  height: 40px;
  animation: moveStar 10s linear infinite;
}

@keyframes moveStar {
  0% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(300px); opacity: 0.5; }
  100% { transform: translateY(600px); opacity: 0; }
}

.floating-astronaut {
  transition: transform 0.5s ease-in-out;
}

.floating-astronaut:hover {
  transform: translateY(-10px) scale(1.05);
}

.glow-button {
  font-size: 20px;
  color: #FFF;
  background: linear-gradient(90deg, #FF00FF, #00FFFF);
  border: none;
  padding: 15px 30px;
  border-radius: 10px;
  box-shadow: 0 0 10px #FF00FF, 0 0 40px #00FFFF;
  transition: all 0.3s ease-in-out;
}

.glow-button:hover {
  box-shadow: 0 0 20px #FF00FF, 0 0 60px #00FFFF;
  transform: scale(1.1);
}
.rocket {
  position: absolute;
  bottom: -100px;
  animation: launch 5s ease-in-out infinite;
}

@keyframes launch {
  0% { transform: translateY(300px); opacity: 0; }
  50% { transform: translateY(-100px); opacity: 1; }
  100% { transform: translateY(-500px); opacity: 0; }
}
@keyframes space-bg {
  0% { background-position: 0 0; }
  100% { background-position: -1000px 1000px; }
}


}

.glow-button {
  font-size: 20px;
  color: #FFF;
  background: linear-gradient(90deg, #FF00FF, #00FFFF);
  border: none;
  padding: 15px 30px;
  border-radius: 10px;
  box-shadow: 0 0 10px #FF00FF, 0 0 40px #00FFFF;
  transition: all 0.3s ease-in-out;
}

.glow-button:hover {
  box-shadow: 0 0 20px #FF00FF, 0 0 60px #00FFFF;
  transform: scale(1.1);
}

@keyframes space-bg {
  0% { background-position: 0 0; }
  100% { background-position: -1000px 1000px; }
}



/* Начальные стили */
.stars, .shuttle, .astronaut {
    transition: transform 1.5s ease-in-out, opacity 1.5s ease-in-out;
}

.next-section {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 1.5s ease-in-out, transform 1.5s ease-in-out;
}
.next-section {
  opacity: 0;
  transform: translateY(50px);
}
.cosmos-transition .next-section {
  opacity: 1;
  transform: translateY(0);
}
.tokenomics-text {
  cursor: pointer; /* Делаем кликабельным */
  display: inline-block; /* Чтобы не ломался flex/grid */
}

/* Оставляем неон */
.tokenomics-text.neon-text {
  font-size: 20px;
  font-weight: bold;
  color: #00FFFF;
  text-shadow: 0 0 10px #00FFFF, 0 0 20px #00FFFF, 0 0 40px #0088FF;
  animation: flicker 1.5s infinite alternate;
}

