*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

body{

background:#071126;

color:#fff;

overflow-x:hidden;

}

.blur{

position:absolute;

border-radius:50%;

filter:blur(120px);

z-index:-1;

}

.blur1{

width:300px;

height:300px;

background:#0066ff;

top:-80px;

left:-100px;

}

.blur2{

width:300px;

height:300px;

background:#7b2cff;

right:-120px;

bottom:-80px;

}

header{

padding:30px 8%;

min-height:100vh;

}

nav{

display:flex;

justify-content:space-between;

align-items:center;

margin-bottom:80px;

}

nav h2{

font-size:30px;

}

nav span{

color:#00d2ff;

}

nav ul{

display:flex;

gap:40px;

list-style:none;

}

nav a{

text-decoration:none;

color:white;

transition:.3s;

}

nav a:hover{

color:#00d2ff;

}

.wallet{

padding:14px 28px;

background:linear-gradient(135deg,#00d2ff,#7b2cff);

border:none;

color:white;

border-radius:40px;

cursor:pointer;

font-size:15px;

}

.hero{

display:grid;

grid-template-columns:1fr 1fr;

align-items:center;

gap:80px;

}

.left h1{

font-size:60px;

line-height:1.2;

margin-bottom:20px;

}

.left span{

color:#00d2ff;

}

.left p{

font-size:18px;

opacity:.8;

margin-bottom:35px;

line-height:1.8;

}

.buttons{

display:flex;

gap:20px;

margin-bottom:45px;

}

.claim{

background:#00d2ff;

padding:16px 34px;

border-radius:40px;

text-decoration:none;

color:#071126;

font-weight:600;

}

.learn{

border:2px solid white;

padding:16px 34px;

border-radius:40px;

text-decoration:none;

color:white;

}

.stats{

display:flex;

gap:40px;

}

.stats h2{

font-size:35px;

color:#00d2ff;

}

.right{

display:flex;

justify-content:center;

}

.glass{

width:380px;

padding:45px;

background:rgba(255,255,255,.08);

backdrop-filter:blur(20px);

border:1px solid rgba(255,255,255,.1);

border-radius:30px;

text-align:center;

}

.bitcoin{

font-size:90px;

color:#f7931a;

margin-bottom:25px;
width: 100px;
border-radius: 50%;

}

.glass button{

margin-top:25px;

padding:15px 35px;

background:#00d2ff;

border:none;

border-radius:50px;

cursor:pointer;

font-weight:600;

}

.features{

padding:100px 8%;

text-align:center;

}

.features h2{

font-size:42px;

margin-bottom:50px;

}

.cards{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:30px;

}

.feature{

background:rgba(255,255,255,.05);

padding:40px;

border-radius:20px;

transition:.4s;

}

.feature:hover{

transform:translateY(-12px);

background:rgba(255,255,255,.08);

}

.feature i{

font-size:55px;

color:#00d2ff;

margin-bottom:20px;

}

footer{

padding:40px;

text-align:center;

opacity:.7;

}

/* Mobile */

@media(max-width:900px){

.hero{

grid-template-columns:1fr;

text-align:center;

}

.left h1{

font-size:42px;

}

.stats{

justify-content:center;

flex-wrap:wrap;

}

.cards{

grid-template-columns:1fr;

}

nav{

flex-direction:column;

gap:25px;

}

nav ul{

flex-wrap:wrap;

justify-content:center;

}

}