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

body{

background:#060B16;
color:white;
overflow-x:hidden;

}

.bg{

position:fixed;
width:100%;
height:100%;
background:

radial-gradient(circle at top,#1b3b8f,transparent 40%),
radial-gradient(circle at bottom,#00d26a22,transparent 45%);

z-index:-2;

}

.hero{

min-height:100vh;

display:flex;
justify-content:center;
align-items:center;

padding:30px;

}

.pulse{

box-shadow:0 0 25px #00E676;

transform:scale(1.03);

transition:.4s;

}

.glass{

max-width:700px;

width:100%;

padding:45px;

border-radius:25px;

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

backdrop-filter:blur(20px);

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

text-align:center;

box-shadow:0 20px 50px rgba(0,0,0,.5);

}

.logo{

font-size:70px;

margin-bottom:15px;

animation:float 3s infinite;

}

h3{

color:#00E676;

letter-spacing:4px;

margin-bottom:10px;

}

h1{

font-size:48px;

font-weight:800;

line-height:1.2;

margin-bottom:20px;

}

p{

color:#ccc;

font-size:18px;

margin-bottom:25px;

}

ul{

list-style:none;

margin-bottom:35px;

}

ul li{

margin:10px;

font-size:18px;

}

.buttons{

display:flex;

gap:18px;

justify-content:center;

flex-wrap:wrap;

}

.buttons a{

padding:18px 35px;

border-radius:60px;

font-weight:700;

text-decoration:none;

transition:.3s;

}

.vip{

background:#00E676;

color:#111;

}

.vip:hover{

transform:translateY(-5px);

box-shadow:0 10px 25px #00E67688;

}

.free{

border:2px solid #229ED9;

color:white;

}

.free:hover{

background:#229ED9;

}

.stats{

margin-top:45px;

display:flex;

justify-content:space-around;

}

.stats h2{

color:#FFD54F;

font-size:30px;

}

.stats span{

color:#bbb;

}

@keyframes float{

50%{

transform:translateY(-8px);

}

}

@media(max-width:768px){

.glass{

padding:30px 20px;

}

h1{

font-size:34px;

}

p{

font-size:16px;

}

.stats{

flex-direction:column;

gap:25px;

}

.buttons{

flex-direction:column;

}

.buttons a{

width:100%;

}

}