:root{
--primary:#ff2d55;
--secondary:#ff6b4a;
--gradient:linear-gradient(135deg,#ff2d55,#ff6b4a);
--dark:#07111f;
--light:#f7f8fc;
}

*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:Arial,sans-serif;
background:#07111f;
color:#fff;
overflow-x:hidden;
line-height:1.7;
}

img{
max-width:100%;
display:block;
}

a{
text-decoration:none;
}

.container{
max-width:1200px;
margin:auto;
padding:0 20px;
}

/* HERO */

.hero{
position:relative;
overflow:hidden;
padding:35px 0 80px;
background:
radial-gradient(circle at top right,rgba(255,45,85,0.18),transparent 35%),
linear-gradient(135deg,#050b16,#091528 60%,#07111f);
}

.hero-wrap{
display:flex;
align-items:center;
justify-content:space-between;
gap:50px;
}

.hero-content{
flex:1;
padding-top:0;
}

.hero-badge{
display:inline-flex;
align-items:center;
gap:10px;
padding:10px 18px;
border-radius:50px;
background:rgba(255,45,85,0.12);
color:#ff2d55;
font-size:14px;
font-weight:700;
margin-bottom:20px;
}

.hero-content h1{
font-size:78px;
line-height:0.95;
font-weight:900;
margin-bottom:22px;
letter-spacing:-2px;
}

.hero-content p{
font-size:18px;
color:#c5cedd;
margin-bottom:35px;
max-width:580px;
}

.hero-btns{
display:flex;
gap:15px;
flex-wrap:wrap;
margin-bottom:35px;
}

.btn{
display:inline-flex;
align-items:center;
justify-content:center;
gap:10px;
padding:15px 30px;
border-radius:14px;
font-weight:700;
transition:none !important;
}

.btn-primary{
background:var(--gradient);
color:#fff;
box-shadow:0 10px 30px rgba(255,45,85,0.3);
}

.btn-secondary{
border:1px solid rgba(255,255,255,0.1);
background:rgba(255,255,255,0.04);
color:#fff;
}

.hero-features{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:18px;
}

.feature-box{
display:flex;
align-items:center;
gap:14px;
background:rgba(255,255,255,0.04);
backdrop-filter:blur(10px);
border:1px solid rgba(255,255,255,0.06);
padding:20px;
border-radius:18px;
}

.feature-box i{
color:#ff4d6d;
font-size:22px;
min-width:22px;
}

.hero-image{
flex:1;
}

.hero-image img{
width:100%;
max-width:730px;
margin-left:auto;
border-radius:35px;
box-shadow:0 25px 60px rgba(0,0,0,0.45);
}

/* CONTENT */

.zynga-content{
padding:100px 0;
background:#f7f8fc;
}

.content-heading{
max-width:850px;
margin-bottom:60px;
}

.content-heading.center{
text-align:center;
margin:auto auto 60px;
}

.mini-title{
display:inline-block;
padding:10px 18px;
background:rgba(255,45,85,0.08);
color:#ff2d55;
border-radius:50px;
font-size:13px;
font-weight:700;
margin-bottom:20px;
}

.content-heading h2{
font-size:54px;
line-height:1.1;
font-weight:800;
margin-bottom:20px;
color:#111;
}

.content-heading p{
font-size:18px;
color:#555;
line-height:1.8;
}

.steps-wrapper{
display:flex;
flex-direction:column;
gap:25px;
}

.content-card{
display:flex;
gap:30px;
background:#fff;
padding:35px;
border-radius:30px;
box-shadow:0 10px 40px rgba(0,0,0,0.05);
border:1px solid rgba(255,45,85,0.06);
}

.step-number{
min-width:85px;
height:85px;
display:flex;
align-items:center;
justify-content:center;
border-radius:24px;
background:var(--gradient);
color:#fff;
font-size:30px;
font-weight:800;
}

.step-content h3{
font-size:28px;
margin-bottom:12px;
color:#111;
}

.step-content p{
color:#555;
font-size:17px;
line-height:1.8;
}

/* PAYMENT */

.payment-methods{
padding:100px 0;
background:#fff;
}

.payment-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
}

.payment-box{
background:linear-gradient(145deg,#091528,#0f1c34);
padding:45px 20px;
border-radius:30px;
text-align:center;
}

.payment-box i{
font-size:60px;
margin-bottom:20px;
color:#ff4d6d;
}

.payment-box h3{
font-size:24px;
color:#fff;
}

/* TRUST */

.trust-section{
padding:100px 0;
background:#f7f8fc;
}

.trust-box{
background:#fff;
padding:70px;
border-radius:40px;
}

.trust-box h2{
font-size:52px;
margin-bottom:25px;
color:#111;
}

.trust-box p{
font-size:18px;
line-height:1.9;
margin-bottom:20px;
color:#555;
}

/* FLOATING WHATSAPP */

.floating-whatsapp{
position:fixed;
bottom:25px;
right:25px;
width:65px;
height:65px;
border-radius:50%;
background:linear-gradient(135deg,#25d366,#1ebe5d);
display:flex;
align-items:center;
justify-content:center;
font-size:30px;
color:#fff;
z-index:9999;
box-shadow:0 15px 40px rgba(0,0,0,0.25);
}

/* TABLET */

@media(max-width:991px){

.hero-wrap{
flex-direction:column-reverse;
gap:40px;
}

.hero-content{
text-align:center;
}

.hero-content h1{
font-size:52px;
}

.hero-content p{
margin:auto auto 30px;
}

.hero-btns{
justify-content:center;
}

.hero-features{
grid-template-columns:1fr;
}

.payment-grid{
grid-template-columns:repeat(2,1fr);
}

}

/* MOBILE */

@media(max-width:576px){

.hero{
padding:20px 0 50px;
}

.hero-content h1{
font-size:38px;
letter-spacing:-1px;
}

.hero-content p{
font-size:16px;
}

.hero-btns{
flex-direction:column;
}

.btn{
width:100%;
}

.payment-grid{
grid-template-columns:1fr;
}

.content-card{
padding:25px;
flex-direction:column;
}

.trust-box{
padding:35px;
}

.content-heading h2{
font-size:32px;
}

}