.select-game {
    width: 100%;
    margin: 80px 0;
}
.select-game__title {
    font-size: 36px;
    font-weight: 700;
    line-height: 112%;
    margin-bottom: 10px;
}
@media (max-width: 500px) {
    .select-game__title {
        font-size: 24px;
    }
}
.select-game__list {
    width: 100%;
    border-radius: 8px;
    background: rgba(6, 3, 12, 0.4);
    padding: 24px;
    gap: 24px;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    color: #fff;
}
@media (max-width: 1400px) {
    .select-game__list {
        grid-template-columns: repeat(5, 1fr);
    }
}
@media (max-width: 1190px) {
    .select-game__list {
        grid-template-columns: repeat(4, 1fr);
    }
}
@media (max-width: 1000px) {
    .select-game__list {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 768px) {
    .select-game__list {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 550px) {
    .select-game__list {
        grid-template-columns: repeat(1, 1fr);
    }
}
.select-game__item {
    color: #fff;
    text-decoration: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 16px;
    font-weight: 700;
    line-height: 128%;
    letter-spacing: 0.16px;
    gap: 8px;
    opacity: 0.4;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}
.select-game__item:hover {
    color: #27F5D1;
    opacity: 1;
}
.select-game__item.active {
    color: #27F5D1;
    opacity: 1;
}

.blog-tags {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 32px;
}
@media (max-width: 500px) {
    .blog-tags {
        gap: 8px;
    }
}
.blog-tags__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 6px 24px;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%; /* 19.6px */
    letter-spacing: 0.14px;
    color: #fff;
    border-radius: 16px;
    background: #2C173C;
    text-decoration: none;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
}
.blog-tags__item:hover {
    background: #341F44;
}
.blog-tags__item.active {
    background: #8801DB;
}

.article-list {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-bottom: 64px;
}
@media (max-width: 1190px) {
    .article-list {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 1000px) {
    .article-list {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .article-list {
        grid-template-columns: 1fr;
    }
}

.article-item {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}
.article-item__top {
    width: 100%;
    height: 198px;
    position: relative;
    border-radius: 8px;
    padding: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 24px;
}
.article-item__top::before {
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 112px;
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(11, 4, 19, 0.6)), to(rgba(11, 4, 19, 0)));
    background: linear-gradient(0deg, rgba(11, 4, 19, 0.6) 0%, rgba(11, 4, 19, 0) 100%);
    z-index: 2;
}
.article-item__top .blog-tags__item {
    position: relative;
    z-index: 3;
    background: #8801DB;
}
.article-item__image {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 8px;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
}
.article-item__logo svg {
    position: relative;
    z-index: 3;
    color: #fff;
}
.article-item__title {
    font-size: 20px;
    font-weight: 700;
    line-height: 140%;
    margin-bottom: 16px;
    display: block;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    color: #fff;
    text-decoration: none;
}
.article-item__title:hover {
    color: #27F5D1;
}
@media (max-width: 550px) {
    .article-item__title {
        font-size: 20px;
    }
}
.article-item__description {
    font-size: 14px;
    font-weight: 400;
    line-height: 126%; /* 17.64px */
    letter-spacing: 0.14px;
    margin-bottom: 24px;
    margin-top: 0;
}
.article-item__bottom {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-top: 24px;
    margin-top: auto;
    font-size: 14px;
    line-height: 126%;
    letter-spacing: 0.14px;
    gap: 16px;
}
.article-item__author {
    font-weight: 700;
}
.article-item__time {
    text-align: right;
    font-weight: 400;
}

.title--inner {
    width: calc(100% - 382px);
    font-size: 56px;
    line-height: 114%;
    margin-bottom: 32px;
}

.article-section {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 32px;
}
.article-section__content {
    width: 100%;
    color: #FFF;
    width: calc(100% - 382px);
}
.article-section__content .links li {
    margin-bottom: 8px;
}
.article-section__content a {
    text-decoration: none;
    color: inherit;
}
.article-section__content p {
    margin: 32px 0;
}
.article-section__content p:first-child {
    margin-top: 0;
}
.article-section__content img {
    display: block;
    vertical-align: bottom;
    max-width: 100%;
    margin: 56px 0;
}
.article-section__content h1, .article-section__content h2, .article-section__content h3, .article-section__content h4, .article-section__content h5, .article-section__content h6 {
    color: #fff;
    margin: 56px 0 32px;
}
.article-section__content h3 {
    font-size: 36px;
    font-weight: 700;
    line-height: 112%;
    margin: 56px 0 32px;
}
.article-section__content h4 {
    font-size: 28px;
    line-height: 120%;
}
.article-section__content h5 {
    font-size: 24px;
    line-height: 134%;
}
.article-section__content iframe {
    margin: 32px auto;
    display: block;
    max-width: 100%;
}
.article-section__content .bloquote {
    padding: 32px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
}
.article-section__content .bloquote--border {
    border-left: 1px solid #8801DB;
    background: rgba(6, 3, 12, 0.4);
    border-radius: 0 8px 8px 0;
}
.article-section__content .article-gallery {
    width: 100%;
    display: grid;
    gap: 2px;
    margin: 32px 0;
}
.article-section__content .article-gallery3 {
    grid-template-columns: repeat(3, 1fr);
}
.article-section__content .article-gallery2 {
    grid-template-columns: repeat(2, 1fr);
}
.article-section__content .article-gallery4 {
    grid-template-columns: repeat(4, 1fr);
}
.article-section__content .article-gallery img {
    margin: 0;
    width: 100%;
}
.article-section__list {
    width: 100%;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    padding: 32px 32px 16px;
    margin: 32px 0;
    /* Style for list items */
    /* Style for the heading */
    /* Style for the subtitles */
}
.article-section__list h6 {
    font-size: 20px;
    line-height: 140%;
    margin: 0 0 32px 0;
}
.article-section__list .main-list {
    list-style-type: none; /* Remove default numbering */
    counter-reset: section; /* Reset the counter for sections */
    padding-left: 0;
}
.article-section__list .main-list li {
    margin: 16px 0;
}
.article-section__list .main-list > li {
    counter-increment: section; /* Increment the counter for each section */
}
.article-section__list .main-list > li::before {
    content: counter(section) ".";
    font-weight: bold;
    font-size: 18px;
    font-weight: 700;
    line-height: 136%;
    letter-spacing: 0.18px;
}
.article-section__list .main-list > li > .heading {
    font-size: 18px;
    font-weight: 700;
    line-height: 136%;
    letter-spacing: 0.18px;
}
.article-section__list .sub-list {
    list-style-type: none; /* Remove default numbering for sub-lists */
    counter-reset: subsection; /* Reset the counter for sub-sections */
}
.article-section__list .sub-list > li {
    counter-increment: subsection; /* Increment the counter for each sub-section */
}
.article-section__list .sub-list > li:before {
    content: counter(section) "." counter(subsection) " "; /* Generate the custom numbering */
}
.article-section .article-gallery-slider {
    width: 100%;
}
.article-section .gallery-slider {
    width: 100%;
    margin: 32px 0;
}
.article-section .swiper-slide {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
    -webkit-transition: 0.3s;
    transition: 0.3s;
}
.article-section .swiper-slide::before {
    content: "";
    position: absolute;
    display: block;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.4;
    background: rgb(0, 0, 0);
    z-index: 2;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}
.article-section .swiper-slide.swiper-slide-active {
    -webkit-transform: scale(1);
    transform: scale(1);
}
.article-section .swiper-slide.swiper-slide-active::before {
    opacity: 0;
}
.article-section .swiper-slide img {
    width: 100%;
    margin: 0;
    position: relative;
    z-index: 1;
}
.article-section .gallery-slider-navigation {
    margin-top: 32px;
    padding: 16px 24px;
}
.article-section__info {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0 16px;
    margin: 32px 0;
}
.article-section__info .left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 32px;
}
.article-section__info .date {
    font-size: 16px;
    font-weight: 400;
    line-height: 128%;
    letter-spacing: 0.16px;
}
.article-section__info .blog-tags__item {
    background: #8801DB;
}

.article-sidebar {
    width: 350px;
    padding: 24px 24px 0;
    border-radius: 8px;
    background: rgba(6, 3, 12, 0.4);
}
.article-sidebar__title {
    color: #fff;
    font-size: 18px;
    line-height: 136%;
    letter-spacing: 0.18px;
    margin-bottom: 24px;
}
.article-sidebar__nav {
    color: #FFF;
    font-size: 16px;
    line-height: 128%;
    letter-spacing: 0.16px;
}
.article-sidebar__nav li {
    margin-bottom: 24px;
}
.article-sidebar__nav li.active a {
    color: #27F5D1;
    opacity: 1;
}
.article-sidebar__nav a {
    color: inherit;
    text-decoration: none;
    opacity: 0.4;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}
.article-sidebar__nav a:hover {
    color: #27F5D1;
    opacity: 1;
}

.more-articles {
    width: 100%;
    margin: 56px 0;
}
.more-articles__top {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 32px;
}
.more-articles__top .slider-arrows {
    gap: 16px;
}
.more-articles__title {
    color: #fff;
    font-size: 36px;
    font-weight: 700;
    line-height: 112%;
}
.more-articles__slider {
    width: 100%;
}
.more-articles__slider2 {
    width: 100%;
}
.more-articles__slider2 .swiper-slide {
    height: auto;
}
.more-articles__slide {
    position: relative;
    padding: 16px;
    min-height: 160px;
    border-radius: 8px;
    text-align: left;
    text-decoration: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    height: auto !important;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}
.more-articles__slide .title {
    color: #FFF;
    font-size: 14px;
    font-weight: 700;
    line-height: 126%; /* 17.64px */
    letter-spacing: 0.14px;
    text-align: left;
    margin-top: auto;
    display: block;
}
