
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  scroll-behavior:smooth;
}

body{
  font-family:Arial,sans-serif;
  background:#050816;
  color:white;
  overflow-x:hidden;
  line-height:1.6;
}

body::before{
  content:"";
  position:fixed;
  width:500px;
  height:500px;
  background:rgba(0,255,208,0.08);
  filter:blur(120px);
  top:-100px;
  left:-100px;
  z-index:-1;
}

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

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

.logo{
  font-size:28px;
  font-weight:bold;
  color:#00ffd0;
}

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

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

.nav-links a:hover{
  color:#00ffd0;
}

#connectBtn{
  background:#00ffd0;
  color:#050816;
  border:none;
  padding:12px 22px;
  border-radius:10px;
  cursor:pointer;
  font-weight:bold;
}

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

.hero-overlay{
  position:absolute;
  inset:0;
  background:radial-gradient(circle at top,#00ffd022,transparent 60%);
}

.hero-content{
  position:relative;
  z-index:2;
  max-width:1000px;
}

.badge{
  display:inline-block;
  border:1px solid rgba(0,255,208,0.2);
  color:#00ffd0;
  padding:10px 22px;
  border-radius:50px;
  margin-bottom:30px;
  font-size:14px;
}

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

.hero span{
  color:#00ffd0;
}

.hero p{
  max-width:820px;
  margin:auto;
  font-size:20px;
  color:#b8b8b8;
}

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

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

.primary-btn{
  background:#00ffd0;
  border:none;
  color:#050816;
  font-weight:bold;
}

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

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

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

.hero-stats{
  display:flex;
  justify-content:center;
  gap:30px;
  flex-wrap:wrap;
  margin-top:50px;
}

.hero-stats div{
  background:#111827;
  padding:25px 35px;
  border-radius:16px;
  min-width:200px;
}

.hero-stats h3{
  color:#00ffd0;
  font-size:32px;
}

.section{
  padding:100px 60px;
}

.section-title{
  text-align:center;
  max-width:800px;
  margin:0 auto 60px auto;
}

.section-title h2{
  font-size:48px;
  margin-bottom:18px;
}

.section-title p{
  color:#b0b0b0;
  font-size:18px;
}

.about-grid,
.ecosystem-grid,
.feature-grid,
.tokenomics-grid,
.docs-grid,
.roadmap-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:28px;
}

.about-card,
.ecosystem-card,
.feature-card,
.token-card,
.docs-card,
.roadmap-card{
  background:#111827;
  border:1px solid rgba(255,255,255,0.05);
  padding:35px;
  border-radius:20px;
  transition:0.3s;
}

.about-card:hover,
.ecosystem-card:hover,
.feature-card:hover,
.token-card:hover,
.docs-card:hover,
.roadmap-card:hover{
  transform:translateY(-6px);
  border-color:rgba(0,255,208,0.25);
}

.about-card h3,
.ecosystem-card h3,
.feature-card h3,
.docs-card h3{
  margin-bottom:18px;
  color:#00ffd0;
}

.ecosystem-card span{
  display:inline-block;
  margin-bottom:18px;
  font-size:32px;
  color:#00ffd0;
  font-weight:bold;
}

.feature-card .icon{
  font-size:42px;
  margin-bottom:20px;
}

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

.token-card h3{
  font-size:42px;
  color:#00ffd0;
  margin-bottom:15px;
}

.roadmap-card ul{
  margin-top:15px;
  padding-left:18px;
  color:#b0b0b0;
}

.roadmap-card li{
  margin-bottom:10px;
}

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-links{
  display:flex;
  gap:20px;
}

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

.footer-links a:hover{
  color:#00ffd0;
}

@media(max-width:900px){

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

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

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

  .section{
    padding:80px 20px;
  }

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

}
