body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #bf1313;
    color: #fff;
    padding: 10px 20px;
}

.logo {
    font-size: 24px;
}

nav ul {
    list-style: none;
    display: flex;
}

nav li {
    margin-right: 20px;
}

nav a {
    color: #fff;
    text-decoration: none;
}

.search {
    display: flex;
}

.search input {
    padding: 5px;
    border: none;
    border-radius: 5px 0 0 5px;
}

.search button {
    background-color: #fff;
    border: none;
    border-radius: 0 5px 5px 0;
    padding: 5px 10px;
}

.login {
    font-size: 16px;
}

.slider {
    height: 720px;
    overflow: hidden;
}

.slider img {
    width: 100%;
    height: 720px;
    object-fit: cover;
    display: none;
}

.slider img.active {
    display: block;
}

.game-news {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 20px;

    width: 1000px;
    margin: 0 auto;
}

.news-item {
    width: 30%;
    background-color: #f5f5f5;
    border-radius: 5px;
    padding: 10px;
    margin-bottom: 20px;
}

.news-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 10px;
}

.news-item h3 {
    font-size: 20px;
    margin: 0;
}

.news-item p {
    font-size: 14px;
    color: #666;
}

aside {
    width: 25%;
    background-color: #eee;
    padding: 10px;
    border-radius: 5px;
    height: fit-content;
}

aside h4 {
    font-size: 18px;
    margin: 0 0 10px 0;
}

aside ul {
    list-style: none;
    padding: 0;
}

aside li {
    margin-bottom: 5px;
}

aside a {
    text-decoration: none;
    color: #333;
}

.comment {
    margin-top: 10px;
}

.ad {
    margin-top: 20px;
    text-align: center;
}

footer {
    background-color: #bf1313;
    color: #fff;
    padding: 1rem 20px 2rem;
    text-align: center;
}

.social-links a {
    margin-right: 10px;
}

.social-links img {
    width: 24px;
    height: 24px;
}