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

body{
background:linear-gradient(135deg,#0f0c29,#1f1b3a,#24243e);
color:white;
overflow-x:hidden;
}

/* PARTICLES */
canvas{
position:fixed;
top:0;
left:0;
z-index:-1;
}

/* NAVBAR */
.navbar{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 60px;
background:rgba(0,0,0,0.6);
backdrop-filter:blur(12px);
position:fixed;
width:100%;
top:0;
z-index:1000;
}

/* LOGO */
.logo{
display:flex;
align-items:center;
gap:10px;
font-weight:800;
font-size:20px;
color:white;
}

/* LINKS */
.nav-links{
display:flex;
gap:35px;
list-style:none;
}

.nav-links a{
color:white;
text-decoration:none;
font-weight:500;
transition:0.3s;
}

.nav-links a:hover{
color:#ff00cc;
}

/* HAMBURGER */
.menu-toggle{
display:none;
flex-direction:column;
gap:6px;
cursor:pointer;
}

.menu-toggle span{
width:28px;
height:3px;
background:white;
border-radius:3px;
transition:0.3s;
}

.menu-toggle.active span:nth-child(1){
transform:rotate(45deg) translate(6px,6px);
}

.menu-toggle.active span:nth-child(2){
opacity:0;
}

.menu-toggle.active span:nth-child(3){
transform:rotate(-45deg) translate(6px,-6px);
}

/* MOBILE */
@media(max-width:900px){

.nav-links{
position:absolute;
top:100%;
left:0;
width:100%;
background:rgba(0,0,0,0.95);
flex-direction:column;
align-items:center;
gap:25px;
padding:30px 0;
display:none;
}

.nav-links.active{
display:flex;
}

.menu-toggle{
display:flex;
}

}

/* HERO */
.hero{
min-height:100vh;
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
text-align:center;
padding:120px 20px 60px 20px;
}

.hero h1{
font-size:48px;
background:linear-gradient(90deg,#ff00cc,#ff9900);
-webkit-background-clip:text;
color:transparent;
animation:glow 2s infinite alternate;
}

@keyframes glow{
from{text-shadow:0 0 10px #ff00cc;}
to{text-shadow:0 0 25px #ff9900;}
}

.hero p{
margin-top:10px;
opacity:0.8;
}

/* COUNTDOWN */
.countdown{
display:flex;
gap:20px;
margin-top:35px;
}

.countdown div{
background:rgba(255,255,255,0.07);
padding:20px;
border-radius:15px;
min-width:80px;
backdrop-filter:blur(8px);
}

.countdown span{
font-size:22px;
font-weight:700;
}

/* PARTICIPANTS */
.participants{
margin-top:20px;
color:#ff9900;
font-weight:600;
}

/* CTA */
.cta-button{
margin-top:25px;
padding:14px 40px;
background:linear-gradient(90deg,#ff00cc,#ff9900);
border-radius:50px;
color:white;
text-decoration:none;
font-weight:600;
transition:0.3s;
}

.cta-button:hover{
transform:translateY(-3px);
box-shadow:0 0 20px #ff00cc;
}

/* SOCIALS HERO */
.socials{
margin-top:25px;
display:flex;
gap:20px;
justify-content:center;
flex-wrap:wrap;
}

.socials a{
padding:12px 25px;
border-radius:50px;
text-decoration:none;
color:white;
font-weight:600;
display:flex;
align-items:center;
gap:10px;
transition:0.3s;
}

.telegram{background:#0088cc;}
.twitter{background:#111;}

.socials a:hover{
transform:translateY(-3px);
box-shadow:0 0 15px rgba(255,255,255,0.4);
}

/* BUY SECTION */
.presale-box{
padding:80px 20px 50px 20px;
text-align:center;
}

.presale-box h2{
font-size:32px;
margin-bottom:5px;
}

.buy-subtitle{
opacity:0.7;
margin-bottom:25px;
}

/* LIMITS */
.buy-limits{
display:flex;
justify-content:center;
gap:25px;
margin-bottom:30px;
flex-wrap:wrap;
}

.buy-limits div{
background:rgba(255,255,255,0.06);
padding:12px 25px;
border-radius:30px;
border:1px solid rgba(255,255,255,0.1);
font-weight:600;
}

/* PROGRESS */
.progress-container{
width:80%;
max-width:600px;
margin:20px auto;
height:22px;
background:rgba(255,255,255,0.15);
border-radius:20px;
overflow:hidden;
}

.progress-bar{
height:100%;
width:0%;
background:linear-gradient(90deg,#ff00cc,#ff9900);
box-shadow:0 0 15px #ff00cc;
transition:0.8s;
}

.progress-text{
margin-top:10px;
opacity:0.9;
}

/* WALLET CARD */
.wallet-card{
margin-top:35px;
padding:30px;
background:rgba(255,255,255,0.06);
border-radius:20px;
backdrop-filter:blur(12px);
max-width:600px;
margin-left:auto;
margin-right:auto;
border:1px solid rgba(255,255,255,0.1);
}

.wallet-label{
margin-bottom:15px;
font-weight:600;
}

.wallet-box{
display:flex;
justify-content:center;
}

.wallet-box input{
width:70%;
padding:12px;
border:none;
border-radius:10px 0 0 10px;
font-size:14px;
}

.wallet-box button{
padding:12px 25px;
border:none;
background:linear-gradient(90deg,#ff00cc,#ff9900);
color:white;
font-weight:600;
border-radius:0 10px 10px 0;
cursor:pointer;
transition:0.3s;
}

.wallet-box button:hover{
transform:scale(1.05);
}

.instant-delivery{
margin-top:15px;
color:#00ff88;
font-weight:500;
}

.fomo{
margin-top:20px;
color:#ff9900;
font-weight:600;
}

/* HOW TO BUY — MÁS PROFESIONAL Y CERCA */
.info-section{
padding:60px 20px;
text-align:center;
}

#how{
margin-top:20px;
}

#how h2{
margin-bottom:30px;
}

.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:20px;
max-width:800px;
margin:0 auto;
}

#how .grid div{
background:rgba(255,255,255,0.06);
padding:25px;
border-radius:15px;
border:1px solid rgba(255,255,255,0.1);
transition:0.3s;
}

#how .grid div:hover{
transform:translateY(-5px);
box-shadow:0 0 20px rgba(255,0,200,0.4);
}

.dark{
background:rgba(0,0,0,0.2);
}

/* LAST CHANCE */
.last-chance{
padding:40px;
background:#ff0033;
text-align:center;
font-weight:800;
font-size:22px;
animation:blink 1.2s infinite;
}

@keyframes blink{
0%{opacity:1;}
50%{opacity:0.6;}
100%{opacity:1;}
}

/* FOOTER */
footer{
padding:40px 20px;
background:#000;
text-align:center;
}

.footer-socials{
margin-bottom:20px;
display:flex;
justify-content:center;
gap:30px;
font-size:22px;
}

.footer-socials a{
color:white;
transition:0.3s;
}

.footer-socials a:hover{
color:#ff00cc;
transform:scale(1.2);
}

/* MOBILE */
@media(max-width:768px){
.navbar{
padding:15px 25px;
}

.navbar ul{
gap:18px;
}
.navbar{
padding:15px 20px;
}

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

.wallet-box input{
width:65%;
}

}
