@font-face {
  font-family: "Orbitron";
  src: url("../fonts/Orbitron-Regular.ttf");
}

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:"Orbitron", sans-serif;
}

body{
background:#0b0f14;
color:#fff;
}

/* CONTAINER */
.container{
width:90%;
max-width:1100px;
margin:auto;
}

/* HEADER */
header{
padding:15px;
text-align:center;
}

.logo{
height:40px;
}

/* HERO */
.hero{
height:60vh;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
background:#111;
}

.hero h1{
font-size:40px;
}

.btn{
display:inline-block;
margin-top:10px;
padding:10px 15px;
background:#00e5ff;
color:#000;
text-decoration:none;
border-radius:6px;
}

/* TRUST */
.trust{
display:flex;
justify-content:space-around;
padding:20px;
font-size:14px;
opacity:0.8;
}

/* GAMES */
.games{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
gap:15px;
padding:20px;
}

.card{
background:#171c24;
padding:10px;
border-radius:10px;
text-align:center;
}

.card img{
width:100%;
height:180px;
object-fit:cover;
border-radius:8px;
}

.card a{
display:block;
margin-top:8px;
padding:8px;
background:#00e676;
color:#000;
border-radius:6px;
text-decoration:none;
}

/* FOOTER */
footer{
text-align:center;
padding:20px;
opacity:0.6;
}

/* MOBILE */
@media(max-width:768px){

.hero h1{
font-size:26px;
}

.trust{
flex-direction:column;
gap:10px;
text-align:center;
}

}