```css
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:Arial,sans-serif;
  scroll-behavior:smooth;
}

body{
  background:#050816;
  color:white;
  overflow-x:hidden;
}

header{
  position:sticky;
  top:0;
  z-index:1000;
  backdrop-filter:blur(12px);
  background:rgba(5,8,22,0.92);
  border-bottom:1px solid rgba(255,255,255,0.05);
}

.navbar{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:22px 60px;
}

.logo{
  font-size:28px;
  font-weight:bold;
  color:#36f5c7;
}

.nav-menu{
  display:flex;
  gap:28px;
  list-style:none;
}

.nav-menu a{
  color:#bdbdbd;
  text-decoration:none;
  transition:0.3s;
}

.nav-menu a:hover{
  color:#36f5c7;
}

#connectBtn{
  background:#36f5c7;
  color:#050816;
  border:none;
  padding:12px 24px;
  border-radius:10px;
  font-weight:bold;
  cursor:pointer;
}

.hero{
  min-height:100vh;
  display:flex;
  justify-content:center;
  align-items:center;
  text-align:center;
  padding:120px 20px;
}

.hero-content{
  max-width:1000px;
}

.status-badge{
  display:inline-block;
  padding:10px 20px;
  border-radius:50px;
  border:1px solid rgba(54,245,199,0.2);
  color:#36f5c7;
  margin-bottom:30px;
}

.hero h1{
  font-size:72px;
  line-height:1.15;
  margin-bottom:30px;
}

.hero span{
  color:#36f5c7;
}

.hero p{
  color:#b0b0b0;
  line-height:1.8;
  font-size:20px;
}

.hero-buttons{
  display:flex;
  justify-content:center;
  gap:20px;
  margin-top:40px;
  flex-wrap:wrap;
}

.primary-btn,
.secondary-btn{
  padding:16px 34px;
  border-radius:12px;
  cursor:pointer;
  font-size:16px;
}

.primary-btn{
  background:#36f5c7;
  border:none;
  color:#050816;
}

.secondary-btn{
  background:transparent;
  border:1px solid rgba(255,255,255,0.1);
  color:white;
}

.wallet-box{
  margin-top:35px;
}

#walletAddress{
  display:inline-block;
  background:#111827;
  padding:14px 24px;
  border-radius:12px;
}

.overview,
.features,
.timeline,
.why-grid,
.how-grid,
.token-grid{
  display:grid;
  gap:25px;
}

.overview{
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  padding:80px 40px;
}

.overview-card,
.feature-box,
.timeline-item,
.why-card,
.how-card,
.token-card{
  background:#111827;
  padding:35px;
  border-radius:18px;
}

.overview-card{
  text-align:center;
}

.overview-card h2{
  color:#36f5c7;
  margin-bottom:10px;
  font-size:42px;
}

.section-title{
  text-align:center;
  margin-bottom:60px;
}

.section-title h2{
  font-size:50px;
}

.why-section,
.how-section,
.token-section,
.developer-section,
.roadmap{
  padding:100px 40px;
}

.why-grid,
.features,
.how-grid,
.token-grid,
.timeline{
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
}

.feature-box h3,
.why-card h3,
.how-card h3{
  color:#36f5c7;
  margin:20px 0;
}

.feature-box p,
.why-card p,
.how-card p,
.timeline-item p,
.developer-text{
  color:#b0b0b0;
  line-height:1.8;
}

.feature-icon{
  font-size:38px;
}

.how-card span{
  font-size:42px;
  color:#36f5c7;
  font-weight:bold;
}

.token-card{
  text-align:center;
  font-weight:bold;
  transition:0.3s;
}

.token-card:hover{
  transform:translateY(-5px);
  border:1px solid rgba(54,245,199,0.3);
}

.developer-text{
  max-width:900px;
  margin:auto;
  text-align:center;
  font-size:18px;
}

footer{
  border-top:1px solid rgba(255,255,255,0.05);
  padding:40px 60px;
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:20px;
}

.footer-logo{
  color:#36f5c7;
  font-weight:bold;
}

.footer-links{
  display:flex;
  gap:20px;
}

.footer-links a{
  color:#b0b0b0;
  text-decoration:none;
}

.footer-links a:hover{
  color:#36f5c7;
}

@media(max-width:900px){

  .navbar{
    flex-direction:column;
    gap:20px;
  }

  .nav-menu{
    flex-wrap:wrap;
    justify-content:center;
  }

  .hero h1{
    font-size:46px;
  }

  .section-title h2{
    font-size:38px;
  }

}
```
