body {
  margin: 0;
  padding: 0;
  font-family: 'Orbitron', sans-serif;
  background: #0a0a0a;
  color: #e0e0ff;
  text-align: center;
}

header {
  padding: 2rem;
  background: linear-gradient(90deg, #0ff 0%, #f0f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

header h1 {
  font-size: 3rem;
  margin: 0.5rem 0;
}

header p {
  font-size: 1.2rem;
  color: #aaa;
}

.buttons {
  margin: 2rem auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.2rem;
}

.glow-btn {
  padding: 1rem 1.5rem;
  font-size: 1rem;
  border: 2px solid #0ff;
  color: #0ff;
  text-decoration: none;
  border-radius: 10px;
  background: transparent;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px #0ff, 0 0 20px #f0f, 0 0 30px #0ff;
}

.glow-btn:hover {
  background: #0ff;
  color: #000;
  box-shadow: 0 0 20px #f0f, 0 0 40px #0ff;
}

section {
  margin: 3rem auto;
  max-width: 700px;
  padding: 1rem;
}

h2 {
  color: #f0f;
  margin-bottom: 1rem;
  font-size: 1.8rem;
  text-shadow: 0 0 10px #f0f;
}

ul {
  list-style: none;
  padding: 0;
}

ul li {
  padding: 0.4rem;
  font-size: 1.1rem;
  color: #ccc;
}

.tokenomics p,
.contact p {
  font-size: 1rem;
  color: #ccc;
  margin: 0.5rem 0;
}

a {
  color: #0ff;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

footer {
  padding: 2rem;
  font-size: 0.9rem;
  color: #666;
}
