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

body{
background:#07140d;
background-image:
radial-gradient(circle at center,#0f2e1f 0%,#07140d 100%);
color:white;
text-align:center;
padding:40px 20px;
}

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

.logo{
width:120px;
margin-bottom:20px;
}

h1{
font-size:60px;
color:#6cff6c;
margin-bottom:10px;
}

.tagline{
font-size:18px;
margin-bottom:40px;
font-weight:600;
}

.hero{
background:rgba(255,255,255,0.05);
border:1px solid rgba(255,255,255,0.1);
border-radius:20px;
padding:40px;
margin-bottom:40px;
backdrop-filter:blur(10px);
}

.hero h2{
font-size:42px;
margin-bottom:20px;
}

.hero p{
line-height:1.8;
}

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

.card{
background:rgba(255,255,255,0.05);
border:1px solid rgba(255,255,255,0.1);
border-radius:20px;
padding:30px;
}

.card h3{
color:#6cff6c;
margin-bottom:15px;
}

.card p{
line-height:1.7;
}

.coming{
margin-top:15px;
color:#6cff6c;
font-weight:bold;
}

.links{
display:flex;
justify-content:center;
flex-wrap:wrap;
gap:15px;
margin-bottom:40px;
}

.links a{
text-decoration:none;
color:white;
background:rgba(255,255,255,0.08);
padding:12px 20px;
border-radius:12px;
border:1px solid rgba(255,255,255,0.1);
}

.footer{
border-top:1px solid rgba(255,255,255,0.1);
padding-top:30px;
}

.footer-links{
display:flex;
justify-content:center;
flex-wrap:wrap;
gap:15px;
margin-bottom:20px;
}

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

.footer p{
margin:10px 0;
color:#bbb;
}

@media(max-width:768px){

h1{
font-size:42px;
}

.hero h2{
font-size:30px;
}

.logo{
width:90px;
}

}