*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial;
}

body{
background:#000;
color:white;
overflow-x:hidden;
}


/* NAVBAR */

.navbar{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 40px;
background:#111;
position:sticky;
top:0;
z-index:999;
}

.logo{
font-size:35px;
font-weight:bold;
color:#00ff88;
}

.nav-links{
display:flex;
list-style:none;
gap:25px;
}

.nav-links li a{
color:white;
text-decoration:none;
font-size:18px;
transition:0.3s;
}

.nav-links li a:hover{
color:#00ff88;
}

.menu-toggle{
display:none;
font-size:35px;
cursor:pointer;
}


/* ANNOUNCEMENT */

.announcement{
background:#ffcc00;
color:black;
padding:15px;
text-align:center;
font-weight:bold;
}


/* HERO */

.hero{
height:100vh;
display:flex;
justify-content:center;
align-items:center;
text-align:center;
padding:20px;
background:
linear-gradient(
135deg,
#000,
#111,
#001a12
);
}

.glass-card{
width:90%;
max-width:900px;
padding:50px;
background:rgba(255,255,255,0.08);
border:1px solid rgba(255,255,255,0.2);
backdrop-filter:blur(15px);
border-radius:30px;
box-shadow:0 0 30px rgba(0,255,136,0.2);
animation:fadeUp 1.5s ease;
}

.hero-title{
font-size:80px;
color:#00ff88;
margin-bottom:20px;
}

.hero-subtitle{
font-size:25px;
margin-bottom:40px;
}

.hero-btn{
padding:15px 40px;
background:#00ff88;
border:none;
border-radius:15px;
font-size:20px;
font-weight:bold;
cursor:pointer;
transition:0.3s;
}

.hero-btn:hover{
transform:scale(1.1);
}


/* COUNTERS */

.counter-box{
display:flex;
justify-content:center;
gap:30px;
flex-wrap:wrap;
margin-bottom:40px;
}

.counter-box div{
background:rgba(255,255,255,0.08);
padding:20px 30px;
border-radius:20px;
min-width:180px;
}

.counter-box h2{
font-size:35px;
color:#00ff88;
margin-bottom:10px;
}


/* PLANS */

.plans{
padding:80px 20px;
text-align:center;
}

.plans h2{
font-size:45px;
margin-bottom:50px;
color:#00ff88;
}

.plan-container{
display:flex;
justify-content:center;
gap:20px;
flex-wrap:wrap;
}

.plan-card{
width:280px;
padding:25px;
background:#111;
border:1px solid #00ff88;
border-radius:25px;
transition:0.3s;
}

.plan-card:hover{
transform:translateY(-10px);
}

.plan-card h3{
font-size:30px;
color:#00ff88;
margin-bottom:15px;
}

.plan-card p{
margin:10px 0;
}

.plan-card button{
margin-top:20px;
padding:12px 30px;
background:#00ff88;
border:none;
border-radius:10px;
font-weight:bold;
cursor:pointer;
}


/* FAQ */

.faq-section{
padding:80px 20px;
text-align:center;
background:#050505;
}

.faq-section h2{
font-size:45px;
margin-bottom:50px;
color:#00ff88;
}

.faq-box{
max-width:800px;
margin:20px auto;
padding:25px;
background:#111;
border-radius:20px;
border:1px solid #00ff88;
text-align:left;
transition:0.3s;
}

.faq-box:hover{
transform:translateY(-5px);
}

.faq-box h3{
margin-bottom:10px;
color:#00ff88;
}


/* TOP INVESTORS */

.top-investors{
padding:80px 20px;
text-align:center;
}

.top-investors h2{
font-size:45px;
margin-bottom:50px;
color:#00ff88;
}

.leaderboard{
display:flex;
justify-content:center;
gap:20px;
flex-wrap:wrap;
}

.leader-card{
width:250px;
padding:25px;
background:#111;
border:1px solid gold;
border-radius:20px;
box-shadow:0 0 20px rgba(255,215,0,0.2);
}

.leader-card h3{
color:#00ff88;
margin-bottom:15px;
}


/* FOOTER */

.footer{
padding:50px 20px;
background:#000;
text-align:center;
border-top:1px solid #00ff88;
}

.footer h2{
font-size:40px;
color:#00ff88;
margin-bottom:15px;
}

.footer-links{
margin:25px 0;
display:flex;
justify-content:center;
gap:20px;
flex-wrap:wrap;
}

.footer-links a{
color:white;
text-decoration:none;
}

.copyright{
margin-top:20px;
opacity:0.7;
}


/* FLOAT BUTTONS */

.whatsapp-btn,
.telegram-btn{
position:fixed;
right:20px;
width:65px;
height:65px;
display:flex;
justify-content:center;
align-items:center;
border-radius:50%;
font-size:35px;
text-decoration:none;
z-index:9999;
}

.whatsapp-btn{
bottom:20px;
background:#25D366;
}

.telegram-btn{
bottom:100px;
background:#0088cc;
}


/* ANIMATION */

@keyframes fadeUp{

0%{
opacity:0;
transform:translateY(50px);
}

100%{
opacity:1;
transform:translateY(0);
}

}


/* MOBILE */

@media(max-width:768px){

.hero-title{
font-size:50px;
}

.hero-subtitle{
font-size:18px;
}

.nav-links{
display:none;
flex-direction:column;
background:#111;
position:absolute;
top:80px;
right:0;
width:220px;
padding:20px;
}

.nav-links.active{
display:flex;
}

.menu-toggle{
display:block;
}

.counter-box div{
width:100%;
}

.plan-card{
width:100%;
max-width:320px;
}

}

/* EXTRA MOBILE OPTIMIZATION */

@media(max-width:600px){

body{
overflow-x:hidden;
}

.navbar{
padding:15px;
}

.logo{
font-size:28px;
}

.hero-title{
font-size:38px;
}

.hero-subtitle{
font-size:16px;
}

.glass-card{
padding:25px;
}

.counter-box{
flex-direction:column;
align-items:center;
}

.counter-box div{
width:100%;
max-width:280px;
}

.plan-card{
width:100%;
}

.leader-card{
width:100%;
}

.faq-box{
padding:18px;
}

.footer-links{
flex-direction:column;
gap:10px;
}

table{
display:block;
overflow-x:auto;
white-space:nowrap;
}

img{
max-width:100%;
height:auto;
}

input,
button{
font-size:16px;
}

}