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

body{
background:linear-gradient(180deg,#f5f8ff,#eef4ff);
color:#111827;
}

.container{
width:100%;
max-width:430px;
margin:auto;
padding:20px;
}

.online{
width:max-content;
margin:20px auto;
background:#e9f8ef;
color:#149647;
padding:12px 22px;
border-radius:40px;
font-weight:700;
font-size:15px;
box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.logo{
display:flex;
justify-content:center;
margin-top:25px;
}

.logo img{
width:160px;
height:160px;
border-radius:50%;
background:#fff;
padding:10px;
box-shadow:0 15px 40px rgba(0,0,0,.12);
}

h1{
margin-top:25px;
font-size:38px;
text-align:center;
font-weight:800;
color:#0b1f4d;
line-height:1.15;
}

.subtitle{
text-align:center;
font-size:18px;
color:#2563eb;
font-weight:600;
margin-top:10px;
}

.rating{
margin-top:20px;
text-align:center;
font-size:24px;
color:#ffb400;
}

.rating span{
display:block;
font-size:16px;
color:#555;
margin-top:8px;
}

.join{
display:block;
margin:30px auto;
background:#1463ff;
color:#fff;
text-decoration:none;
text-align:center;
padding:18px;
font-size:19px;
font-weight:700;
border-radius:18px;
box-shadow:0 18px 40px rgba(20,99,255,.35);
transition:.3s;
}

.join:hover{
transform:translateY(-4px);
}

.stats{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:12px;
margin:25px 0;
}

.box{
background:#fff;
border-radius:18px;
padding:18px;
text-align:center;
box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.box h2{
color:#1463ff;
font-size:28px;
font-weight:800;
}

.box p{
margin-top:6px;
color:#666;
font-size:15px;
}

.heading{
text-align:center;
font-size:30px;
margin:35px 0 20px;
color:#0b1f4d;
}

.feature{
background:#fff;
padding:18px;
margin-bottom:15px;
border-radius:18px;
font-size:17px;
font-weight:600;
box-shadow:0 10px 20px rgba(0,0,0,.07);
}

.bottom{
margin-top:35px;
}

.disclaimer{
text-align:center;
font-size:13px;
color:#666;
line-height:1.8;
margin:25px 0 40px;
}/* ---------- PREMIUM EFFECTS ---------- */

.container{
position:relative;
overflow:hidden;
}

.container::before{
content:"";
position:absolute;
width:220px;
height:220px;
background:#2d6cff;
filter:blur(120px);
opacity:.12;
top:-80px;
right:-80px;
border-radius:50%;
z-index:-1;
}

.container::after{
content:"";
position:absolute;
width:220px;
height:220px;
background:#15c39a;
filter:blur(120px);
opacity:.08;
bottom:-120px;
left:-100px;
border-radius:50%;
z-index:-1;
}

.join{
position:relative;
overflow:hidden;
}

.join::before{
content:"";
position:absolute;
left:-120%;
top:0;
width:100%;
height:100%;
background:linear-gradient(
90deg,
transparent,
rgba(255,255,255,.45),
transparent
);
transition:.8s;
}

.join:hover::before{
left:120%;
}

.join:hover{
background:#0e54e8;
box-shadow:0 20px 45px rgba(20,99,255,.45);
}

.box{
transition:.35s;
cursor:pointer;
}

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

.feature{
display:flex;
align-items:center;
gap:15px;
transition:.35s;
cursor:pointer;
border:1px solid #edf2ff;
}

.feature:hover{
transform:translateY(-6px);
border-color:#1463ff;
}

.feature::before{
content:"✓";
width:38px;
height:38px;
border-radius:50%;
background:#1463ff;
color:white;
display:flex;
align-items:center;
justify-content:center;
font-weight:700;
flex-shrink:0;
}

.heading{
font-weight:800;
}

.disclaimer{
padding:18px;
background:white;
border-radius:16px;
box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.fade{
animation:fade .7s ease;
}

@keyframes fade{

0%{
opacity:0;
transform:translateY(25px);
}

100%{
opacity:1;
transform:translateY(0);
}

}

.online,
.logo,
h1,
.subtitle,
.rating,
.join,
.stats,
.heading,
.feature,
.disclaimer{

animation:fade .8s ease;

}

@media(max-width:480px){

h1{
font-size:32px;
}

.subtitle{
font-size:16px;
}

.join{
font-size:17px;
padding:16px;
}

.box h2{
font-size:24px;
}

.feature{
font-size:15px;
padding:15px;
}

.logo img{
width:135px;
height:135px;
}

}.trust{

margin-top:45px;

display:flex;

flex-direction:column;

gap:18px;

}

.trust-card{

background:rgba(255,255,255,.75);

backdrop-filter:blur(20px);

border:1px solid rgba(255,255,255,.5);

padding:22px;

border-radius:22px;

box-shadow:0 18px 45px rgba(0,0,0,.08);

transition:.35s;

}

.trust-card:hover{

transform:translateY(-8px);

}

.icon{

width:58px;

height:58px;

border-radius:50%;

background:#1463ff;

display:flex;

align-items:center;

justify-content:center;

font-size:24px;

color:white;

margin-bottom:15px;

}

.trust-card h3{

font-size:21px;

margin-bottom:12px;

color:#0f172a;

}

.trust-card p{

color:#64748b;

line-height:1.7;

}