:root {
    --basecolor: #d2823c;
    --secondary-color: #fff;
    --text-color: #505050;
    --background-color: #151414;
    --black-color: #0d0d0d;

    --f150px: 9.375rem;
    --f128px: 8rem;
    --f80px: 5rem;
    --f64px: 4rem;
    --f50px: 3.125rem;
    --f48px: 3rem;
    --f40px: 2.5rem;
    --f32px: 2rem;
    --f30px: 1.875rem;
    --f24px: 1.5rem;
    --f20px: 1.25rem;
    --f18px: 1.125rem;
    --f16px: 1rem;
    --f15px: 0.9375rem;
    --f14px: 0.875rem;
    --f10px: 0.625rem;
    --f5px: 0.3125rem;

    --montserrat: "Montserrat", sans-serif;
    --lexend: "Lexend Exa", sans-serif;
    --ubuntu: "Ubuntu", sans-serif;
}

/* Стили для скроллбара */
::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar:horizontal {
    height: 5px;
}

::-webkit-scrollbar-track {
    background: var(--black-color);
}

::-webkit-scrollbar-thumb {
    background: var(--basecolor);
    border-radius: 2px;
}

::-webkit-scrollbar-thumb:hover {
    background: #b06831;
}

/* Блокировка прокрутки при открытом меню */
body.no-scroll {
    overflow: hidden;
}

* {
    transition: 0.2s;
}

html,
body {
    height: 100%;
}

body {
    font-family: var(--montserrat);
    background-color: var(--black-color);
    color: var(--secondary-color);
}

h1 {
    font-size: var(--f64px);
    font-weight: 700;
    font-family: var(--ubuntu);
    color: var(--secondary-color);
}

/* .page.cheat h1 {
	font-size: var(--f48px);
} */

h1.page__title {
	font-size: var(--f48px);
}

h2 {
    font-size: var(--f48px);
    font-weight: 700;
    font-family: var(--ubuntu);
    color: var(--secondary-color);
}

h3 {
    font-size: var(--20px);
    font-weight: 400;
    font-family: var(--montserrat);
    letter-spacing: 0.02em;
    line-height: 150%;
    color: var(--secondary-color);
}

h4 {
	font-size: var(--f30px);
}

span.primary {
    color: var(--basecolor);
}

[class$="lexend"] {
    font-family: var(--lexend);
}

[class$="montserrat"] {
    font-family: var (--montserrat);
    letter-spacing: 0.02em;
}

img {
    max-width: 100%;
    display: block;
}

button {
    padding: 0;
    background: none;
}

main#main {
    margin-bottom: var(--f150px);
    flex: 1 1 auto;
}

.wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    max-width: 1340px;
    padding: 0 20px;
    margin: 0 auto;
}

.btn {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: var(--f16px);
    font-weight: 400;
    font-family: var(--montserrat);
    letter-spacing: 0.02em;
    color: #fff;
    padding: var(--f10px) var(--f30px);
    background: var(--basecolor);
    border-radius: 100px;
}

.header {
    position: fixed;
    width: 100%;
    left: 50%;
    top: 0;
    padding: var(--f30px) var(--f20px);
    margin: 0 auto;
    transform: translateX(-50%);
    z-index: 990;
}

.header--scrolled {
    background: #151414a8;
    -webkit-backdrop-filter: blur(35px);
    backdrop-filter: blur(35px);
}

.header__inner {
    max-width: 1660px;
    margin: 0 auto;
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__logo,
.footer__logo {
    display: flex;
    flex-direction: column;
    color: var(--secondary-color);
}

.header-logo__name,
.footer-logo__name {
    font-size: var(--f32px);
    font-weight: 700;
}

.header__menu {
    display: flex;
    gap: var(--f20px);
}

.menu__link {
    font-size: var(--f16px);
    font-weight: 400;
    font-family: var(--montserrat);
    letter-spacing: 0.02em;
    color: var(--secondary-color);
}

.menu__link:hover {
    color: var(--basecolor);
}

.header__actions {
    display: flex;
    align-items: center;
    gap: var(--f20px);
}

.header__lang {
    font-size: var(--f20px);
    font-weight: 700;
    font-family: var(--montserrat);
    letter-spacing: 0.02em;
    color: var(--secondary-color);
}

.header__burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 3rem;
    height: 3rem;
    background: var(--background-color);
    border: 1px solid var(--text-color);
    border-radius: 8px;
    cursor: pointer;
    z-index: 1001;
    transition: background 0.2s, border 0.2s;
}

.header__burger:hover {
    background: var(--basecolor);
    border-color: var(--basecolor);
}

.burger__line {
    display: block;
    width: 2rem;
    height: 0.14rem;
    margin: 0.18rem 0;
    background: var(--secondary-color);
    border-radius: 2px;
    transition: background 0.2s;
    transition: transform 0.3s cubic-bezier(0.4, 2, 0.6, 1), opacity 0.2s;
}

.header__burger:active .burger__line {
    background: var(--basecolor);
}

.header__burger.active .burger__line:nth-child(1) {
    transform: translateY(0.5rem) rotate(45deg);
}
.header__burger.active .burger__line:nth-child(2) {
    opacity: 0;
}
.header__burger.active .burger__line:nth-child(3) {
    transform: translateY(-0.5rem) rotate(-45deg);
}

.welcome {
    position: relative;
    min-height: 100vh;
    width: 100vw;
    background: url("../images/home/background.webp") no-repeat center center;
    background-size: cover;
    overflow: hidden;
}

.welcome__img {
    position: absolute;
    right: -10%;
    bottom: -5%;
    z-index: 1;
    max-width: 50vw;
    height: auto;
    pointer-events: none;
    user-select: none;
}

@media screen and (max-height: 900px) {
    .welcome__img {
        display: none;
    }
}

.welcome__inner {
    margin-top: 120px;
    z-index: 1;
    padding-top: 80px;
}

.welcome__title {
    font-size: var(--f128px);
    margin-bottom: var(--f20px);
}

.welcome__desc {
    max-width: 860px;
    font-size: var(--f20px);
    font-weight: 400;
    font-family: var (--montserrat);
    letter-spacing: 0.02em;
    line-height: 150%;
    margin-bottom: var(--f80px);
}

.welcome__btns {
    display: flex;
    align-items: center;
    gap: var(--f30px);
}

.welcome__btn {
    width: 18.75rem;
    height: 3.75rem;
    padding: 0;
    box-shadow: 0px 2px 32px 0px rgba(255, 203, 143, 0.2);
}

.welcome__btn:hover {
    box-shadow: none;
}

.welcome__group {
    display: flex;
    flex-direction: column;
    gap: var(--f5px);
    font-size: var(--f16px);
    color: var(--text-color);
}

.welcome__link {
    color: var(--secondary-color);
}

.welcome__link:hover {
    color: var(--basecolor);
}

.games {
    margin-top: var(--f150px);
}

/* .games__title {
    margin-bottom: var(--f50px);
} */

.section__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--f50px);
}

.section-header__link {
    font-size: var(--f16px);
    font-weight: 400;
    font-family: "Montserrat", sans-serif;
    letter-spacing: 0.02em;
    color: var(--basecolor);
}

.games__content {
    display: grid;
    grid-gap: var(--f20px);
    grid-template-columns: repeat(auto-fill, 200px);
    justify-content: space-between;
}

.games__item {
    width: 200px;
    display: flex;
    flex-direction: column;
    transition: 0.5s;
    z-index: 0;
}

.games__item:hover {
    transform: scale(1.4);
    transition: 0.5s;
    z-index: 1;
}

.games-item__img {
	width: 200px;
	height: 226px;
	object-fit: cover;
	border-radius: 10px 10px 0 0;
}

.games-item__title {
    font-size: var(--f18px);
    font-weight: 700;
    font-family: var (--ubuntu);
    color: var(--secondary-color);
}

.games-item__block {
    background: var(--background-color);
    padding: var(--f20px);
    border: 1px solid var(--text-color);
    border-top: 0;
    border-radius: 0 0 10px 10px;
}

.cheats {
    margin-top: var(--f150px);
}

.cheats__content {
    display: grid;
    grid-gap: var(--f50px);
    grid-template-columns: repeat(auto-fill, 400px);
    justify-content: space-between;
}

.cheats__item {
    width: 400px;
    height: 500px;
    display: flex;
    flex-direction: column;
    background: var(--background-color);
    border: 1px solid var(--text-color);
    border-radius: 10px;
}

.cheats-item__img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
}

.cheats-item__content {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: var(--f20px);
}

.cheats-item__categories {
    display: flex;
    align-items: center;
    gap: var(--f10px);
    margin-bottom: var(--f10px);
}

.cheats-item__tags {
    display: flex;
    gap: var(--f10px);
}

.cheats-item-categories__main {
    font-size: var(--f16px);
    color: var(--basecolor);
}

.cheats-item-tags__link {
    font-size: var(--f14px);
    color: var(--text-color);
}

.cheats-item-tags__link:hover {
    color: var(--basecolor);
}

.cheats-item-categories__main,
.cheats-item-tags__link {
    font-weight: 400;
    font-family: var(--montserrat);
    letter-spacing: 0.02em;
}

.cheats-item__title {
    display: block;
    font-size: var(--f20px);
    font-weight: 700;
    font-family: var(--ubuntu);
    color: var(--secondary-color);
    margin-bottom: var(--f15px);
}

.cheats-item__title:hover {
    color: var(--basecolor);
}

.cheats-item__desc {
    font-size: var(--f16px);
    font-weight: 400;
    font-family: var(--montserrat);
    color: var(--text-color);
}

.cheats-item__info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.cheats-item__btn,
.cheats-item__date {
    font-size: var(--f14px);
}

.articles {
    margin-top: var(--f150px);
}

.articles__content {
    display: grid;
    grid-gap: var(--f50px);
    grid-template-columns: repeat(auto-fill, 400px);
    justify-content: space-between;
}

.cheat .page__desc {
	font-size: var(--f16px)!important;
	font-weight: 400;
	font-family: var(--montserrat);
    display: flex;
    align-items: center;
    gap: var(--f20px);
}

.cheat .page__desc svg {
    min-width: var(--f50px);
}

.cheat__content {
    margin-top: var(--f50px);
}

.cheat__download {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--f30px);
    margin-bottom: var(--f50px);
}

.cheat-download__group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--f10px);
}

.cheat-download__btn {
    width: 18.75rem;
    height: 3.75rem;
    display: flex;
    align-items: center;
    gap: var(--f10px);
}

.cheat-download__btn--alternate {
    background: #3ba7ff;
}

.cheat-download__desc {
    font-size: var(--f16px);
    font-weight: 400;
    font-family: var(--montserrat);
    letter-spacing: 0.02em;
    color: var(--text-color);
}

.cheat__slider {
    margin-bottom: var(--f50px);
}

.cheat__info h2 {
    margin-bottom: var(--f20px);
}

.cheat__content h3 {
    line-height: 2em;
}

.cheat__info {
    display: flex;
    flex-direction: column;
    gap: var(--f50px);
}

.cheat__info ul,
.cheat__info ol {
    display: flex;
    flex-direction: column;
    gap: var(--f10px);
    margin: 0 0 0 20px;
    padding: 0;
}

.cheat__info li {
    list-style-type: decimal;
}

.cheat__info li:has(a) {
    list-style-type: disc;
}

.cheat__info a {
    color: var(--basecolor);
}

.cheat__delimiter {
    width: 100%;
    height: 1px;
    display: block;
    margin: var(--f50px) 0;
    background: var(--text-color);
    border-radius: 100px;
}

.cheat__supdownload {
    width: 100%;
    height: 3.75rem;
    display: flex;
    align-items: center;
    gap: var(--f10px);
}

.footer {
    background: var(--background-color);
    border-top: 1px solid var(--text-color);
}

.footer__inner {
    display: flex;
    flex-direction: column;
    gap: var(--f150px);
    padding: var(--f50px) 0;
}

.footer__row {
    display: flex;
    justify-content: space-between;
}

.footer__nav {
    display: flex;
    gap: var(--f80px);
}

.footer-nav__group {
    display: flex;
    flex-direction: column;
    gap: var(--f20px);
}

.footer-nav-group__title {
    font-size: var(--f24px);
    font-weight: 700;
    font-family: var(--ubuntu);
    color: var(--secondary-color);
}

.footer__menu {
    display: flex;
    flex-direction: column;
    gap: var(--f10px);
}

.footer-menu__link {
    font-size: var(--f16px);
    font-weight: 400;
    font-family: var(--montserrat);
    letter-spacing: 0.02em;
    color: var(--text-color);
}

.footer-menu__link:hover {
    color: var(--secondary-color);
}

.footer__copyright {
    font-size: var(--f16px);
    font-weight: 400;
    font-family: var(--montserrat);
    color: var(--text-color);
}

.footer__socials {
    display: flex;
    align-items: center;
    gap: var(--f20px);
}

.footer__text {
    font-size: var(--f16px);
    font-weight: 400;
    color: var(--text-color);
}

.page {
    /* margin-top: 13.75rem; */
    margin-top: 10rem;
}

.page__inner {
    display: flex;
    justify-content: space-between;
    gap: var(--f50px);
    align-items: flex-start;
}

.page__sidebar {
    width: 350px;
    position: sticky;
    top: 150px;
    flex-shrink: 0; /* Предотвращает сжатие сайдбара */
}

.page__main {
    width: calc(100% - 400px); /* 350px сайдбар + 50px отступ */
    min-width: 0; /* Важно для предотвращения переполнения flex-элемента */
}

.page__main--full {
    width: 100%;
}

.page__header {
    display: flex;
    flex-direction: column;
    gap: var(--f20px);
    margin-bottom: var(--f50px);
}

.page__group {
    display: flex;
    align-items: center;
    gap: var(--f20px);
}

.page__back {
    display: flex;
    align-items: center;
    gap: var(--f20px);
}

.page-back__text {
    display: none;
    font-size: var(--f20px);
    font-weight: 400;
    font-family: var(--montserrat);
    letter-spacing: 0.02em;
    color: var(--text-color);
}

.page__related {
    margin-top: var(--f80px);
}

.page-related__title {
    margin-bottom: var(--f50px);
}

.page__breadcrumbs {
    font-size: var(--f16px);
    font-weight: 400;
    font-family: var(--montserrat);
    letter-spacing: 0.02em;
    color: var(--text-color);
    margin-bottom: var(--f30px);
}

.page__breadcrumbs a {
    color: var(--text-color);
}

.page__breadcrumbs a:hover {
    color: var(--basecolor);
}

.article .page__title {
    margin-bottom: var(--f30px);
}

.page__categories {
    display: flex;
    gap: var(--f20px);
    margin-bottom: var(--f50px);
}

.page-categories__link {
    font-size: var(--f16px);
    font-weight: 400;
    font-family: var(--montserrat);
    letter-spacing: 0.02em;
    color: var(--basecolor);
}

.page__pagination {
    display: flex;
    align-items: center;
    gap: var(--f20px);
    margin-top: var(--f80px);
}

.page-numbers {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: var(--f20px);
    font-weight: 700;
    font-family: var(--montserrat);
    letter-spacing: 0.02em;
    color: var(--text-color);
    background: var(--background-color);
    border: 1px solid var(--text-color);
    border-radius: 10px;
}

.page-numbers.current {
    background: var(--basecolor);
    color: var(--secondary-color);
}

.page-numbers.next, .page-numbers.prev {
    width: max-content;
    height: max-content;
    background: none;
    border: none;
}

.page__feed {
	margin-top: var(--f50px);
}

.article__thumbnail {
    width: 100%;
    height: 500px;
    object-fit: cover;
    margin-bottom: var(--f50px);
    border-radius: 10px;
}

.article__text h2 {
    margin-bottom: var(--f20px);
    margin-top: var(--f50px);
}

.article__text h3 {
    font-size: var(--f32px);
    font-weight: 700;
    margin-bottom: var(--f20px);
    margin-top: var(--f30px);
}

.article__text h4 {
    font-size: 1.625rem;
    font-weight: 700;
    margin-bottom: var(--f15px);
    margin-top: var(--f20px);
}

.wp-block-button__link {
	display: block;
    color: #fff!important;
	background: var(--basecolor);
	margin-top: var(--f10px);
	margin-bottom: var(--f20px);
	padding: var(--f15px) var(--f50px);
}

.article__text p {
    font-size: var(--f18px);
    font-weight: 400;
    font-family: var(--montserrat);
    letter-spacing: 0.02em;
    line-height: 2em;
    color: var(--secondary-color);
    margin-bottom: var(--f20px);
}

.article__text ul {
    display: flex;
    flex-direction: column;
    gap: var(--f10px);
    margin-bottom: var(--f20px);
    padding: var(--f20px) var(--f30px);
    background: var(--background-color);
    border: 1px solid var(--text-color);
    border-radius: 10px;
}

.article__text ol {
    display: flex;
    flex-direction: column;
    gap: var(--f10px);
    margin-bottom: var(--f20px);
    padding: var(--f20px) var(--f30px);
    border-radius: 10px;
}

.article__text li {
    list-style-type: unset;
    font-size: var(--f18px);
}

.article__text a {
    color: var(--basecolor);
}

.article__text hr {
    margin: var(--f80px) 0;
}

.article__text table {
    margin-bottom: var(--f20px);
    margin-top: var(--f30px);
    border-color: var(--text-color);
}

.article__text thead {
    border-bottom: 1px;
    border-color: var(--text-color);
}

.article__text th, .article__text td {
    color: var(--secondary-color);
    padding: var(--f15px);
    border-color: var(--text-color);
}

.article__text th {
    font-size: var(--f20px);
    font-weight: 700;
    font-family: var(--ubuntu);
}

.article__text td {
    font-size: var(--f18px);
    font-weight: 400;
    font-family: var(--montserrat);
    letter-spacing: 0.02em;
}

.wp-block-buttons {
	margin-bottom: var(--f30px);
}

.schema-faq-section {
	display: flex;
    flex-direction: column;
    gap: var(--f10px);
    margin-bottom: var(--f20px);
    padding: var(--f20px) var(--f30px);
    background: var(--background-color);
    border: 1px solid var(--text-color);
    border-radius: 10px;
}

.schema-faq-section strong {
	font-size: var(--f20px);
}

.schema-faq-section p {
	font-size: var(--f16px);
}

.schema-faq-section p {
	margin: 0;
}

.wp-block-kevinbatdorf-code-block-pro {
	margin-bottom: var(--f20px);
}

.affiliate__content {
    display: flex;
    flex-direction: column;
    gap: var(--f20px);
}

.affiliate__item {
    width: 100%;
    display: flex;
    gap: var(--f30px);
    padding: var(--f30px);
    background: var(--background-color);
    border: 1px solid var(--text-color);
    border-radius: 10px;
}

.affiliate__item > a {
    min-width: max-content;
}

.affiliate-item__img {
    width: 12.5rem;
    height: 9.375rem;
    object-fit: cover;
}

.affiliate-item__content {
    display: flex;
    flex-direction: column;
}

.affiliate-item__top {
    display: flex;
    gap: var(--f30px);
    margin-bottom: var(--f20px);
}

.affiliate-item__link {
    font-size: var(--f16px);
    font-weight: 700;
    font-family: var(--ubuntu);
    color: var(--basecolor);
}

.affiliate-item__options {
    display: flex;
    gap: var(--f10px);
}

.affiliate-item-options__item {
    font-size: var(--f14px);
    font-weight: 400;
    font-family: var(--montserrat);
    letter-spacing: 0.02em;
    color: var(--secondary-color);
}

.affiliate-item__desc {
    font-size: var(--f14px);
    font-weight: 400;
    font-family: var(--montserrat);
    letter-spacing: 0.02em;
    color: var(--text-color);
}

.affiliate-item__categories {
    display: flex;
    gap: var(--f10px);
    margin-top: auto;
}

.affiliate-item-categories__main {
    font-size: var(--f14px);
    font-weight: 400;
    font-family: var(--montserrat);
    letter-spacing: 0.02em;
    color: var(--basecolor);
}

.affiliate__group {
    margin-bottom: var(--f30px);
}

.page__title.affiliate__title {
    margin-bottom: 0;
}

.affiliate__link {
    color: var(--basecolor);
}

.affiliate__options {
    display: flex;
    flex-wrap: wrap;
    gap: var(--f20px);
    margin-bottom: var(--f30px);
}

.affiliate-options__group {
    display: flex;
    gap: var(--f10px);
    font-size: var(--f16px);
    color: var(--text-color);
}

.affiliate-options__text {
    color: var(--secondary-color);
}

.affiliate__btn {
    height: 3.125rem;
    margin-bottom: var(--f50px);
}

.download__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--f50px);
    text-align: center;
}

.error .page__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.error__title {
    font-size: 10rem;
}

.error__desc {
    margin-bottom: var(--f50px);
}

@media screen and (max-width: 991px) {
    .page__group.affiliate__group {
        flex-direction: column-reverse;
    }

    .affiliate .page__breadcrumbs, .affiliate .page__categories, .affiliate__options {
        display: flex;
        justify-content: center;
    }

    .download .page__inner {
        gap: var(--f50px);
    }
}

@media screen and (min-width: 991px) and (max-width: 1096px)  {
    .affiliate__item {
        flex-direction: column;
        align-items: center;
    }

    .affiliate-item__img, .affiliate__item > a {
        width: 100%;
        height: 12.5rem;
    }
    

    .affiliate-item__desc {
        margin-bottom: var(--f30px);
    }
}

@media screen and (max-width: 501px)  {
    .affiliate__item {
        flex-direction: column;
        align-items: center;
    }

    .affiliate-item__img, .affiliate__item > a {
        width: 100%;
        height: 12.5rem;
    }
    

    .affiliate-item__desc {
        margin-bottom: var(--f30px);
    }
}

.sidebar {
    width: 350px;
    display: flex;
    flex-direction: column;
    gap: var(--f50px);
}

.sidebar__categories {
    display: flex;
    flex-direction: column;
    gap: var(--f20px);
    padding: var(--f30px) var(--f40px) var(--f30px) var(--f40px);
    background: var(--background-color);
    border: 1px solid var(--text-color);
    border-radius: 10px;
}

.sidebar-categories__link {
    font-size: var(--f20px);
    font-weight: 400;
    font-family: var(--montserrat);
    letter-spacing: 0.02em;
    color: var(--secondary-color);
}

.sidebar-categories__link:hover {
    color: var(--basecolor);
}

.sidebar__last {
    width: 350px;
    padding: var(--f30px) var(--f40px) var(--f30px) var(--f40px);
    background: var(--background-color);
    border: 1px solid var(--text-color);
    border-radius: 10px;
}

.sidebar-last__title {
    font-size: var(--f24px);
    font-weight: 700;
    font-family: var(--ubuntu);
    color: var(--secondary-color);
    margin-bottom: var(--f30px);
}

.sidebar-last__img {
    width: 100%;
    height: 160px;
    margin-bottom: var(--f20px);
    object-fit: cover;
    border-radius: 10px;
}

.sidebar-last__link {
    display: block;
    font-size: var(--f16px);
    font-weight: 700;
    font-family: var(--ubuntu);
    color: var(--secondary-color);
    margin-bottom: var(--f15px);
}

.sidebar-last__link:hover {
    color: var(--basecolor);
}

.sidebar-last__desc {
    font-size: var(--f14px);
    font-weight: 400;
    font-family: var(--montserrat);
    letter-spacing: 0.02em;
    color: var(--text-color);
    margin-bottom: var(--f30px);
}

.sidebar-last__btn {
    width: 11.25rem;
    height: var(--f30px);
    font-size: var(--f14px);
}

.page.games .page__content {
    display: grid;
    grid-gap: var(--f20px);
    grid-template-columns: repeat(auto-fill, 200px);
    justify-content: space-between;
}

.cheat__slider {
    width: 100%;
    overflow: hidden;
}

.mySwiper2 {
    width: 100%;
    margin-bottom: var(--f20px);
}

.mySwiper2 .swiper-slide {
    height: 500px;
}

.thumbs-swiper {
    width: 100%;
}

.thumbs-swiper .swiper-slide {
    opacity: 0.4;
    height: 100px;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.thumbs-swiper .swiper-slide-thumb-active {
    opacity: 1;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

/* Стили для активного состояния при наведении */
.thumbs-swiper .swiper-slide:hover {
    opacity: 1;
}

.thumbs-swiper .swiper-slide.swiper-slide-active {
    opacity: 1;
}

/* cheat__content, games__content grid */
@media screen and (max-width: 1339px) {
    .welcome__title {
        line-height: 110%;
    }

    .welcome__img {
        max-width: 60vw;
    }

    .section__header {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: var(--f20px);
    }

    .games__content,
    .cheats__content:not(.page__content.cheats__content),
    .articles__content {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
    }

    .page__main {
        width: calc(100% - 400px);
    }
}

@media screen and (max-width: 1299px) {
    .page.games .page__content {
        grid-template-columns: repeat(auto-fill, 250px);
    }

    .page.games .games__item {
        width: 250px;
    }
}

@media screen and (max-width: 1289px) {
    .page__content.cheats__content {
        grid-template-columns: repeat(auto-fill, 380px);
    }

    .page .cheats__item {
        width: 380px;
    }
}

@media screen and (max-width: 1249px) {
    .page__content.cheats__content {
        grid-template-columns: repeat(auto-fill, 350px);
    }

    .page .cheats__item {
        width: 350px;
    }
}

@media screen and (min-width: 991px) and (max-width: 1190px) {
    .page__content.cheats__content {
        display: flex;
        flex-direction: column;
    }

    .page .cheats__item {
        width: 100%;
    }

    .page .cheats-item__img {
        height: 250px;
    }
}

@media screen and (max-width: 1229px) {
    .page.games .page__content {
        grid-template-columns: repeat(auto-fill, 160px);
    }

    .page.games .games__item {
        width: 160px;
    }
}

@media screen and (max-width: 1140px) {
    .page.games .page__content {
        grid-template-columns: repeat(auto-fill, 180px);
    }

    .page.games .games__item {
        width: 180px;
    }
}

@media screen and (max-width: 991px) {
    html {
        font-size: 85%;
    }

    .header__menu {
        display: none;
    }

    .header__burger {
        display: flex;
    }

    .header__nav.active .header__menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: var(--f30px);
        background: var(--background-color);
    }

    .menu__link {
        font-size: var(--f32px);
    }

    .welcome__inner {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .welcome__img {
        display: none;
    }

    .cheats__item {
        width: 300px;
        height: 430px;
    }

    .page__inner {
        flex-direction: column;
        align-items: center;
        gap: var(--f150px);
    }

    .page__main {
        width: 100%;
    }

    .page__sidebar {
        width: 100%;
        position: static;
    }

    .page__header {
        align-items: center;
        text-align: center;
    }

    .page__group {
        flex-direction: column;
    }

    .page-back__text {
        display: block;
    }

    .page__back svg path {
        fill: var(--text-color);
    }

    .page__content:not(.article__text),
    .page.games .page__content {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        gap: var(--f30px);
    }

    .sidebar,
    .sidebar__last {
        width: 100%;
    }

    .sidebar__categories {
        align-items: center;
    }

    .sidebar__ad {
        display: flex;
        justify-content: center;
    }

    .footer__nav {
        gap: var(--f50px);
    }
}

@media screen and (max-width: 881px) {
    .footer__inner {
        gap: var(--f80px);
    }

    .footer__logo {
        align-items: center;
    }

    .footer__row {
        flex-direction: column;
        align-items: center;
        gap: var(--f80px);
    }

    .footer-nav__group {
        text-align: center;
        align-items: center;
    }

    .footer__copyright {
        text-align: center;
    }
}

@media screen and (max-width: 765px) {
    .page .cheats__item {
        width: 300px;
    }
}

@media screen and (max-width: 681px) {
    html {
        font-size: 75%;
    }
	
	.cheats-item__desc, .sidebar-last__desc, .sidebar-last__link, .footer__copyright, .footer-menu__link, .cheats-item__btn, .cheats-item__date, #wpdcom .wpd-thread-head .wpdiscuz-user-settings, .cheats-item-categories__main, .cheat-download__desc, .sidebar-last__btn, #comments #wpdcom span, #respond #wpdcom span, #wpdcom span, .page__breadcrumbs, .cheats-item__desc, .sidebar-last__desc, .sidebar-last__link, .footer__copyright, .footer-menu__link, .cheats-item__btn, .cheats-item__date, #wpdcom .wpd-thread-head .wpdiscuz-user-settings, .cheats-item-categories__main, .cheat-download__desc, .sidebar-last__btn, .page-categories__link, .section-header__link, .welcome__group, .btn {
		font-size: 12px!important;
	}

    .cheats__item {
        width: 250px;
        height: 400px;
    }

    .page .cheats__item {
        width: 250px;
        height: 380px;
    }

    .article__thumbnail {
        height: 350px;
    }

    .mySwiper2 .swiper-slide {
        height: 400px;
    }
}

@media screen and (max-width: 537px) {
    html {
        font-size: 75%;
    }
	
    .welcome__title {
        font-size: 5rem;
    }

    .cheats__item,
    .page .cheats__item {
        width: 100%;
        height: 450px;
    }

    .article__thumbnail {
        height: 300px;
    }

    .mySwiper2 .swiper-slide {
        height: 300px;
    }

    .thumbs-swiper .swiper-slide {
        height: 70px;
    }
}

@media screen and (max-width: 480px) {
    .cheat__download {
        justify-content: center;
    }

    .article__thumbnail {
        height: 250px;
    }
}

@media screen and (max-width: 420px) {
	
	
	.sidebar-last__btn {
		width: 100%;
		height: 30px;
	}
	
    .welcome__btns {
        flex-direction: column;
    }

    .welcome__btn {
        width: 25rem;
    }

    .page.games .games__item {
        width: 150px;
    }

    .cheats__item,
    .page .cheats__item {
        height: 400px;
    }

    .footer__nav {
        flex-direction: column;
    }

    .mySwiper2 .swiper-slide {
        height: 200px;
    }

    .thumbs-swiper .swiper-slide {
        height: 50px;
    }
}

@media screen and (max-width: 380px) {
    html {
        font-size: 60%;
    }

    .cheats__item,
    .page .cheats__item {
        height: 350px;
    }
}

.header__actions {
    position: relative;
}

.header__search-form {
    position: absolute!important;
    right: 0;
    top: 50px;
    background: var(--background-color);
    border: 1px solid var(--text-color);
    padding: 10px;
    box-shadow: 0px 4px 8px rgba(0,0,0,0.1);
    z-index: 1000;
    border-radius: 10px;
}

.ajax-search-form input[type="text"] {
    width: 20rem;
    padding: var(--f10px) var(--f20px);
    background: none;
    font-size: var(--f16px);
    color: var(--secondary-color);
}

.search-results {
    display: flex;
    flex-direction: column;
    gap: var(--f15px);
    margin-top: var(--f20px);
}

.search-result-item {
    display: flex;
    align-items: center;
    gap: var(--f15px);
    padding: 5px var(--f20px);
}

.search-result-thumb {
    width: 50px;
    height: 50px;
}

.search-result-thumb img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 4px;
}

.search-result-title {
    max-width: 12rem;
    font-size: var(--f14px);
    color: var(--secondary-color);
    text-decoration: none;
}

.search-result-title:hover {
    color: var(--basecolor);
}

.no-results {
    margin-top: 10px;
    color: #999;
}

#wpdcom {
    max-width: 90%;
}

#comments {
    max-width: 100%;
}

.cheat-ads__wrapper {
/* 	border: 1px solid var(--text-color); */
}

.cheats-ads__title {
	margin-bottom: var(--f15px);
}

.cheat__ads {
	display: flex;
	flex-wrap: wrap;
}

.article__text code {
	word-break: break-all;
}

@media screen and (max-width: 991px) {
	.article__text .wp-block-kevinbatdorf-code-block-pro {
		max-width: 530px;
	}
}

@media screen and (max-width: 540px) {
	.article__text .wp-block-kevinbatdorf-code-block-pro {
		max-width: 320px;
	}
}

.download__ad  {
	width: 300px;
/* 	height: 600px; */
}

.cheat_statuses {
    margin-top: var(--f20px);
}

.cheat__status {
    padding: var(--f10px) var(--f20px);
    border-radius: 10px;
}

.cheat__status.undetected {
    color: green;
    border: 1px solid green;
}

.cheat__status.detected {
    color: red;
    border: 1px solid red;
}

.cheat__status.outdated {
    color: gray;
    border: 1px solid gray;
}

.wp-block-embed iframe, figure video {
	max-width: 100%;
}

figure.size-full img {
	width: inherit;
	height: inherit;
}

figure.size-large img {
	width: inherit;
	height: inherit;
}

.page__faq {
    margin-top: var(--f80px);
}

.page__faq-title {
    margin-bottom: var(--f50px);
}


.faq__title {
    margin-bottom: var(--f50px);
}

.faq-section {
    width: 100%;
    background: var(--background-color);
    padding: var(--f20px);
    border: 1px solid var(--text-color);
    border-radius: 10px;
    color: var(--secondary-color);
    font-family: var(--montserrat);
}

.faq__block {
    display: flex;
    flex-direction: column;
    gap: var(--f20px);
    margin-bottom: var(--f50px);
}

.faq-section h2 {
    font-size: var(--f32px);
    color: var(--basecolor);
    margin-bottom: var(--f20px);
    margin-left: var(--f15px);
    font-family: var(--lexend);
}

.faq-item {
    margin-bottom: var(--f10px);
    border-bottom: 1px solid var(--text-color);
}

.faq-section h2:first-child {
    margin-top: 0;
}

.faq-section h2 {
    margin-top: var(--f30px);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--f15px);
    cursor: pointer;
    font-size: var(--f18px);
    font-weight: 600;
    color: var(--secondary-color);
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--basecolor);
}

.faq-question::after {
    content: "+";
    font-size: var(--f24px);
    color: var(--basecolor);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    content: "−";
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding: var(--f15px);
    font-size: var(--f16px);
    line-height: 1.6;
    color: var(--secondary-color);
    background: var(--black-color);
    border-radius: 5px;
    margin: 0 var(--f10px) var(--f15px);
}

.faq-item.active .faq-answer {
    display: block;
}

.cheat__author {
    display: flex;
    flex-direction: column;
    gap: var(--f10px);
    margin-top: var(--f20px);
}

.cheat__author svg {
    width: 20px;
    height: 18px;
}

.cheat__developer, .cheat__published {
    display: flex;
    align-items: center;
    gap: var(--f10px);
}

@media (max-width: 600px) {
    .faq-section {
        padding: var(--f15px);
    }

    .faq-section h2 {
        font-size: var(--f24px);
    }

    .faq-question {
        font-size: var(--f16px);
    }

    .faq-answer {
        font-size: var(--f14px);
    }
}

.cheat__security {
    display: flex;
    flex-direction: column;
    gap: var(--f10px);
    margin-bottom: var(--f20px);
    padding: var(--f20px) var(--f30px);
    background: var(--background-color);
    border: 1px solid var(--text-color);
    border-radius: 10px;
}

.cheat-security__good {
    display: flex;
    align-items: center;
    gap: var(--f10px);
    margin-top: var(--f20px);
    margin-bottom: var(--f20px);
}

.security-good__text {
    display: flex;
    flex-direction: column;
    gap: var(--f5px);
}

.security-good__text p {
    color: #00ff00;
}

.security-good__text b {
    font-size: var(--f16px);
}

.security__notify {
    display: flex;
    flex-direction: column;
    gap: var(--f10px);
    border-left: 2px solid red;
    padding: var(--f5px) var(--f10px);
}

.security-notify__title {
    font-size: var(--f16px);
    color: red;
}

.security-notify__desc, .security-good__text p {
    font-size: var(--f14px);
}

a.glink {
    color: #fff;
}

#wpdcom .wpd-comment.wpd-reply .wpd-comment-header .wpd-comment-author, #wpdcom .wpd-comment.wpd-reply .wpd-comment-header .wpd-comment-author a, 
#wpdcom .wpd-blog-guest .wpd-comment-author, #wpdcom .wpd-blog-guest .wpd-comment-author a, #wpdcom .wpd-thread-head .wpdiscuz-user-settings:hover {
    color: var(--basecolor);
}

#wpdcom .wpd-thread-head .wpd-thread-info, #wpdcom .wpd-thread-head .wpdiscuz-user-settings {
    border-bottom: 2px solid var(--basecolor);
}

#wpdcom.wpd-layout-1 .wpd-comment .wpd-blog-post_author .wpd-avatar img {
	border-color: var(--basecolor);
}

#wpdcom .wpd-blog-post_author .wpd-comment-label, #wpdcom .wpd-prim-button {
    background-color: var(--basecolor);
}

.article__text h3 {
	line-height: normal;
}

.advertisment .wp-block-table {
	margin: auto 0;
}

.advertisment .wp-block-table table.has-fixed-layout {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--black-color);
    color: var(--text-color);
    font-family: var(--montserrat);
    font-size: var(--f16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.advertisment .wp-block-table thead {
    background-color: var(--basecolor);
    color: var(--secondary-color);
    text-align: left;
}

.advertisment .wp-block-table thead th {
    padding: 14px 20px;
    font-size: var(--f16px);
    font-weight: 600;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.advertisment .wp-block-table thead th:last-child {
    border-right: none;
}
.advertisment .wp-block-table tbody {
	background: var(--background-color);
}

.advertisment .wp-block-table tbody tr {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    transition: background-color 0.3s;
}

.advertisment .wp-block-table tbody tr:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.advertisment .wp-block-table tbody td {
    padding: 14px 20px;
    font-size: var(--f15px);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.advertisment .wp-block-table tbody td:last-child {
    border-right: none;
}

.download__content .ad-cpa {
	display: flex;
	justify-content: center;
}

.download__content .ad-cpa img {
	width: 90%;
}



.cheat__cpa {
    display: block;
    margin-bottom: var(--f20px);
}

.cheat-cpa__mobile {
    display: none;
}

@media screen and (max-width: 600px) {
    .cheat-cpa__pc {
        display: none;
    }

    .cheat-cpa__mobile {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .cheat-cpa__mobile img {
        max-width: 80%;
    }
}


div[caramel-id="01k1swgw2s71pmmmf4gw9ds97n"], div[caramel-id="01k56cxfkzvf2h38kecz37807c"] {
	display: flex;
    justify-content: center;
	margin-bottom: var(--f30px);
}

@media screen and (max-width: 830px) {
	div[caramel-id="01k1swgw2s71pmmmf4gw9ds97n"] {
		margin-bottom: 0;
	}
}

@media screen and (min-width: 831px) {
	div[caramel-id="01k56cxfkzvf2h38kecz37807c"] {
		margin-bottom: 0;
	}
}

div[caramel-id="01k10tfzp0ttp7xpqkw1n65dt6"] {
	display: flex;
    justify-content: center;
	margin-bottom: var(--f30px);
}





.wp-block-table {
	overflow-x: auto;
    max-width: 100%;
    margin: 0 auto;
    display: block;
}

.wp-block-table table {
	width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
    min-width: 320px;
} 

.wp-block-table th, .wp-block-table td {
    padding: 8px;
    text-align: left;
    border: 1px solid var(--text-color); /* Добавь бордеры для ясности, если нужно */
    word-wrap: break-word; /* Чтобы текст не вылезал */
}

.wp-block-table th.has-text-align-center,
.wp-block-table td.has-text-align-center {
    text-align: center;
}