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

body{
    background:#111827;
    color:white;
    font-family:Arial, sans-serif;
    min-height:100vh;
}

.logo-title{

    display:flex;

    align-items:center;

    justify-content:center;

    gap:15px;

    font-size:4rem;
}

.logo-title img{

    width:70px;

    height:70px;

    object-fit:contain;
}

header{
    text-align:center;
    padding:40px 20px;
}

header h1{
    font-size:4rem;
    margin-bottom:10px;
}

header p{
    color:#ccc;
    font-size:1.1rem;
}

.game-grid{

    max-width:1400px;

    margin:auto;

    padding:20px;

    display:grid;

    grid-template-columns:
        repeat(auto-fit,minmax(350px,1fr));

    gap:25px;
}

.game-card{

    position:relative;

    overflow:hidden;

    border-radius:20px;

    text-decoration:none;

    color:white;

    transition:.3s;
}

.game-card img{

    width:100%;
    height:280px;

    object-fit:cover;

    display:block;
}

.game-card:hover{

    transform:translateY(-8px);
}

.overlay{

    position:absolute;

    bottom:0;

    left:0;

    width:100%;

    background:
        linear-gradient(
            transparent,
            rgba(0,0,0,.85)
        );

    padding:25px;
}

.overlay h2{

    margin-bottom:8px;
}

.overlay p{

    color:#ddd;
}

footer{

    text-align:center;

    padding:40px;

    color:#888;
}