body{
margin:0;
font-family:Arial;
background:#ffffff;
color:white;
display:flex;
justify-content:center;
}

.container{
width:900px;
background:#2c2c2c;
padding:20px;
margin-top:40px;
border-radius:8px;
}

/* NAVBAR */

.navbar{
display:flex;
align-items:center;
justify-content:space-between;
background:linear-gradient(90deg,#1b2838,#171a21);
padding:10px 20px;
border-radius:6px;
box-shadow:0 4px 15px rgba(0,0,0,0.6);
}

.logo img{
height:100px;
transition:0.3s;
cursor:pointer;
}

.logo img:hover{
transform:scale(1.1);
}

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

.menu a{
text-decoration:none;
color:#ccc;
font-size:14px;
}

.menu a:hover{
color:white;
}

.title{
margin:25px 0;
font-size:18px;
text-align: center;
color:#ccc;
}

.games{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:30px;
}

.game-card{
background:#1f1f1f;
border-radius:8px;
overflow:hidden;
transition:0.3s;
height:320px;
display:flex;
flex-direction:column;
}

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

.game-card:hover{
transform:scale(1.05);
box-shadow:0 0 15px rgba(255,255,255,0.2);
}

.game-title{
padding:10px;
text-align:center;
font-weight:bold;
margin-top:auto;
}

/* LANGUAGE */

.lang-switcher{
display:flex;
gap:5px;
}

.lang-btn{
background:transparent;
border:2px solid #87a4e2;
color:#608ea8;
padding:6px 10px;
border-radius:6px;
cursor:pointer;
font-weight:bold;
}

.lang-btn.active{
background:#83aec7;
color:white;
}

/* FOOTER */

.footer{
margin-top:40px;
padding:15px 20px;
display:flex;
justify-content:space-between;
align-items:center;
background:linear-gradient(90deg,#1b2838,#171a21);
border-radius:6px;
box-shadow:0 4px 15px rgba(0,0,0,0.6);
}

.footer-title{
font-size:14px;
margin-bottom:5px;
}

.social-icons{
display:flex;
gap:15px;
}

.social-icons img{
width:28px;
height:28px;
transition:0.3s;
cursor:pointer;
}

.social-icons img:hover{
transform:scale(1.2);
}

.footer-right{
text-align:right;
font-size:14px;
color:#ccc;
}