body{
background:#0f0f14;
color:white;
font-family:'Poppins', sans-serif;
margin:0;
line-height:1.6;
}

nav{
display:flex;
justify-content:space-between;
padding:20px 40px;
position:sticky;
top:0;
background:#0f0f14;
z-index:100;
}

nav ul{
display:flex;
list-style:none;
gap:20px;
}

nav a{
color:white;
text-decoration:none;
transition:.3s;
}

nav a:hover{
color:#ff2e88;
}

#langToggle{
background:#ff2e88;
border:none;
color:white;
padding:6px 12px;
border-radius:6px;
margin-right:15px;
cursor:pointer;
}

.hero{
text-align:center;
padding:140px 20px;
}

.hero h1{
font-size:50px;
}

.btn{
background:#ff2e88;
padding:12px 30px;
border-radius:8px;
text-decoration:none;
color:white;
display:inline-block;
margin-top:20px;
transition:.3s;
}

.btn:hover{
background:#c2185b;
}

section{
padding:80px 20px;
max-width:1000px;
margin:auto;
}

.cards{
display:flex;
gap:20px;
flex-wrap:wrap;
}

.card{
background:#1a1a22;
padding:25px;
border-radius:12px;
flex:1;
transition:transform .3s, background .3s;
}

.card:hover{
transform:translateY(-6px);
background:#2a1a2f;
}

.card img{
width:100%;
border-radius:10px;
margin-bottom:10px;
}

footer{
text-align:center;
padding:40px;
opacity:.6;
}

/* fade animation */
.fade{
opacity:0;
transform:translateY(40px);
transition:1s;
}

.fade.show{
opacity:1;
transform:translateY(0);
}
