body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: #0b0c1d;
  color: white;
}
header {
  display: flex;
  justify-content: space-between;
  padding: 20px 40px;
  background: #0f112b;
}
.logo {
  font-size: 1.5em;
  font-weight: bold;
  color: #4fd1c5;
}
nav a {
  margin-left: 20px;
  color: #c3c4ff;
  text-decoration: none;
}
.hero {
  padding: 80px 40px;
  text-align: center;
  background: radial-gradient(circle at top, #101233, #0b0c1d);
}
.hero h1 {
  font-size: 3em;
  color: #ffffff;
}
.hero p {
  font-size: 1.2em;
  color: #c3c4ff;
}
.cta-buttons button {
  margin: 10px;
  padding: 10px 20px;
  border: 2px solid #4fd1c5;
  background: transparent;
  color: #4fd1c5;
  font-size: 1em;
  cursor: pointer;
}
.tokenomics, .roadmap {
  padding: 60px 40px;
}
.tokenomics .metrics div {
  margin-bottom: 20px;
}
footer {
  padding: 20px;
  text-align: center;
  background: #0f112b;
  font-size: 0.9em;
}