*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    scroll-behavior:smooth;
}

body{
    font-family:Arial,Helvetica,sans-serif;
    background:#0f1117;
    color:white;
    overflow-x:hidden;
}

/* ================= BACKGROUND ================= */

.stars{
    position:fixed;
    inset:0;
    background:
    radial-gradient(circle at 20% 20%,rgba(255,255,255,.18) 2px,transparent 2px),
    radial-gradient(circle at 70% 40%,rgba(255,255,255,.12) 2px,transparent 2px),
    radial-gradient(circle at 40% 80%,rgba(255,255,255,.15) 2px,transparent 2px),
    radial-gradient(circle at 90% 60%,rgba(255,255,255,.12) 2px,transparent 2px);
    background-size:220px 220px;
    z-index:-1;
}

/* ================= NAVBAR ================= */

nav{
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 8%;
    position:sticky;
    top:0;
    backdrop-filter:blur(10px);
    background:rgba(15,17,23,.85);
    z-index:100;
}

.logo{
    display:flex;
    align-items:center;
    gap:15px;
}

.logo img{
    width:60px;
    border-radius:50%;
}

.logo h2{
    font-size:24px;
}

.logo p{
    color:#bdbdbd;
    font-size:14px;
}

nav ul{
    display:flex;
    list-style:none;
    gap:35px;
}

nav ul a{
    text-decoration:none;
    color:white;
    transition:.3s;
}

nav ul a:hover{
    color:#ffd54f;
}

.buyButton{
    text-decoration:none;
    color:#111;
    background:#ffd54f;
    padding:12px 24px;
    border-radius:50px;
    font-weight:bold;
    transition:.3s;
}

.buyButton:hover{
    transform:translateY(-3px);
}

/* ================= HERO ================= */

.hero{
    min-height:90vh;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:60px 8%;
    gap:60px;
}

.left{
    flex:1;
}

.right{
    flex:1;
    display:flex;
    justify-content:center;
}

.right img{
    width:380px;
    max-width:100%;
    animation:float 4s ease-in-out infinite;
}

@keyframes float{

0%{transform:translateY(0);}
50%{transform:translateY(-12px);}
100%{transform:translateY(0);}

}

.badge{
    display:inline-block;
    background:#1d2432;
    color:#7ee787;
    padding:10px 20px;
    border-radius:30px;
    margin-bottom:20px;
}

.hero h1{
    font-size:70px;
    margin-bottom:10px;
}

.hero h3{
    font-size:32px;
    color:#ffd54f;
    margin-bottom:20px;
}

.hero p{
    color:#cfcfcf;
    line-height:1.8;
    margin-bottom:35px;
}

.buttons{
    display:flex;
    gap:20px;
}

.buy,
.join{
    text-decoration:none;
    padding:15px 30px;
    border-radius:50px;
    font-weight:bold;
    transition:.3s;
}

.buy{
    background:#ffd54f;
    color:#111;
}

.join{
    border:2px solid #ffd54f;
    color:#ffd54f;
}

.buy:hover,
.join:hover{
    transform:translateY(-4px);
}

/* ================= ABOUT ================= */

.about{
    padding:100px 8%;
    text-align:center;
}

.about h2{
    font-size:42px;
    margin-bottom:30px;
}

.about p{
    max-width:750px;
    margin:auto;
    color:#cfcfcf;
    line-height:2;
    font-size:18px;
}

/* ================= ROADMAP ================= */

.roadmap{
    padding:100px 8%;
    text-align:center;
}

.roadmap h2{
    font-size:42px;
    margin-bottom:15px;
}

.roadmap>p{
    color:#bdbdbd;
    margin-bottom:60px;
}

.timeline{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:25px;
}

.step{
    background:#1b1e29;
    border:1px solid rgba(255,255,255,.08);
    border-radius:20px;
    padding:30px 20px;
    transition:.3s;
}

.step:hover{
    transform:translateY(-8px);
    border-color:#ffd54f;
}

.circle{
    width:55px;
    height:55px;
    border-radius:50%;
    background:#ffd54f;
    color:#111;
    font-weight:bold;
    display:flex;
    justify-content:center;
    align-items:center;
    margin:auto;
    margin-bottom:20px;
}

.step h3{
    margin-bottom:15px;
}

.step p{
    color:#cfcfcf;
    line-height:1.8;
}

/* ================= COMMUNITY ================= */

.community{
    padding:100px 8%;
    text-align:center;
}

.community h2{
    font-size:42px;
    margin-bottom:20px;
}

.community p{
    color:#cfcfcf;
    margin-bottom:40px;
    line-height:1.8;
}

.social{
    display:flex;
    justify-content:center;
    gap:20px;
}

.social a{
    text-decoration:none;
    padding:15px 35px;
    border-radius:50px;
    background:#ffd54f;
    color:#111;
    font-weight:bold;
    transition:.3s;
}

.social a:hover{
    transform:translateY(-5px);
}

/* ================= FOOTER ================= */

footer{
    text-align:center;
    padding:40px 20px;
    color:#9d9d9d;
    border-top:1px solid rgba(255,255,255,.08);
    margin-top:80px;
}

/* ================= MOBILE ================= */

@media(max-width:900px){

nav{
    flex-direction:column;
    gap:20px;
}

nav ul{
    gap:18px;
    flex-wrap:wrap;
    justify-content:center;
}

.hero{
    flex-direction:column-reverse;
    text-align:center;
}

.hero h1{
    font-size:50px;
}

.hero h3{
    font-size:24px;
}

.buttons{
    justify-content:center;
    flex-wrap:wrap;
}

.right img{
    width:280px;
}

.logo{
    justify-content:center;
}

.social{
    flex-direction:column;
    align-items:center;
}

}
