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

body{
background:#08120d;
color:#fff;
overflow-x:hidden;
}

header{
position:fixed;
top:0;
left:0;
width:100%;
padding:15px 8%;
display:flex;
justify-content:space-between;
align-items:center;
background:rgba(0,0,0,.45);
backdrop-filter:blur(12px);
z-index:1000;
}

.logo{
font-size:28px;
font-weight:700;
color:#27ff7b;
}

.header-btn{
background:#27ff7b;
padding:12px 22px;
border-radius:30px;
text-decoration:none;
font-weight:600;
color:#000;
transition:.3s;
}

.header-btn:hover{
transform:scale(1.05);
}

.hero{
min-height:100vh;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
padding:120px 20px 60px;
background:linear-gradient(135deg,#07110b,#10391d);
}

.content{
max-width:700px;
}

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

.hero p{
font-size:18px;
color:#d8d8d8;
line-height:1.8;
}

.buttons{
display:flex;
justify-content:center;
gap:15px;
margin-top:35px;
flex-wrap:wrap;
}

.register,
.telegram{
padding:16px 34px;
border-radius:50px;
text-decoration:none;
font-weight:700;
transition:.3s;
}

.register{
background:#27ff7b;
color:#000;
}

.telegram{
background:#0088cc;
color:#fff;
}

.register:hover,
.telegram:hover{
transform:translateY(-4px);
box-shadow:0 0 20px rgba(39,255,123,.5);
}

.features,
.steps,
.reviews,
.faq{
padding:70px 8%;
}

.features h2,
.steps h2,
.reviews h2,
.faq h2{
text-align:center;
font-size:36px;
margin-bottom:40px;
}

.cards{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
gap:25px;
}

.card{
background:rgba(255,255,255,.05);
backdrop-filter:blur(12px);
padding:25px;
border-radius:18px;
border:1px solid rgba(39,255,123,.3);
transition:.3s;
}

.card:hover{
transform:translateY(-8px);
border-color:#27ff7b;
}

.card h3{
margin-bottom:15px;
color:#27ff7b;
}

.step{
background:#111;
margin-bottom:18px;
padding:20px;
display:flex;
align-items:center;
gap:20px;
border-radius:15px;
}

.step div{
font-size:34px;
}

.review{
background:#101010;
padding:25px;
border-radius:15px;
margin-bottom:20px;
border-left:5px solid #27ff7b;
}

.review p{
margin-top:10px;
line-height:1.7;
}

.faq-box{
background:#111;
padding:22px;
margin-bottom:18px;
border-radius:15px;
}

.faq-box h3{
color:#27ff7b;
margin-bottom:10px;
}

footer{
padding:35px;
text-align:center;
color:#999;
}

.bottom-bar{
position:fixed;
bottom:0;
left:0;
width:100%;
display:flex;
background:#07110b;
padding:10px;
gap:10px;
box-shadow:0 -5px 20px rgba(0,0,0,.5);
}

.bottom-register,
.bottom-telegram{
flex:1;
text-align:center;
padding:15px;
border-radius:12px;
text-decoration:none;
font-weight:700;
}

.bottom-register{
background:#27ff7b;
color:#000;
}

.bottom-telegram{
background:#0088cc;
color:#fff;
}

@media(max-width:768px){

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

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

.features h2,
.steps h2,
.reviews h2,
.faq h2{
font-size:28px;
}

.buttons{
flex-direction:column;
}

.register,
.telegram{
width:100%;
}

header{
padding:15px 20px;
}

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