/* =====================================
   CROACKAX V2 - STYLE.CSS (PART 1)
===================================== */

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

html{
scroll-behavior:smooth;
}

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

/* Background Glow */

body::before{
content:"";
position:fixed;
top:-250px;
left:-250px;
width:600px;
height:600px;
background:#00ff88;
filter:blur(180px);
opacity:.08;
border-radius:50%;
z-index:-2;
}

body::after{
content:"";
position:fixed;
bottom:-250px;
right:-250px;
width:600px;
height:600px;
background:#00ff88;
filter:blur(180px);
opacity:.08;
border-radius:50%;
z-index:-2;
}

/* Container */

.container{
width:min(92%,1200px);
margin:auto;
}

/* Loader */

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

.spinner{
width:70px;
height:70px;
border:6px solid rgba(255,255,255,.15);
border-top:6px solid #00ff88;
border-radius:50%;
animation:spin 1s linear infinite;
}

@keyframes spin{
100%{
transform:rotate(360deg);
}
}

/* Header */

header{
position:fixed;
top:0;
left:0;
width:100%;
z-index:1000;
backdrop-filter:blur(18px);
background:rgba(0,0,0,.45);
border-bottom:1px solid rgba(255,255,255,.08);
}

header .container{
display:flex;
justify-content:space-between;
align-items:center;
padding:18px 0;
}

.logo{
font-size:28px;
font-weight:800;
color:#00ff88;
text-decoration:none;
letter-spacing:1px;
}

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

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

nav a:hover{
color:#00ff88;
}

nav a::after{
content:"";
position:absolute;
left:0;
bottom:-6px;
width:0;
height:2px;
background:#00ff88;
transition:.3s;
}

nav a:hover::after{
width:100%;
}

/* Hamburger */

.menu-btn{
display:none;
flex-direction:column;
gap:6px;
cursor:pointer;
}

.menu-btn span{
width:30px;
height:3px;
background:#fff;
border-radius:20px;
transition:.35s;
}

/* Hero */

.hero{
min-height:100vh;
display:flex;
align-items:center;
padding:120px 0 80px;
}

.hero-grid{
display:grid;
grid-template-columns:1fr 1fr;
align-items:center;
gap:70px;
}

.badge{
display:inline-block;
padding:12px 22px;
border:1px solid rgba(0,255,136,.25);
border-radius:50px;
color:#00ff88;
margin-bottom:28px;
font-size:14px;
font-weight:600;
background:rgba(0,255,136,.05);
backdrop-filter:blur(10px);
}

.hero h1{
font-size:clamp(50px,8vw,80px);
line-height:1;
margin-bottom:22px;
font-weight:800;
}

.hero h1 span{
display:block;
color:#00ff88;
}

.hero p{
max-width:560px;
font-size:18px;
color:#d4d4d4;
margin-bottom:40px;
}

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

.btn{
display:inline-flex;
justify-content:center;
align-items:center;
padding:15px 34px;
border-radius:50px;
background:#00ff88;
color:#000;
font-weight:700;
text-decoration:none;
transition:.3s;
}

.btn:hover{
transform:translateY(-4px);
box-shadow:0 0 35px #00ff88;
}

.btn.outline{
background:transparent;
border:2px solid #00ff88;
color:#00ff88;
}

.btn.outline:hover{
background:#00ff88;
color:#000;
}

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

.hero-image img{
width:100%;
max-width:450px;
height:auto;
display:block;
margin:auto;
animation:float 4s ease-in-out infinite;
filter:drop-shadow(0 0 30px rgba(0,255,136,.45));
}

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

section{
padding:100px 0;
}

h2{
font-size:clamp(34px,5vw,48px);
margin-bottom:20px;
color:#00ff88;
font-weight:700;
text-align:center;
}

section p{
max-width:800px;
margin:0 auto;
text-align:center;
color:#cfcfcf;
font-size:17px;
}

/* Cards */

.cards{
margin-top:60px;
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
}

.card{
background:rgba(255,255,255,.05);
border:1px solid rgba(0,255,136,.15);
border-radius:24px;
padding:35px;
text-align:center;
backdrop-filter:blur(14px);
transition:.35s;
}

.card:hover{
transform:translateY(-8px);
border-color:#00ff88;
box-shadow:0 0 25px rgba(0,255,136,.25);
}

.card h3{
font-size:34px;
color:#00ff88;
margin-bottom:10px;
}

/* Timeline */

.timeline{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
margin-top:55px;
}

.timeline-box{
padding:30px;
background:rgba(255,255,255,.05);
border-left:5px solid #00ff88;
border-radius:20px;
transition:.35s;
}

.timeline-box:hover{
transform:translateY(-6px);
}

.timeline-box h3{
margin-bottom:12px;
color:#00ff88;
}

/* FAQ */

.faq{
margin-top:50px;
display:grid;
gap:20px;
}

.faq-item{
padding:25px;
border-radius:18px;
background:rgba(255,255,255,.05);
border:1px solid rgba(255,255,255,.08);
}

.faq-item h3{
margin-bottom:10px;
color:#00ff88;
}

/* Footer */

footer{
padding:40px 0;
border-top:1px solid rgba(255,255,255,.08);
text-align:center;
color:#aaa;
}

/* Back To Top */

#topBtn{
position:fixed;
bottom:25px;
right:25px;
width:50px;
height:50px;
border:none;
border-radius:50%;
background:#00ff88;
color:#000;
font-size:22px;
font-weight:bold;
cursor:pointer;
display:none;
box-shadow:0 0 20px rgba(0,255,136,.45);
}

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

@media(max-width:992px){

.hero-grid{
grid-template-columns:1fr;
text-align:center;
}

.hero-image{
order:-1;
}

.hero p{
margin:auto auto 35px;
}

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

.cards{
grid-template-columns:repeat(2,1fr);
}

.timeline{
grid-template-columns:1fr;
}

}

@media(max-width:768px){

.menu-btn{
display:flex;
}

nav{
position:fixed;
top:75px;
left:-100%;
width:100%;
background:#0b0b0b;
display:flex;
flex-direction:column;
padding:30px;
gap:22px;
transition:.35s;
}

nav.active{
left:0;
}

.logo{
font-size:24px;
}

.hero{
padding-top:110px;
}

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

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

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

.cards{
grid-template-columns:1fr;
}

.card{
padding:28px;
}

section{
padding:80px 0;
}

}

@media(max-width:480px){

.container{
width:94%;
}

.badge{
font-size:12px;
padding:10px 16px;
}

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

.btn{
width:100%;
}

.btn.outline{
width:100%;
}

.hero-buttons{
flex-direction:column;
}

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

h2{
font-size:32px;
}

}k
