*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

body{
background:#0b0b0b;
color:#fff;
line-height:1.6;
}

a{
text-decoration:none;
}

img{
width:100%;
display:block;
border-radius:20px;
}

.hero{
height:100vh;
background:linear-gradient(rgba(0,0,0,.75),rgba(0,0,0,.75)),url("https://images.unsplash.com/photo-1511512578047-dfb367046420?w=1600");
background-size:cover;
background-position:center;
display:flex;
justify-content:center;
align-items:center;
text-align:center;
padding:20px;
}

.hero h1{
font-size:42px;
font-weight:800;
color:#FFD700;
margin-bottom:15px;
}

.hero p{
font-size:20px;
margin-bottom:30px;
}

.hero span{
color:#00ff88;
font-weight:bold;
}

.btn{
display:inline-block;
background:linear-gradient(45deg,#FFD700,#ff9800);
padding:16px 35px;
border-radius:50px;
color:#000;
font-weight:700;
font-size:18px;
transition:.3s;
box-shadow:0 0 20px gold;
}

.btn:hover{
transform:scale(1.05);
}

.banner,
.payment{
padding:25px;
}

.offer{
padding:40px 20px;
text-align:center;
}

.offer h2{
font-size:32px;
margin-bottom:20px;
color:#FFD700;
}

.card{
background:#1b1b1b;
padding:25px;
border-radius:20px;
max-width:700px;
margin:auto;
box-shadow:0 0 25px rgba(255,215,0,.25);
}

.card p{
margin:12px 0;
font-size:18px;
}

.promo{
padding:40px 20px;
text-align:center;
}

.promo h2{
color:#FFD700;
margin-bottom:20px;
}

.promo-box{
display:inline-block;
background:#FFD700;
color:#000;
padding:18px 50px;
font-size:30px;
font-weight:800;
border-radius:15px;
letter-spacing:4px;
}
.steps{
padding:60px 20px;
text-align:center;
}

.steps h2{
font-size:32px;
color:#FFD700;
margin-bottom:40px;
}

.step{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:25px;
max-width:1100px;
margin:auto;
}

.step div{
background:#181818;
padding:30px 20px;
border-radius:20px;
transition:.3s;
box-shadow:0 0 20px rgba(255,215,0,.12);
}

.step div:hover{
transform:translateY(-8px);
box-shadow:0 0 30px rgba(255,215,0,.35);
}

.step i{
font-size:50px;
color:#FFD700;
margin-bottom:20px;
}

.step h3{
margin-bottom:12px;
font-size:24px;
}

.today{
padding:60px 20px;
text-align:center;
background:linear-gradient(135deg,#111,#1f1f1f);
}

.today h2{
font-size:34px;
color:#FFD700;
margin-bottom:20px;
}

.today p{
max-width:700px;
margin:0 auto 30px;
font-size:18px;
}

.faq{
padding:60px 20px;
max-width:900px;
margin:auto;
}

.faq h2{
text-align:center;
font-size:34px;
color:#FFD700;
margin-bottom:30px;
}

.faq-box{
background:#181818;
padding:20px;
margin-bottom:18px;
border-radius:15px;
}

.faq-box h3{
margin-bottom:10px;
color:#FFD700;
}

footer{
padding:30px;
text-align:center;
background:#050505;
color:#aaa;
}

.sticky{
position:fixed;
left:0;
right:0;
bottom:0;
padding:15px;
background:#000;
box-shadow:0 -5px 25px rgba(0,0,0,.5);
z-index:999;
}

.sticky a{
display:block;
text-align:center;
background:linear-gradient(45deg,#FFD700,#ff9800);
padding:16px;
border-radius:50px;
color:#000;
font-size:20px;
font-weight:700;
animation:pulse 1.5s infinite;
}

@keyframes pulse{

0%{
transform:scale(1);
}

50%{
transform:scale(1.05);
}

100%{
transform:scale(1);
}

}

html{
scroll-behavior:smooth;
}

@media(max-width:768px){

.hero{
height:auto;
padding:80px 20px;
}

.hero h1{
font-size:30px;
}

.hero p{
font-size:17px;
}

.offer h2,
.steps h2,
.today h2,
.faq h2{
font-size:28px;
}

.card p{
font-size:16px;
}

.promo-box{
font-size:24px;
padding:15px 35px;
}

.sticky a{
font-size:18px;
}

}

