body{

font-family:Arial;
margin:0;
background:#f4f4f4;

}

.header{

display:flex;
justify-content:space-between;
padding:15px;
background:#111;
color:white;

}

.logo a{

color:white;
text-decoration:none;

}

nav a{

margin-left:20px;
color:white;
text-decoration:none;

}

.container{

max-width:1200px;
margin:auto;
padding:20px;

}

.game-grid{

display:grid;
grid-template-columns:repeat(auto-fill,200px);
gap:20px;

}

.game-card{

background:white;
border-radius:10px;
overflow:hidden;

}

.game-card img{

width:100%;

}

.game-card h3{

text-align:center;
font-size:16px;

}

footer{
text-align:center;
margin-top:50px;
padding:30px 0;
border-top:1px solid #eee;
}

.footer-links{
margin-bottom:10px;
}

.footer-links a{
margin:0 10px;
color:#444;
text-decoration:none;
}

.footer-links a:hover{
text-decoration:underline;
}

.footer-copy{
color:#888;
font-size:13px;
}
