*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Inter',sans-serif;
}

body{
background:#070b14;
color:white;
line-height:1.7;
}

.container{
width:90%;
max-width:1200px;
margin:auto;
}

header{
position:fixed;
width:100%;
top:0;
z-index:999;
background:rgba(7,11,20,.9);
backdrop-filter:blur(20px);
}

.nav{
height:80px;
display:flex;
justify-content:space-between;
align-items:center;
}

.logo{
font-size:24px;
font-weight:800;
color:#00e5ff;
}

ul{
display:flex;
gap:25px;
list-style:none;
}

ul a{
text-decoration:none;
color:white;
}

.wallet-btn,
.primary{
background:#00e5ff;
color:black;
border:none;
padding:14px 28px;
border-radius:12px;
cursor:pointer;
font-weight:600;
}

.secondary{
background:transparent;
border:1px solid #333;
color:white;
padding:14px 28px;
border-radius:12px;
cursor:pointer;
}

.hero{
padding:180px 0 120px;
text-align:center;
}

.badge{
background:#122036;
padding:10px 20px;
border-radius:50px;
color:#00e5ff;
}

.hero h1{
font-size:72px;
max-width:900px;
margin:30px auto;
}

.hero p{
max-width:700px;
margin:auto;
color:#bdbdbd;
}

.hero-buttons{
margin-top:30px;
}

.wallet-card{
margin:60px auto;
max-width:500px;
padding:30px;
background:#111827;
border-radius:24px;
}

.stats{
display:flex;
justify-content:center;
gap:80px;
margin-top:60px;
}

section{
padding:100px 0;
}

.cards{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
margin-top:40px;
}

.card,
.timeline-item,
.faq-item{
background:#111827;
padding:30px;
border-radius:20px;
}

.timeline{
display:grid;
gap:20px;
margin-top:40px;
}

.timeline ul{
display:block;
padding-left:20px;
margin-top:20px;
}

footer{
padding:50px;
text-align:center;
border-top:1px solid #1f2937;
}

@media(max-width:768px){

ul{
display:none;
}

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

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

}
