.navbar {
    display: flex;
    justify-content: center;
    padding: 20px 0;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    font-size: 16px;
    text-transform: uppercase;
}

.games-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 32px;
    color: #222;
    position: relative;
}

.section-title:after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    background: #ff6b00;
    margin: 10px auto 0;
}

footer {
    text-align: center;
    padding: 20px;
    background: #222;
    color: #fff;
    font-size: 14px;
    margin-top: 50px;
}

.advertise {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.advertise__swiper {
    width: 100%;
    height: 100%;
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.swiper-button-next,
.swiper-button-prev {
    color: white;
    background: rgba(0, 0, 0, 0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 20px;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: white;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: #007aff;
}

@media (min-width: 670px) {

    .games-grid {
        grid-template-columns: repeat(3, minmax(180px, 1fr));
        gap: 20px;
        max-width: calc(3 * 180px + 2 * 1px);
    }

}

@media (min-width: 890px) {

    .games-grid {
        grid-template-columns: repeat(4, minmax(180px, 1fr));
        gap: 20px;
        max-width: calc(4 * 180px + 2 * 1px);
    }

}

@media (min-width: 1110px) {

    .games-grid {
        grid-template-columns: repeat(5, minmax(180px, 1fr));
        gap: 20px;
        max-width: calc(5 * 180px + 2 * 1px);
    }

}