body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f5f5f5;
    color: #333;
}

header {
    background: #111;
    color: white;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header .logo {
    height: 50px;
}

nav a {
    color: white;
    margin-left: 15px;
    text-decoration: none;
}

nav a:hover {
    text-decoration: underline;
}

.banner img {
    width: 100%;
    height: auto;
}

section {
    padding: 20px;
}

.games-list .game, .news-list .post {
    background: white;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 8px;
}

.games-list .game img, .news-list .post img {
    width: 100%;
    border-radius: 8px;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background: #ff6b6b;
    color: white;
    border-radius: 5px;
    text-decoration: none;
}

.btn:hover {
    background: #ff3b3b;
}

.comment-list {
    list-style: none;
    padding-left: 0;
}

.comment-list li {
    background: #eee;
    padding: 5px;
    margin: 5px 0;
    border-radius: 5px;
}
