*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

body{
background:linear-gradient(135deg,#0f172a,#1e1b4b,#312e81);
color:white;
overflow-x:hidden;
}

header{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 8%;
background:rgba(255,255,255,.08);
backdrop-filter:blur(12px);
position:sticky;
top:0;
z-index:999;
}

.logo{
font-size:32px;
font-weight:700;
}

.logo span{
color:#ff4d6d;
}

nav a{
text-decoration:none;
color:white;
margin:0 15px;
transition:.3s;
}

nav a:hover{
color:#ff4d6d;
}

.buttons button{
padding:10px 22px;
border:none;
border-radius:30px;
cursor:pointer;
margin-left:10px;
font-weight:600;
}

.join{
background:#ff4d6d;
color:white;
}

.login{
background:white;
color:#111;
}

.hero{
display:flex;
justify-content:space-between;
align-items:center;
padding:80px 8%;
gap:60px;
flex-wrap:wrap;
}

.left{
flex:1;
min-width:320px;
}

.left h4{
color:#ffb703;
margin-bottom:10px;
}

.left h1{
font-size:58px;
margin-bottom:20px;
}

.left h1 span{
color:#ff4d6d;
}

.left p{
line-height:1.8;
font-size:18px;
color:#ddd;
margin-bottom:30px;
}

.hero-btn button{
padding:14px 30px;
border:none;
border-radius:40px;
cursor:pointer;
font-size:16px;
margin-right:15px;
}

.hero-btn button:first-child{
background:#ff4d6d;
color:white;
}

.outline{
background:transparent;
border:2px solid white!important;
color:white;
}

.right{
flex:1;
text-align:center;
min-width:320px;
}

.right img{
width:100%;
max-width:430px;
border-radius:25px;
box-shadow:0 20px 50px rgba(0,0,0,.4);
}

.small-images{
display:flex;
justify-content:center;
gap:20px;
margin-top:25px;
}

.small-images img{
width:160px;
height:160px;
object-fit:cover;
border-radius:20px;
}

section{
padding:80px 8%;
}

section h2{
text-align:center;
font-size:40px;
margin-bottom:40px;
}

.cards{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:25px;
}

.card{
background:rgba(255,255,255,.08);
padding:35px;
border-radius:20px;
text-align:center;
transition:.4s;
backdrop-filter:blur(10px);
}

.card:hover{
transform:translateY(-8px);
background:#ff4d6d;
}

.gallery{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:25px;
}

.gallery img{
width:100%;
height:420px;
object-fit:cover;
border-radius:20px;
transition:.4s;
}

.gallery img:hover{
transform:scale(1.05);
}

.coming{
text-align:center;
}

footer{
padding:50px;
text-align:center;
background:#09090f;
}

@media(max-width:900px){

header{
flex-direction:column;
gap:20px;
}

nav{
display:flex;
flex-wrap:wrap;
justify-content:center;
}

.hero{
flex-direction:column;
text-align:center;
}

.left h1{
font-size:42px;
}

.small-images{
flex-direction:column;
align-items:center;
}

.small-images img{
width:220px;
height:220px;
}

}