*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
background:#050816;
font-family:Arial,sans-serif;
color:white;
}

.container{
max-width:1400px;
margin:auto;
padding:25px;
}

.hero{
position:relative;
overflow:hidden;
border-radius:25px;
margin-bottom:30px;
}

.hero img{
width:100%;
height:420px;
object-fit:cover;
display:block;
}

.overlay{
position:absolute;
left:0;
right:0;
bottom:0;
padding:40px;
background:linear-gradient(
to top,
rgba(0,0,0,.8),
rgba(0,0,0,.1)
);
}

.overlay h1{
font-size:48px;
margin-bottom:10px;
}

.overlay p{
font-size:18px;
color:#ddd;
}

.section-title{
margin:25px 0;
font-size:28px;
}

.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
gap:20px;
}

.card{
background:#111827;
border-radius:20px;
overflow:hidden;
border:1px solid #222;
transition:.3s;
cursor:pointer;
}

.card:hover{
transform:translateY(-6px);
box-shadow:0 0 30px rgba(139,92,246,.5);
}

.card img{
width:100%;
height:220px;
object-fit:cover;
}

.content{
padding:18px;
}

.content h3{
margin-bottom:10px;
}

.content p{
color:#aaa;
}

.models{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:15px;
margin-top:20px;
}

.model{
background:#111827;
padding:20px;
text-align:center;
border-radius:15px;
border:1px solid #222;
transition:.3s;
}

.model:hover{
background:#7c3aed;
}

@media(max-width:768px){

.hero img{
height:260px;
}

.overlay h1{
font-size:30px;
}

.grid{
grid-template-columns:1fr;
}

}
