body {
    background:#111;
    color:white;
    font-family:Arial,sans-serif;
}

.games-title{
    text-align:center;
    font-size:42px;
    margin:40px 0 20px;
}

.games-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
    padding:0 40px;
    justify-items:center;
}

.game-card{
    background:#1e1e1e;
    border-radius:15px;
    padding:20px;
    text-align:center;
    box-shadow:0 8px 20px rgba(0,0,0,0.6);
    transition:0.3s;
}

.game-card:hover{
    transform:translateY(-5px);
    box-shadow:0 12px 30px rgba(0,0,0,0.8);
}

.game-card img{
    width:100%;
    max-width:200px;
    border-radius:12px;
    margin-bottom:15px;
}

.game-card h2{
    font-size:24px;
    margin-bottom:10px;
}

.game-card p{
    font-size:16px;
    line-height:1.4;
    color:#ccc;
    margin-bottom:20px;
}

.play-btn{
    display:inline-block;
    background:#ff9800;
    color:white;
    padding:12px 25px;
    border-radius:8px;
    font-size:16px;
    text-decoration:none;
    transition:0.2s;
}

.play-btn:hover{
    background:#f57c00;
}
