body{
margin:0;
font-family:Arial, Helvetica, sans-serif;
background:#0a0f1c;
color:white;
}

.navbar{
display:flex;
justify-content:space-between;
padding:20px 40px;
background:#0c1224;
}

.navbar a{
color:white;
margin-left:20px;
text-decoration:none;
}

.logo{
font-weight:bold;
font-size:20px;
}

.hero{
text-align:center;
padding:120px 20px;
background:linear-gradient(180deg,#0a0f1c,#0e1a38);
}

.hero h1{
font-size:48px;
margin-bottom:20px;
}

.hero p{
max-width:600px;
margin:auto;
opacity:0.8;
}

.buttons{
margin-top:30px;
}

.primary{
background:#3a6bff;
border:none;
padding:12px 25px;
color:white;
margin-right:10px;
cursor:pointer;
border-radius:6px;
}

.secondary{
background:transparent;
border:1px solid white;
padding:12px 25px;
color:white;
cursor:pointer;
border-radius:6px;
}

.features{
padding:80px 40px;
text-align:center;
}

.feature-grid{
display:flex;
justify-content:center;
gap:30px;
margin-top:40px;
flex-wrap:wrap;
}

.card{
background:#101935;
padding:30px;
border-radius:10px;
width:260px;
}

.api-example{
background:#050814;
padding:80px;
text-align:center;
}

pre{
background:black;
padding:20px;
border-radius:10px;
color:#00ffb7;
}

footer{
text-align:center;
padding:30px;
background:#0c1224;
}