* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: system-ui;
}
body {
    line-height: 1.6;
    color: #222;
}
.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    background: #111;
}
.nav img {
    height: 40px;
}
.nav a {
    color: #fff;
    text-decoration: none;
    margin: 0 12px;
}
.banner {
    text-align: center;
    padding: 80px 20px;
    background: #f4f4f4;
}
.banner h1 {
    font-size: 36px;
    margin-bottom: 10px;
}
.game-list {
    max-width: 1200px;
    margin: 40px auto;
    display: flex;
    gap: 30px;
    padding: 0 20px;
}
.game-item {
    flex: 1;
    text-align: center;
}
.game-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 12px;
}
footer {
    text-align: center;
    padding: 30px;
    background: #111;
    color: #fff;
    margin-top: 60px;
}