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

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

header{
position:sticky;
top:0;
z-index:1000;
backdrop-filter:blur(10px);
background:rgba(6,13,28,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:#56ffd8;
}

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

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

.nav-links a:hover

#connectBtn{
background:#56ffd8;
color:#060d1c;
border:none;
padding:12px 26px;
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:950px;
}

.hero-badge{
display:inline-block;
padding:10px 22px;
border-radius:50px;
border:1px solid rgba(86,255,216,0.2);
color:#56ffd8;
margin-bottom:30px;
}

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

.hero span{
color:#56ffd8;
}

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

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

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

.primary-btn{
background:#56ffd8;
border:none;
color:#060d1c;
}

.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:#101828;
padding:14px 24px;
border-radius:12px;
}

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

.stat-card{
background:#101828;
padding:40px;
border-radius:18px;
text-align:center;
}

.stat-card h2{
color:#56ffd8;
margin-bottom:10px;
}

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

.section-title h2{
font-size:52px;
margin-bottom:20px;
}

.section-title p{
color:#b0b0b0;
line-height:1.8;
max-width:700px;
margin:auto;
}

.why-section,
.works-section,
.features-section,
.roadmap,
.future-section{
padding:100px 40px;
}

.card-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:25px;
}

.info-card{
background:#101828;
padding:35px;
border-radius:18px;
transition:0.3s;
}

.info-card:hover{
transform:translateY(-6px);
border:1px solid rgba(86,255,216,0.2);
}

.info-card h3{
color:#56ffd8;
margin-bottom:18px;
}

.info-card p{
color:#b0b0b0;
line-height:1.8;
}

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

.footer-logo{
color:#56ffd8;
font-size:22px;
font-weight:bold;
}

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

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

.footer-links a:hover

@media(max-width:900px){

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

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

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

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

}
