/*==================================
GECKOX V3
==================================*/

*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{
font-family:'Space Grotesk',sans-serif;
background:#050505;
color:#fff;
overflow-x:hidden;
line-height:1.6;
}

/* Container */

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

/* Background Video */

#bg-video{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
object-fit:cover;
z-index:-3;
}

.overlay{
position:fixed;
inset:0;
background:linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.88));
z-index:-2;
}

#particles{
position:fixed;
inset:0;
width:100%;
height:100%;
pointer-events:none;
z-index:-1;
}

/* Loader */

#loader{
position:fixed;
inset:0;
background:#050505;
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
z-index:9999;
transition:.8s;
}

#loader img{
width:120px;
margin-bottom:20px;
}

#loader h1{
font-family:'Orbitron',sans-serif;
font-size:46px;
color:#39ff14;
margin-bottom:20px;
text-shadow:0 0 20px #39ff14;
}

.loading-bar{
width:260px;
height:8px;
background:#222;
border-radius:30px;
overflow:hidden;
}

.loading-progress{
height:100%;
background:#39ff14;
animation:loading 2.5s linear forwards;
}

@keyframes loading{
from{width:0;}
to{width:100%;}
}

/* Header */

header{
position:fixed;
top:20px;
left:50%;
transform:translateX(-50%);
width:94%;
max-width:1300px;
padding:18px 30px;
display:flex;
justify-content:space-between;
align-items:center;
background:rgba(255,255,255,.08);
backdrop-filter:blur(18px);
border:1px solid rgba(255,255,255,.15);
border-radius:18px;
z-index:1000;
}

.logo{
display:flex;
align-items:center;
gap:12px;
}

.logo img{
width:50px;
}

.logo span{
font-family:'Orbitron',sans-serif;
font-size:28px;
color:#39ff14;
}

nav{
display:flex;
gap:28px;
}

nav a{
color:#fff;
text-decoration:none;
font-weight:600;
transition:.3s;
}

nav a:hover{
color:#39ff14;
}

.buttons{
display:flex;
gap:12px;
}

.buttons a{
padding:12px 22px;
background:#39ff14;
color:#000;
text-decoration:none;
font-weight:700;
border-radius:40px;
transition:.3s;
}

.buttons a:hover{
transform:translateY(-4px);
box-shadow:0 0 25px #39ff14;
}

/* Hero */

.hero{
min-height:100vh;
display:grid;
grid-template-columns:1fr 1fr;
align-items:center;
gap:60px;
padding:140px 5%;
}

.badge{
display:inline-block;
padding:8px 18px;
border:1px solid rgba(57,255,20,.5);
border-radius:40px;
color:#39ff14;
margin-bottom:20px;
}

.hero h1{
font-family:'Orbitron',sans-serif;
font-size:82px;
line-height:1;
margin-bottom:15px;
color:#39ff14;
}

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

.hero p{
font-size:18px;
max-width:600px;
margin-bottom:35px;
opacity:.9;
}

.hero-btns{
display:flex;
gap:18px;
flex-wrap:wrap;
}

.hero-btns a{
padding:15px 32px;
background:#39ff14;
color:#000;
border-radius:40px;
text-decoration:none;
font-weight:700;
}

.hero-image{
display:flex;
justify-content:center;
}

.hero-image img{
width:100%;
max-width:420px;
height:auto;
object-fit:contain;
filter:drop-shadow(0 0 30px rgba(57,255,20,.4));
animation:float 4s ease-in-out infinite;
}

@keyframes float{
0%,100%{transform:translateY(0);}
50%{transform:translateY(-15px);}
}
/*==================================
ABOUT
==================================*/

.about{
padding:120px 5%;
}

.about h2,
.tokenomics h2,
.roadmap h2,
.community h2{
font-family:'Orbitron',sans-serif;
font-size:52px;
color:#39ff14;
text-align:center;
margin-bottom:25px;
text-shadow:0 0 20px rgba(57,255,20,.4);
}

.section-text{
max-width:800px;
margin:0 auto 60px;
text-align:center;
font-size:19px;
line-height:1.8;
opacity:.9;
}

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

.glass-card{
background:rgba(255,255,255,.08);
backdrop-filter:blur(18px);
border:1px solid rgba(255,255,255,.15);
border-radius:20px;
padding:35px;
transition:.35s;
}

.glass-card:hover{
transform:translateY(-8px);
box-shadow:0 0 30px rgba(57,255,20,.35);
}

.glass-card h3{
font-size:24px;
color:#39ff14;
margin-bottom:15px;
}

.glass-card p{
font-size:17px;
opacity:.9;
}

/*==================================
TOKENOMICS
==================================*/

.tokenomics{
padding:120px 5%;
}

.token-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:25
/*==================================
COMMUNITY
==================================*/

.community{
padding:120px 5%;
text-align:center;
}

.community-buttons{
display:flex;
justify-content:center;
align-items:center;
gap:20px;
flex-wrap:wrap;
margin-top:40px;
}

.social-btn{
display:inline-block;
padding:16px 34px;
background:#39ff14;
color:#000;
font-weight:700;
text-decoration:none;
border-radius:50px;
transition:.3s;
}

.social-btn:hover{
transform:translateY(-6px);
box-shadow:0 0 30px rgba(57,255,20,.5);
}

/*==================================
FOOTER
==================================*/

footer{
padding:70px 20px;
text-align:center;
border-top:1px solid rgba(255,255,255,.1);
background:rgba(0,0,0,.25);
backdrop-filter:blur(12px);
}

footer img{
width:70px;
margin-bottom:20px;
}

footer h3{
font-family:'Orbitron',sans-serif;
font-size:28px;
color:#39ff14;
margin-bottom:10px;
}

footer p{
opacity:.8;
margin:8px 0;
}

/*==================================
MOBILE RESPONSIVE
==================================*/

@media(max-width:992px){

header{
flex-direction:column;
gap:18px;
padding:20px;
}

nav{
flex-wrap:wrap;
justify-content:center;
gap:18px;
}

.hero{
grid-template-columns:1fr;
text-align:center;
padding:150px 25px 80px;
}

.hero-content{
order:2;
}

.hero-image{
order:1;
}

.hero-image img{
max-width:280px;
width:80%;
}

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

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

.hero p{
margin:auto;
margin-bottom:30px;
}

.hero-btns{
justify-content:center;
}

}

@media(max-width:768px){

.logo span{
font-size:22px;
}

.logo img{
width:42px;
}

header{
width:96%;
}

nav{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:12px;
width:100%;
}

nav a{
text-align:center;
}

.buttons{
width:100%;
flex-direction:column;
}

.buttons a{
text-align:center;
}

.hero{
padding-top:180px;
}

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

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

.hero p{
font-size:16px;
}

.hero-image img{
max-width:220px;
}

.about,
.tokenomics,
.roadmap,
.community{
padding