body{
margin:0;
font-family:Arial;
background:#0f0f0f;
color:white;
    min-height: 100vh;
    overflow-y: auto;
}

header{
background:#1a1a1a;
padding:20px;
text-align:center;
}

#search{
padding:10px;
width:250px;
border-radius:6px;
border:none;
}

.container{
display:grid;
grid-template-columns:repeat(auto-fill,220px);
gap:20px;
padding:30px;
justify-content:center;
}

.game{
text-decoration:none;
color:white;
background:#1f1f1f;
padding:15px;
border-radius:10px;
text-align:center;
transition:0.2s;
}

.game:hover{
background:#333;
transform:scale(1.05);
}

.game img{
width:100%;
border-radius:6px;
}

/* GAME LAUNCHER */

#launcher{
position:fixed;
top:0;
left:0;
width:100vw;
height:100vh;
background:#000;
display:none;
z-index:999;
overflow:hidden;
}

#gameFrame{
width:100%;
height:100%;
border:none;
}
