@font-face {
    font-family: "Metropolitano";
    src: local("Metropolitano"), local("Metropolitano-Regular"),
        url("./../fonts/Metropolitano-Regular.woff2") format("woff2"),
        url("./../fonts/Metropolitano-Regular.woff") format("woff"),
        url("./../fonts/Metropolitano-Regular.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Metropolitano";
    src: local("Metropolitano Bold"), local("Metropolitano-Bold"),
        url("./../fonts/Metropolitano-Bold.woff2") format("woff2"),
        url("./../fonts/Metropolitano-Bold.woff") format("woff"),
        url("./../fonts/Metropolitano-Bold.ttf") format("truetype");
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Metropolitano";
    src: local("Metropolitano Medium"), local("Metropolitano-Medium"),
        url("./../fonts/Metropolitano-Medium.woff2") format("woff2"),
        url("./../fonts/Metropolitano-Medium.woff") format("woff"),
        url("./../fonts/Metropolitano-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

/*****************************************************/
:root {
    --white: #fff;
    --white-v-2: #e6dfe9;
    --white-l-1: #f1f2f4;
    --white-l-2: #e9e9e9;
    --grey: #b2aebd;
    --grey-l: #9296ab;
    --grey-d: #41434e;
    --black: #0b0413;
    --primary: #8801db;
    --primary-l: #9747ff;
    --primary-d: #6501a2;
    --secondary: #ff2663;
    --secondary-d: #cc1b4d;
    --accent: #27f5d1;
    --dark: #170929;
    --dark-rgb: 23, 9, 41;
    --gradient-light: linear-gradient(90deg, var(--primary-d) 0%, var(--accent) 100%);
    --gradient-normal: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
    --gradient-alt: linear-gradient(90deg, #6d45d9 0%, var(--accent) 100%);

    --font-family-main: "Metropolitano", sans-serif;

    --font-h1: clamp(2.5rem, 1.803rem + 2.974vw, 5rem);
    --font-h2: clamp(2rem, 1.5818rem + 1.7844vw, 3.5rem);
    --font-h3: clamp(1.75rem, 1.6106rem + 0.5948vw, 2.25rem);
    --font-h4: clamp(1.5rem, 1.4303rem + 0.2974vw, 1.75rem);
    --font-h5: clamp(1.375rem, 1.3401rem + 0.1487vw, 1.5rem);
    --font-h6: 20px;
    --font-subtitle: 18px;
    --font-body: 16px;
    --font-body-small: 14px;

    --letter-spacing-normal: 0.14px;
    --letter-spacing-big: 0.16px;

    --transition: all 0.25s;
}
* {
    box-sizing: border-box;
}
body {
    background-color: var(--dark);
    color: var(--white-v-2);
    font-size: var(--font-body);
    position: relative;
    z-index: 3;
    font-family: var(--font-family-main);
}
body,
html {
    scrollbar-gutter: stable;
}
body {
    overflow-x: hidden;
}
input,
input::placeholder,
textarea {
    font-family: var(--font-family-main);
    font-size: var(--font-body);
    letter-spacing: var(--letter-spacing-big);
}
body.lock {
    overflow: hidden;
    height: 100vh;
}
body.woocommerce-account {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
body.woocommerce-account .footer {
    margin-top: auto;
}

.z-blick-top {
    z-index: 1045;
    position: relative;
}
.z-blick-top-hide {
    z-index: 1046;
}
.hide {
    display: none !important;
}
.hide-visually {
    padding: 0 !important;
    margin: 0 !important;
    visibility: hidden;
    opacity: 0 !important;
    pointer-events: none !important;
}
.bg-blick {
    background-image: url("/wp-content/uploads/2024/01/BG_Main-1.svg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: fixed;
    width: 100vw;
    height: 100vh;
    left: 0;
    top: 0;
    z-index: 3;
    pointer-events: none;
    z-index: 1040;
}
.bg-blur {
    backdrop-filter: blur(5px);
    position: fixed;
    -webkit-backdrop-filter: blur(5px);
    width: 100vw;
    height: 100vh;
    left: 0;
    top: 0;
    z-index: 1047;
    pointer-events: none;
    opacity: 0;
    transition: var(--transition);
}
.bg-blur.active {
    opacity: 1;
}
@supports not (backdrop-filter: blur(5px)) {
    .bg-blur {
        background: rgba(0, 0, 0, 0.702);
    }
}
h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--grey-d);
    font-weight: 700;
    font-style: normal;
}
h1 {
    font-size: 80px;
    line-height: 100%;
}
h2 {
    font-size: 56px;
    line-height: 114%;
}
h3 {
    font-size: 36px;
    line-height: 112%;
}
h4 {
    font-size: 28px;
    line-height: 120%;
}
h5 {
    font-size: 24px;
    line-height: 134%;
}
h6 {
    font-size: 20px;
    line-height: 140%;
}
input,
textarea {
    outline: none;
}

[class*="__container"] {
    max-width: 1680px;
    margin: 0 auto;
    padding: 0 95px;
}
@media screen and (max-width: 1024px){
    [class*="__container"] {
        padding: 0 32px;
    }
}

.quantity-container {
    display: flex;
    align-items: center;
    gap: 8px;
}
.quantity-minus, .quantity-plus {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 18px;
    gap: 12px;
    width: 62px;
    height: 56px;
    background: #2C173C;
    border-radius: 16px;
    flex: none;
    flex-grow: 1;
    color: var(--white);
    transition: scale 0.1s ease-out;
    cursor: pointer;
}

.quantity-minus:active, .quantity-plus:active {
    transform: scale(0.95);
}
.quantity-minus--blocked, .quantity-plus--blocked {
    opacity: 0.3;
}

.quantity-input {
    text-align: center;
    /* color: white; */
    appearance: none;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;

    width: 70px;
    min-width: 70px;
    max-width: 110px;
    height: 56px;

    background: #FFFFFF;
    border: 2px solid #9747FF;
    border-radius: 16px;

    flex: none;
    flex-grow: 1;
}
.quantity-input::-webkit-inner-spin-button,
.quantity-input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.product-card-default__add-to-cart-button--active{
/* border-radius: 16px;*/
cursor: pointer;
color: var(--white);
letter-spacing: var(--letter-spacing-normal);
font-weight: 700;
transition: var(--transition);
text-decoration: none;
text-transform: uppercase;
/* display: inline-flex;
border: 2px solid var(--primary); */
}

/*****************************************************/
.btn {
    border-radius: 16px;
    background-color: var(--primary);
    padding: 9px 20px;
    cursor: pointer;
    color: var(--white);
    letter-spacing: var(--letter-spacing-normal);
    font-weight: 500;
    transition: var(--transition);
    line-height: 1.4;
    text-decoration: none;
    display: inline-flex;
    border: 2px solid var(--primary);
}
@media (any-hover: hover) {
    .btn:hover {
        background-color: var(--primary-d);
    }
}

.btn:active {
    transform: scale(0.95);
}
.btn--icon {
    display: flex;
    align-items: center;
    gap: 12px;
}
.btn--arrow {
    position: relative;
    padding-right: 56px;
}
.btn--arrow::after {
    content: "";
    background-image: url("/wp-content/uploads/2024/01/arrow.svg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 16px;
    width: 16px;
    height: 100%;
    position: absolute;
    right: 25px;
    transition: var(--transition);
    top: 0px;
}
.btn--arrow.active::after {
    transform: scale(-1);
}
.btn__icon {
    display: flex;
}
.btn--accent {
    background-color: var(--secondary);
    border-color: var(--secondary);
}

@media (any-hover: hover) {
    .btn--accent:hover {
        background-color: var(--secondary-d);
    }
}

.btn--opacity {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: transparent;
}
@media (any-hover: hover) {
    .btn--opacity:hover {
        background-color: rgba(255, 255, 255, 0.15);
    }
}

.btn--outline {
    background-color: transparent;
}

.btn--dark {
    background-color: #2c173c;
    border-color: #2c173c;
}

@media (any-hover: hover) {
    .btn--dark:hover {
        background-color: #2c173c;
    }
}
/*****************************************************/
.link-border {
    position: relative;
}
.header__menu a::before,
.link-border::before,
.footer__nav a::before {
    content: "";
    position: absolute;
    height: 1px;
    background-color: var(--accent);
    width: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: var(--transition);
    opacity: 0;
}
.header__menu a:hover,
a.link-border:hover,
.footer__nav a:hover {
    color: var(--accent);
}
.header__menu a:hover::before,
.link-border:hover::before,
.footer__nav a:hover::before {
    opacity: 1;
    width: 100%;
}
/*****************************************************/
/* .btn--arrow.location-research::after {
    transform: scale(-1);
}
@media (any-hover: hover) {
    .btn--arrow.location-research:hover::after,
    .btn--arrow.location-research.active::after {
        transform: scale(1);
    }
} */

/*****************************************************/
.header {
    padding: 20px 0;
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 1049;
}
.header__container {
    display: flex;
    align-items: center;
    gap: 48px;
    max-width: 1950px;
    padding: 0 64px;
}
.header__logo {
    flex-basis: 192px;
    width: 192px;
    height: auto;
}
.logo-desktop {
    width: 100%;
    display: flex;
}
.logo-mobile {
    width: 100%;
    display: none;
}
@media (max-width: 768px) {
    .logo-desktop {
        display: none;
    }
    .logo-mobile {
        display: flex;
    }
}
.header__catalog {
    font-size: var(--font-body-small);
    text-transform: uppercase;
    padding: 11.5px 56px 9.5px 20px;
}
.header__account {
    font-size: var(--font-body-small);
    text-transform: uppercase;
    padding: 11.5px 20px 9.5px 20px;
    align-items: stretch;
}
.header__menu {
    display: flex;
}
.header__menu li {
    padding: 8px 16px;
}
.header__menu a {
    font-size: var(--font-body-small);
    line-height: 1.4;
    letter-spacing: var(--letter-spacing-normal);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    color: var(--white);
    text-decoration: none;
    display: inline-flex;
    text-transform: uppercase;
}

.header__menu > li:first-child > a {
    padding-left: 0;
}
.header__menu > li:last-child > a {
    padding-right: 0;
}
.header__menu .menu-item-has-children {
    position: relative;
    padding-right: 40px;
}
.header__menu .menu-item-has-children::after {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    background-image: url("/wp-content/uploads/2024/01/arrow.svg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    right: 16px;
    top: 8px;
    transition: var(--transition);
}
.header__menu .menu-item-has-children:hover::after {
    transform: scale(-1);
}
.header__menu .sub-menu {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    z-index: 9999;
    white-space: nowrap;
    padding: 11px 0;
    transition: var(--transition);
    top: 100%;
    left: 0;
    opacity: 0;
    pointer-events: none;
}

.header__menu .menu-item-has-children:hover .sub-menu {
    opacity: 1;
    pointer-events: all;
}
.search-form {
    display: flex;
    align-items: center;
    border-radius: 32px;
    transition: var(--transition);
}
.search-form.active {
    background: rgba(255, 255, 255, 0.2);
}
.search-form form {
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}
.search-form.active form {
    opacity: 1;
    pointer-events: all;
}
.search-form input {
    color: var(--white);
    padding: 5px 0 5px 18px;
}
.search-form input::placeholder {
    color: var(--white);
}
.search-form__icon {
    cursor: pointer;
    transition: var(--transition);
    width: 40px;
    display: flex;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 32px;
}
.search-form__icon:hover {
    background-color: rgba(255, 255, 255, 0.1);
}
.header__nav {
    flex: 1;
}
.share-list {
    position: relative;
}

.share-list__backend {
    display: flex;
    gap: 32px;
    margin-left: 16px;
    align-items: center;
    justify-content: center;
}

@media (max-width: 1440px) {
    .header__container {
        gap: 32px;
    }
    .share-list__backend {
        gap: 16px;
        margin-left: 8px;
    }
}
@media (max-width: 1280px) {
    .header__container {
        gap: 16px;
        padding: 0 48px;
    }
    .share-list__backend {
        margin-left: 0;
        gap: 8px;
    }
}

.share-list__social {
    display: flex;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #531375;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}



.share-list__social a {
    line-height: 0;
}
.share-list__social svg path {
    transition: var(--transition);
}
.share-list__social:hover svg path {
    fill: var(--accent);
}
/*****************************************************/
.hidden {
    display: none;
}
/*****************************************************/
.game-catalog-menu {
    position: absolute;
    left: 0;
    transition: var(--transition);
    opacity: 0;
    pointer-events: none;
    width: 100%;
    margin-top: 10px;
}
.game-catalog-menu.active {
    opacity: 1;
    pointer-events: all;
}
.game-catalog-menu__container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(225px, 1fr));
    gap: 2px;
}
.game-catalog-menu__item {
    height: 120px;
    display: none;
    align-items: center;
    padding: 5px 15px;
    z-index: 3;
    position: relative;
}
.lazyready .game-catalog-menu__item {
    display: flex;
}
.game-catalog-menu__item img {
    max-width: 100%;
    display: none;
}
.lazyready .game-catalog-menu__item img {
    display: block;
}
.game-catalog-menu__item::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0;
    left: 0;
    top: 0;
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}
.game-catalog-menu__item:hover::after {
    opacity: 0.3;
}
.burger {
    display: none;
}
.burger svg * {
    transition: var(--transition);
}
.burger.active svg path:nth-child(2) {
    opacity: 0;
}
.burger.active svg path:nth-child(1) {
    transform: rotate(45deg) translate(0px, -8px);
    transform-origin: center;
}
.burger.active svg path:nth-child(3) {
    transform: rotate(-45deg) translate(2px, 5px);
    transform-origin: center;
}
/*****************************************************/

/*****************************************************/

.trustpilot {
    display: flex;
    gap: 20px;
    align-items: center;
    color: var(--white);
}
.trustpilot__icon {
    width: 32px;
    height: 32px;
}
.trustpilot__name {
    letter-spacing: var(--letter-spacing-big);
    line-height: 1.28;
}
.trustpilot__stars {
    display: flex;
    gap: 2px;
}
.trustpilot__stars > img {
    width: 32px;
    height: 32px;
}
.trustpilot__rating {
    font-size: 20px;
    line-height: 1.4;
}

.progress {
    position: relative;
    height: 6px;
    z-index: 5;
    background: rgba(6, 6, 6, 0.6);
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
}

.progress__line {
    position: absolute;
    background: linear-gradient(91deg, #8801db -23.08%, #27f5d1 68.11%);
    width: 0%;
    height: 100%;
    left: 0;
    top: 0;

    /* animation: changeWidth 5s linear infinite; */
}

/*****************************************************/
.section {
    padding: 110px 0;
}
.title {
    font-size: 80px;
    color: var(--white);
    font-weight: 700;
    line-height: 1;
    text-align: center;
    display: flex;
    justify-content: center;
}
.title--left {
    text-align: left;
    justify-content: left;
}
.subtitle {
    font-size: var(--font-h6);
    color: var(--accent);
    line-height: 1.4;
    font-weight: 400;
}
/*****************************************************/

.text-block {
    display: flex;
    flex-direction: column;
}

.text-block__title {
    font-size: var(--font-h3);
    line-height: 1.12;
    font-weight: 700;
    display: flex;
    margin-bottom: 32px;
}
.text-block__title + .text-block__text {
    border-left: 1px solid var(--primary);
}
.text-block__text {
    font-size: var(--font-body);
    line-height: 1.28;
    letter-spacing: var(--letter-spacing-big);
    padding-left: 32px;
    max-width: 447px;
}
/*****************************************************/
.games__title {
    margin-bottom: 32px;
}
.games-grid {
    grid-template-columns: repeat(auto-fill, minmax(207px, 1fr));
    display: grid;
    gap: 1px;
}
.games__numbers {
    display: flex;
    padding: 0 124px;
    margin: 0 0 80px;
    gap: 32px;
}
.games__number {
    flex: 1;
    padding: 16px;
    background: rgba(11, 4, 19, 0.3);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}
.number-block {
    display: flex;
    align-items: center;
    border-radius: 16px;
    gap: 16px;
}
.number-block__name {
    font-size: var(--font-body-small);
    color: var(--grey);
    line-height: 1.26;
    letter-spacing: var(--letter-spacing-normal);
}
.number-block__number {
    font-size: var(--font-h3);
    color: var(--accent);
    font-weight: 700;
    line-height: 1.12;
}
.game-card {
    padding: 8px 8px 16px 8px;
    transition: var(--transition);
    text-decoration: none;
    color: var(--white);
    border-radius: 16px;
    transform: perspective(2500px) rotateX(-100deg);
}
.game-card:hover {
    background-color: rgba(255, 255, 255, 0.1);
}
.game-card__poster {
    height: 260px;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 16px;
}
.game-card__poster img {
    height: 100%;
    width: 100%;
    max-width: 100%;
    display: none;
    transition: var(--transition);
    object-fit: cover;
}
.lazyready .game-card__poster img {
    display: flex;
}
.game-card:not(.aos-init) .game-card__poster img {
    display: none;
}
.game-card:hover .game-card__poster img {
    transform: scale(1.05);
}
.game-card__title {
    font-size: var(--font-subtitle);
    letter-spacing: 0.18px;
    font-weight: 700;
    line-height: 1.36;
    display: flex;
}
.game-card__booster {
    display: flex;
    color: var(--accent);
    letter-spacing: var(--letter-spacing-normal);
    line-height: 1.26;
}
.games__catalog {
    margin-bottom: 32px;
    padding-inline: 5px;
}
.games__btn {
    display: flex;
    justify-content: center;
    width: fit-content;
    margin: 0 auto;
    padding: 14px 64px;
}
.games__btn__hidden, .game-card_hidden {
    display: none;
}
/*****************************************************/

.trustpilot-widget {
    padding: 19px 32px;
    border-radius: 16px;
    background: rgba(11, 4, 19, 0.3);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    display: flex;
    color: var(--white);
    text-decoration: none;
    gap: 32px;
    transition: var(--transition);
}
.trustpilot-widget:hover {
    color: var(--accent);
}
.trustpilot-widget__logo {
    width: 178px;
}
.trustpilot-widget__content {
    display: flex;
    flex-direction: column;
}
.trustpilot-widget__rating {
    font-size: var(--font-subtitle);
    letter-spacing: 0.18px;
}
.trustpilot-widget__rating span {
    font-weight: 700;
}
.trustpilot-widget__sub {
    color: var(--grey);
    font-size: var(--font-body-small);
    letter-spacing: var(--letter-spacing-normal);
    line-height: 1.26;
}

.slider-arrows {
    display: flex;
    gap: 24px;
}
.slider-arrows__arrow {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    border-radius: 50%;
    cursor: pointer;
    flex-basis: 32px;
    padding: 0;
}
.slider-arrows__arrow svg {
    stroke: white;
}
.slider-arrows__arrow:hover {
    background-color: rgba(255, 255, 255, 0.2);
}
/*****************************************************/

.accordion {
    padding: 10px;
    cursor: pointer;
    transition: var(--transition);
}
.accordion:not(.active):hover {
    background-color: rgba(255, 255, 255, 0.1);
}
.accordion__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
}
.accordion__title {
    font-size: var(--font-h6);
    font-weight: 700;
    line-height: 1.4;
}
.accordion__arrow {
    transition: var(--transition);
    transform: rotate(180deg);
}
.accordion.active .accordion__arrow {
    transform: rotate(0);
}
.accordion__body {
    background: rgba(11, 4, 19, 0.3);
    font-size: var(--font-subtitle);
    letter-spacing: 0.18px;
    line-height: 1.36;
    display: none;
    pointer-events: none;
    padding: 19px 32px;
    margin-top: 8px;
}
.accordion.active .accordion__body {
    pointer-events: all;
}
/*****************************************************/
.footer {
    background: #08090f;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 32px 0;
    margin-top: 104px;
}
.footer__container {
    display: flex;
    flex-direction: column;
}
.footer__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
}
.footer__trustpilot {
    background: transparent;
    padding: 0;
}
.footer__main {
    display: flex;
    justify-content: space-between;
    margin-bottom: 32px;
    align-items: center;
}
.footer__payments {
    display: flex;
    gap: 48px;
}
.footer__pay img {
    width: 100%;
    height: 100%;
    max-width: 115px;
    max-height: 50px;
}
.footer__bottom {
    display: flex;
    padding-top: 32px;
    border-top: 1px solid rgba(39, 245, 211, 0.2);
    justify-content: space-between;
}
.footer__socials {
    display: flex;
    gap: 32px;
}
.footer__social {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}
.footer__social svg {
    width: 100%;
    height: 100%;
}
.footer__social svg path {
    transition: var(--transition);
}
.footer__social:hover svg path {
    fill: var(--accent);
}
.footer__nav ul {
    display: grid;
    gap: 7px 39px;
    width: 100%;
    grid-auto-flow: column;
    grid-template-rows: repeat(5, 1fr);
}
.footer__nav a {
    color: var(--white);
    text-decoration: none;
    letter-spacing: var(--letter-spacing-big);
    line-height: 1.28;
    position: relative;
    transition: var(--transition);
}
.footer__nav {
    flex: 1;
    max-width: 700px;
}
/*****************************************************/
.mobile-menu {
    position: absolute;
    padding-top: 10px;
    left: 0;
    padding: 0 16px;
    top: 70px;
    height: calc(100vh - 70px);
    width: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    row-gap: 32px;
    z-index: 1050;
    transition: var(--transition);
    opacity: 0;
    pointer-events: none;
    text-transform: none;
}
.mobile-menu.active {
    pointer-events: all;
    opacity: 1;
}
div.mobile-menu__search form {
    position: static;
    opacity: 1;
    pointer-events: all;
    flex: 1;
    background-color: transparent;
    border-radius: 32px;
}
.mobile-menu__search {
    background: rgba(255, 255, 255, 0.2);
}
.mobile-menu__catalog-btn {
    width: 100%;
    font-size: 20px;
}
.mobile-menu__catalog {
    background: var(--primary);
    border-radius: 16px;
    margin-bottom: 30px;
}

.mobile-menu__catalog-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: 0;
    opacity: 0;
    transition: opacity 0.2s, max-height 0.5s;
    pointer-events: none;
}
.mobile-menu__catalog.active .mobile-menu__catalog-list {
    padding-bottom: 14px;
    opacity: 1;
    pointer-events: all;
    max-height: 1000px;
}
.mobile-menu__catalog-link,
.mobile-menu__list a {
    text-decoration: none;
    color: #fff;
    font-size: 20px;
    display: flex;
    padding: 5px 24px;
    font-weight: 500;
    line-height: 118%;
}
.mobile-menu__list a {
    border-bottom: 1px solid rgba(136, 1, 219, 0.16);
    padding: 10px 24px;
}
.mobile-menu__list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.share-list-inline {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-left: 24px;
}
.mobile-menu__footer {
    margin-top: auto;
    margin-bottom: 25px;
    display: none;
}
.header__account--lc{
    font-size: var(--font-body-small);
    text-transform: uppercase;
    padding: 11px 20px 9px 20px;
}

@media (max-width: 1280px) {
    .header__account-text {
        display: none;
    }
    .header__account__login-text {
        display: none;
    }
}
@media (min-width: 768px) {
    .header__account--lc {
        position: relative;
    }
    .mobile-menu {
        border-radius: 16px;
        background: rgba(8, 9, 15, 0.5);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        height: auto;
        padding: 2px 10px 10px 10px;
        width: 225px;
        overflow: hidden;
    }
    .mobile-menu__search {
        display: none;
    }
    .mobile-menu__list a {
        font-size: var(--font-body-small);
    }
    .mobile-menu__list a {
        padding-inline: 15px;
    }
}

.mobile-menu__profile-card {
    display: flex;
    align-items: center;
    column-gap: 8px;
}
.mobile-menu__profile-card-img {
    display: flex;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
}
.mobile-menu__profile-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.mobile-menu__list-item-icon {
    display: flex;
    align-items: center;
}
.mobile-menu__list a {
    display: flex;
    transition: var(--transition);
    gap: 12px;
}
.mobile-menu__list a:hover {
    color: var(--primary);
}
/*****************************************************/
.faq-list__title-mobile {
    display: none;
}
.faq-list {
    height: 0;
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.faq-list.active {
    opacity: 1;
    height: auto;
    pointer-events: all;
}
.faq-list__item:not(:last-child) {
    border-bottom: 1px solid var(--accent);
    padding-bottom: 10px;
}
/*****************************************************/
.products {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.product-list {
    margin-bottom: 56px;
    overflow-x: clip;
    overflow-y: visible;
}
.title-block__title {
    font-size: 36px;
    line-height: 1.2;
    color: var(--white);
}

h1.title-block__title {
    font-size: 80px;
    line-height: 100%;
}

h2.title-block__title {
    font-size: 48px;
    line-height: 114%;
}
.product {
    background: rgba(6,3,12, 0.4);
    border-radius: 12px;
}


.product-card-default {
    display: grid;
    grid-template-columns: 1fr 115px 115px 1fr 115px 96px 179px;
    padding: 16px 32px;
    align-items: center;
    gap: 40px;
}
.product-card-default__title {
    font-size: var(--font-subtitle);
    font-weight: 700;
    line-height: 1.4;
}
.product-card-default__badge {
    font-weight: 700;
    font-size: var(--font-body-small);
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    gap: 6px;
    border-radius: 8px;
    width: fit-content;
    margin: 0 auto;
}
.product-card-default__badge--hot, .product-card-default__badge--hot-double {
    background: rgb(39 245 209 / 30%);
    color: var(--accent);
    padding: 8px;
}
.product-card-default__quantity-container {
    width: 100%;
}
.product-card-default__quantity-container > .quantity-minus,
.product-card-default__quantity-container > .quantity-plus {
    width: 54px;
}

.product-card-default__badge--profit {
    padding: 8px;
}
.product-card-default__badge-text--hot {
    display: inline;
}

.product-card-default__time {
    display: flex;
    align-items: center;
    line-height: 1;
    gap: 7px;
}
.product-card-default__features {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.product-card-default__feature {
    color: var(--grey);
    font-weight: 700;
    line-height: 1.26;
    position: relative;
    padding-left: 14px;
    font-size: var(--font-body-small);
}
.product-card-default__feature::after {
    content: "";
    position: absolute;
    left: 0;
    width: 4px;
    height: 4px;
    background: var(--accent);
    border-radius: 50%;
    top: 7px;
}
.product-card-default__badge--procent {
    background: var(--secondary);
}
.product-card-default__badge--best {
    background: #ff9548;
}
.product-card-default__price del,
.product-card-default__price-double del {
    color: var(--primary);
    font-size: var(--font-h6);
    line-height: 1.4;
}
.product-card-default__price del,
.product-card-default__price-double del {
    color: var(--primary);
    font-size: var(--font-body);
    line-height: 1.4;
}

.product-card-default__price ins,
.product-card-default__price-double ins,
.product-card-default__price > span.woocommerce-Price-amount > bdi,
.product-card-default__price-double > span.woocommerce-Price-amount > bdi {
    text-decoration: none;
    font-size: 36px;
    line-height: 1.12;
}
.product-card-default__price ins,
.product-card-default__price > span.woocommerce-Price-amount > bdi,
.product-card-default__price-double ins,
.product-card-default__price-double > span.woocommerce-Price-amount > bdi {
    text-decoration: none;
    font-size: var(--font-h6);
    line-height: 1.4;
}
.product-card-default__btn {
    text-align: center;
    text-transform: uppercase;
    display: flex;
    justify-content: center;
    padding-block: 16px;
    font-weight: 700;
    font-size: var(--font-body-small);
    width: 100%;
}
.product-card-default__btn-wrapper {
    margin-left: -16px;
    align-items: center;
}

.product-card-default__btn.loading {
    pointer-events: none;
}
.product-card-default .added_to_cart {
    display: none;
}

.product__note-default {
    border-top: 1px solid var(--accent);
    padding: 16px 32px;
    display: flex;
    gap: 16px;
    line-height: 1.28;
}
.product__note-default-text {
    line-height: 1.28;
    color: var(--grey);
}
.product__note-default-name {
    color: var(--accent);
    font-weight: 600;
    letter-spacing: 0.01em;
}

@media (max-width: 1440px) {
    .product-card-default {
        grid-template-columns: 1fr 32px 115px 1fr 115px 96px 179px;
    }
    .product-card-default__badge-text--hot {
        display: none;
    }
    .product-card-default__badge--hot {
        padding: 8px 10px 10px 10px;
    }
}
@media (max-width: 1340px) {
    .product-card-default {
        grid-template-columns: 1fr 32px 115px 115px 96px 195px;
        grid-template-rows: auto minmax(0, auto);
        column-gap: 24px;
        row-gap: 0;
    }
    .product-card-default__title {
        grid-column: 1 / 2;
        grid-row-start: 1;
    }
    .product-card-default__features {
        grid-column: 1 / 2;
        grid-row-start: 2;
    }
    .product-card-default__badge--hot {
        grid-column: 2 / 3;
        grid-row: 1 / 3;
    }
    .product-card-default__time {
        grid-column: 3 / 4;
        grid-row: 1 / 3;
    }
    .product-card-default__badge-container {
        grid-column: 4 / 5;
        grid-row: 1 / 3;
    }
    .product-card-default__price {
        grid-column: 5 / 6;
        grid-row: 1 / 3;
    }

    .product-card-default__btn-wrapper {
        grid-column: 6 / 7;
        grid-row: 1 / 3;
        margin-left: 0;
    }
}
@media (max-width: 1100px) {
    .product-card-default {
        column-gap: 16px;
        padding: 16px;
    }
    .product__note-default {
        padding: 16px;
    }
}
@media (max-width: 1024px) {
    .product-card-default {
        column-gap: 24px;
    }
}
.product-card-default__badge--hot-double {
    display: none;
    margin-right: 16px;
}
.product-card-default__badge-container {
    display: flex;
    flex-direction: row;
}
.product-card-default__btn-wrapper {
    display: flex;
}
.product-card-default__price-double {
    display: none;
}
@media (max-width: 960px) {
    .product-card-default {
        grid-template-columns: 1fr repeat(2, minmax(0, auto));
        grid-template-rows: repeat(3, minmax(0, auto));
        gap: 16px;
    }
    .product-card-default__title {
        grid-column: 1 / 2;
        grid-row-start: 1;
    }
    .product-card-default__features {
        grid-column: 1 / 2;
        grid-row-start: 2;
    }
    .product-card-default__badge--hot {
        display: none;
    }
    .product-card-default__badge{
        margin: 0;
    }
    .product-card-default__badge--hot-double {
        display: flex;
        margin-right: 16px;
    }
    .product-card-default__time {
        grid-column: 1 / 2;
        grid-row: 3 / 4;
    }
    .product-card-default__badge-container {
        grid-column: 3 / 4;
        grid-row: 1 / 3;
    }
    .product-card-default__price-double {
        display: flex;
        flex-direction: column;
    }
    .product-card-default__price {
        display: none;
    }
    .product-card-default__btn-wrapper {
        grid-column: 2 / 4;
        grid-row: 3 / 4;
        justify-self: end;
        display: flex;
        gap: 16px;
    }
    .product-card-default__btn {
        width: 195px;
    }
}
@media (max-width: 640px) {
    .product-card-default {
        grid-template-columns: auto auto;
        grid-template-rows: repeat(5, minmax(0, auto));
        gap: 0;
    }
    .product-card-default__title {
        grid-column: 1 / 3;
        grid-row-start: 2;
        margin-bottom: 16px;
    }
    .product-card-default__features {
        grid-column: 1 / 3;
        grid-row-start: 3;
    }
    .product-card-default__features li:last-child {
        margin-bottom: 24px;
    }
    .product-card-default__time {
        grid-column: 1 / 2;
        grid-row: 4 / 5;
    }
    .product-card-default__badge-container {
        grid-column: 1 / 3;
        grid-row: 1 / 2;
    }
    .product-card-default__badge--hot-double {
        margin-right: 8px;
    }
    .product-card-default__price-double {
        display: none;
    }
    .product-card-default__price {
        display: flex;
        flex-direction: column;
        grid-column: 2 / 3;
        grid-row: 4 / 5;
        justify-self: end;
    }
    .product-card-default__btn-wrapper {
        grid-column: 1 / 3;
        grid-row: 5 / 6;
        width: 100%;
        margin-top: 24px;
    }
    .product-card-default__btn {
        width: 100%;
    }
    .product-card-default__badge--hot, .product-card-default__badge--hot-double, .product-card-default__badge--profit{
        margin-bottom: 16px;
    }
    .product__note-default {
        flex-direction: column;
        gap: 8px;
    }
}

/*****************************************************/

.product-card {
    display: grid;
    grid-template-columns: 1fr 140px 125px 1fr 125px 140px 195px;
    padding: 32px;
    align-items: center;
    gap: 32px;
}
.product-card__title {
    font-size: var(--font-h6);
    font-weight: 700;
    line-height: 1.4;
}
.product-card__config .product-card__title {
    font-size: 28px;
    color: #fff;
    line-height: 1.2;
    width: 100%;
}
.product-card__badge {
    font-weight: 700;
    font-size: var(--font-body-small);
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    gap: 6px;
    border-radius: 8px;
    width: fit-content;
    margin: 0;
}
.product-card__badge--hot {
    background: rgb(39 245 209 / 30%);
    color: var(--accent);
}
.product-card__badge--best-deal {
    background: #ff9548;
    color: var(--accent);
}
.product-card__badge-container {
    display: flex;
    gap: 8px
}
.product-card__badge--conf-best-deal {
    background: #ff9548;
    color: #fff;
}
.product-card__time {
    display: flex;
    align-items: center;
    line-height: 1;
    gap: 7px;
}
.product-card__features {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.product-card__feature {
    color: var(--grey);
    font-weight: 700;
    line-height: 1.26;
    position: relative;
    padding-left: 14px;
}
.product-card__feature::after {
    content: "";
    position: absolute;
    left: 0;
    width: 4px;
    height: 4px;
    background: var(--accent);
    border-radius: 50%;
    top: 7px;
}
.product-card__badge--procent {
    background: var(--secondary);
}
.product-card__badge--profit {
    grid-column: 5 / 6;
}
.product-card__badge--best {
    background: #ff9548;
}
.product-card__price {
    grid-column: 6 / 7;
}
.product-card__price del {
    color: var(--primary);
    font-size: var(--font-h6);
    line-height: 1.4;
}
.product-card__price ins,
.product-card__price > span.woocommerce-Price-amount > bdi {
    text-decoration: none;
    font-size: 36px;
    line-height: 1.12;
}
.product-card__btn {
    text-align: center;
    text-transform: uppercase;
    display: flex;
    justify-content: center;
    padding-block: 18px;
    font-weight: 700;
    font-size: var(--font-body-small);
    grid-column: 7 / 8;
}
.product-card__btn.loading {
    pointer-events: none;
}
.product__note {
    border-top: 1px solid var(--accent);
    padding: 16px 32px;
    display: flex;
    gap: 32px;
    line-height: 1.28;
}
.product__note-text {
    line-height: 1.28;
    color: var(--grey);
}
.product__note-name {
    color: var(--accent);
    font-weight: 600;
    letter-spacing: 0.01em;
}
.product-card .added_to_cart {
    display: none;
}
/*****************************************************/
.cart-panel {
    position: fixed;
    bottom: 20px;
    background: rgba(6,3,12,0.8);
    border-radius: 24px;
    display: flex;
    z-index: 1046;
    left: 50%;
    transform: translateX(-50%);
    padding: 14px 32px;
    gap: 32px;
    max-width: calc(100% - 550px);
    align-items: center;
}

.cart-panel--empty {
    display: none;
}
.cart-panel__opr {
    color: var(--grey);
    font-weight: 700;
    line-height: 1.26;
    letter-spacing: var(--letter-spacing-normal);
    font-size: var(--font-body-small);
    white-space: nowrap;
}
.cart-panel__price-block {
    display: flex;
    align-items: flex-end;
    gap: 8px;
}
.cart-panel__price-block--disc--hide {
    display: none;
}
.cart-panel__price {
    font-size: 36px;
    line-height: 1;
}
.cart-panel__btn {
    text-align: center;
    justify-content: center;
    text-transform: uppercase;
    padding: 17px;
    white-space: nowrap;
    flex: 1 0;
    width: 330px;
}
.cart-panel__btn--disabled {
    cursor: no-drop;
}
.cart-panel__price--disc {
    text-decoration: line-through;
    color: var(--primary);
}
.cart-panel__price-block--profit {
    display: none;
}
/*****************************************************/
.login-page {
    padding: 150px 0;
    background-image: url("./../img/picture/login_bg.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    margin-bottom: -120px;
}
.login-page #login__modal_form {
    display: flex;
    flex-direction: column;
    background: none;
}
.login-page__container {
    justify-content: center;
    align-items: center;
    display: flex;
    min-height: 620px;
}
/*****************************************************/
.popup-payment__id {
    font-size: var(--font-h3);
    font-weight: 700;
    display: flex;
}
.popup__text {
    max-width: 395px;
    text-align: center;
    line-height: 1.5;
}
.popup__text.pending {
    max-width: 100%;
}
.popup__text.failed {
    max-width: 500px;
}
.popup-payment__actions {
    max-width: 320px;
}
.popup-payment__actions.failed {
    max-width: 100%;
}
/*****************************************************/
.woocommerce-privacy-policy-text a {
    color: var(--secondary);
    text-decoration: none;
}
/*****************************************************/
.popup {
    background: #06030c;
    padding: 32px;
    width: 734px;
}
.popup__wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
}
.popup__actions {
    margin-top: 16px;
    display: flex;
    align-items: center;
    width: 100%;
    gap: 32px;
}
.popup__title {
    font-weight: 700;
    font-size: var(--font-h4);
    line-height: 1.2;
    text-align: center;
}
.popup__actions > .btn {
    padding: 16px;
    text-align: center;
    display: flex;
    justify-content: center;
    font-size: var(--font-body-small);
    line-height: 1.4;
    flex: 1 0 40%;
}
.page-hero {
    margin: 0 auto 60px;
    padding: 326px 0 0;
    position: relative;
    z-index: 1038;
}
.page-hero.page-hero__single {
    margin-bottom: 32px;
}
.page-hero_hero__bg, .checkout-hero_hero__bg {
    position: absolute;
    width: 100%;
    height: 100%;
    min-height: 800px;
    max-height: 840px;
    background-position: center top;
    background-size: auto 100%;
    background-repeat: no-repeat;
    pointer-events: none;
    top: 0;
    left: 0;
    z-index: 0;
}
.page-hero__container {
    position: relative;
}
@media (min-width: 1920px) {
    .page-hero-hero__bg {
        min-height: 937px;
    }
}
.aioseo-breadcrumbs a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 126%;
}
span.aioseo-breadcrumb-separator {
    opacity: 0;
}
span.aioseo-breadcrumb {
    color: #27F5D1;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 17.64px;
    letter-spacing: 0.14px;
}
.aioseo-breadcrumbs {
    margin-bottom: 24px;
}
.text-content {
    margin-top: 24px;
}
.text-content a {
    color: #27F5D1;
}
.text-content p, .text-content ul, .text-content ol, .text-content blockquote {
    margin-bottom: 32px;
}
.text-content ul {
    list-style: disc;
    padding-left: 40px;
}
.text-content li {
    margin-top: 16px;
}
.text-content *:last-child {
    margin-bottom: 0;
}
.text-content blockquote {
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    padding: 32px;
}
.text-content h1, .text-content h2, .text-content h3, .text-content h4, .text-content h5, .text-content h6 {
    color: #fff;
    margin: 56px 0 32px;
}
.text-content *:first-child {
    margin-top: 0;
}
.faq-content {
    overflow: hidden;
}
.ajax_add_to_cart_disabled {
    cursor: no-drop;
    pointer-events: none
}
/*****************************************************/
@media (max-width: 1680px) {
    h2.title {
        text-transform: none;
        font-size: 68px;
    }
    h2.title-block__title {
        font-size: 48px;
        text-transform: none;
    }
    .section {
        padding: 105px 0;
    }
    .reviews__titles h2.title br {
        display: none;
    }
    .reviews__heading {
        align-items: center;
    }
    .games-grid {
        grid-template-columns: repeat(6, minmax(207px, 1fr));
    }
}
@media (max-width: 1500px) {
    .reviews__heading {
        flex-wrap: wrap;
        row-gap: 32px;
    }
    .reviews__titles {
        flex-basis: 100%;
    }
    h2.title.title--left.reviews__title br {
        display: none;
    }
}

@media (max-width: 1440px) {
    .cart-panel__price-block--disc .cart-panel__opr {
        display: none;
    }
    .cart-panel__price-block--disc {
        display: none;
    }
    .cart-panel__price-block--profit {
        display: flex;
    }
    .cart-panel__price--disc {
        text-decoration: none;
    }
    .cart-panel__price--disc > span::before {
        content: "-";
    }

    span.cart-panel__price.cart-panel__price--profit {
        color: #8801db;
    }
}
@media (max-width: 1439px) {
    .games-grid {
        grid-template-columns: repeat(5, minmax(207px, 1fr));
    }
    .games__numbers {
        padding: 0;
    }
    .product-card__price ins, .product-card__price > span.woocommerce-Price-amount > bdi {
        font-size: 28px;
        display: block;
    }
    .product-card__price del {
        font-size: 18px;
    }
}
@media (max-width: 1350px) {
    .search-form {
        position: relative;
    }

    .search-form form {
        position: absolute;
        right: 0;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 16px;
        height: 40px;
        display: flex;
        top: 50px;
        z-index: 9;
    }
    .product-card {
        gap: 10px;
        grid-template-columns: 1fr 110px 134px 1.5fr 125px 140px 195px;
    }
    .product-card__title {
        grid-column: 1 / 3;
    }
    .product-card__time {
        grid-row: 2;
        grid-column: 3;
        justify-content: center;
    }
    .product-card__features {
        grid-column: 4;
        justify-content: center;
    }
    .product-card__badge--profit,
    .product-card__price,
    .product-card__btn,
    .product-card__features,
    .product-card__title {
        grid-row: 1 / 3;
    }
}
@media (max-width: 1279px) {
    .games-grid {
        grid-template-columns: repeat(4, minmax(207px, 1fr));
    }
    .cart-panel {
        max-width: calc(100% - 236px);
    }
    .cart-panel__btn {
        padding: 17px 17px;
        width: auto;
    }
}
@media (max-width: 1150px) {
    .cart-panel__opr {
        display: none;
    }
    .header__container {
        gap: 12px;
    }
}

@media (max-width: 960px) {
    .cart-panel__price-block--profit {
        display: none;
    }
}

@media (max-width: 1250px) {
    .footer__payments {
        gap: 24px;
        flex-wrap: wrap;
        width: 100%;
    }
    .footer__pay {
        flex: 0 0 84px;
        justify-content: flex-start;
    }
    .product-card {
        grid-template-columns: 1fr minmax(0, 110px) minmax(0, 134px) 1.5fr minmax(0, 165px) minmax(0, 185px) minmax(
                180px,
                190px
            );
    }

    .product-card__title {
        grid-column: 1 / 6;
        grid-row: 1;
    }

    .product-card__badge--hot {
        grid-column: 7 / 8;
        grid-row: 1;
        width: fit-content;
        margin-left: auto;
        margin-right: 0;
    }
    .product-card-configuration .product-card__badge--hot {
        margin-left: 0;
        margin-right: auto;
    }
    .product-card__time {
        grid-column: 6 / 7;
        grid-row: 1;
        justify-content: flex-end;
        margin-right: -25px;
    }
    .product-card__features {
        grid-column: 1 / 4;
    }
    .product-card__price,
    .product-card__btn,
    .product-card__features,
    .product-card__badge--profit {
        grid-row: 2;
    }
    .product-card__price .product-card__time {
        display: none;
    }
}
@media (max-width: 1024px) {
    .header__container {
        padding: 0 32px;
    }
    .footer {
        margin-top: 80px;
    }
}
@media (max-width: 1015px) {
    .section {
        padding: 35px 0;
    }
    .footer__main {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }
}
@media (max-width: 980px) {
    .header__nav,
    .header__catalog {
        display: none;
    }
    .header__search {
        margin-left: auto;
    }
    .header__logo {
        margin-right: auto;
    }
    .header__container {
        gap: 24px;
    }
    .burger {
        display: flex;
        padding: 0;
    }
    .games__numbers {
        padding: 0;
        gap: 10px;
    }
    .cart-panel__btn--items {
        display: none;
    }
}
@media (max-width: 920px) {
    .product-card__time {
        margin-right: 0;
    }
    .games-grid {
        grid-template-columns: repeat(auto-fill, minmax(168px, 1fr));
    }
}
@media (max-width: 800px) {
    .product-card {
        grid-template-columns: 1fr;
        row-gap: 20px;
    }
    .product-card__price,
    .product-card__btn,
    .product-card__features,
    .product-card__badge--profit,
    .product-card__badge--hot,
    .product-card__time,
    .product-card__title {
        grid-column: 1;
        grid-row: initial;
        margin: 0;
        width: fit-content;
    }
    .product-card__time {
        grid-row: 2;
    }
    .product-card__btn {
        padding: 18px 30px;
    }
}
@media (max-width: 770px) {
    .header__share {
        display: none;
    }
}
@media (max-width: 768px) {
    .header__search {
        display: none;
    }
    .header__logo {
        margin-right: auto;
    }
    .header__account {
        background: transparent;
        padding: 0;
        border: none;
        font-size: 0;
    }
    .header__account:hover {
        background: transparent;
    }
    .mobile-menu {
        left: initial;
        right: 0;
    }
    .mobile-menu__footer {
        display: flex;
    }
    .hero-bg__slide {
        background-position: center;
    }
    .games-grid {
        grid-template-columns: repeat(auto-fill, minmax(165px, 1fr));
    }
    .hero {
        margin-bottom: 60px;
    }
    .games__btn {
        width: calc(100% - 30px);
    }
}
@media (max-width: 767px) {
    .footer {
        margin-top: 64px;
    }
    h1.title-block__title {
        font-size: var(--font-h1);
        text-transform: none;
    }
    h2.title-block__title {
        font-size: var(--font-h2);
        text-transform: none;
    }
    h3.title-block__title {
        font-size: var(--font-h4);
    }
}
@media (max-width: 730px) {
    .games__numbers {
        flex-direction: column;
        align-items: center;
        margin-bottom: 30px;
    }
    .number-block__name br {
        display: none;
    }
    .games__number {
        padding: 9px 48px;
    }

    h1 {
        font-size: 40px;
        line-height: 114%;
        letter-spacing: 0.4px;
    }
    h2 {
        font-size: 32px;
        line-height: 116%;
        letter-spacing: 0.32px;
    }
    h3 {
        font-size: 28px;
        line-height: 112%;
        letter-spacing: 0.28px;
    }
    h4 {
        font-size: 24px;
        line-height: 114%;
        letter-spacing: 0.24px;
    }
    h5 {
        font-size: 22px;
        line-height: 116%;
        letter-spacing: 0.22px;
    }
    h6 {
        font-size: 20px;
        line-height: 118%;
        letter-spacing: 0.2px;
    }
}
@media (max-width: 670px) {
    .footer__nav ul {
        display: flex;
        flex-wrap: wrap;
        gap: 23px;
    }
    .footer__top {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    .footer__bottom {
        flex-direction: column;
        gap: 25px;
    }
    .cart-panel__price-block {
        display: none;
    }
    .cart-panel {
        background: transparent;
        padding: 0;
        left: 50%;
        transform: translateX(-50%);
    }
    .cart-panel__btn {
        width: fit-content;
        padding-inline: 35px;
    }
    .product-card__btn {
        width: 100%;
    }
}
@media (max-width: 545px) {
    .header__logo {
        flex-basis: 166px;
        width: 166px;
    }

    .trustpilot-widget {
        flex-direction: column;
        gap: 7px;
    }
    .accordion__body {
        font-size: var(--font-body);
    }
    .popup__actions {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }
    .cart-panel {
        max-width: calc(100% - 10px);
    }
}
@media (max-width: 510px) {
    .header__catalog {
        display: none;
    }
}
@media (max-width: 500px) {
    .title, h2.title {
        font-size: 40px;
    }
}
@media (max-width: 478px) {
    .game-card__poster {
        height: 200px;
    }
    .product__note {
        flex-direction: column;
        gap: 6px;
    }
    .product-card__price {
        display: flex;
        flex-direction: column;
    }
    .header {
        padding: 12px 0;
        background: #0B0413;
        backdrop-filter: blur(15px);
        transition: all 0.4s;
    }
    body.lock .header {
        background: transparent;
    }
}
@media (max-width: 430px) {
    .faq-list__title-mobile {
        font-weight: 700;
        line-height: 1.34;
        font-size: 24px;
        display: flex;
        padding-left: 20px;
        margin-bottom: -6px;
    }
    .faq-list {
        height: 100%;
        opacity: 1;
        pointer-events: all;
        margin-bottom: 40px;
    }
    .faq-list:last-child {
        margin-bottom: 0;
    }
    .games-grid {
        grid-template-columns: 1fr 1fr;
        padding-inline: 0;
    }
}
@media (max-width: 400px) {
    .trustpilot {
        gap: 10px;
    }
    .game-card__title {
        font-size: 16px;
    }
    .game-card__booster {
        font-size: 12px;
    }

    .games__btn {
        padding: 12px 60px;
        width: 100%;
    }
    .games__number {
        padding: 9px 18px;
        width: 100%;
        justify-content: center;
    }
    .cart-panel {
        bottom: 10px;
    }
    .popup__title br {
        display: none;
    }
    .trustpilot__stars > img {
        width: 20px;
        height: 20px;
    }
}
@media (max-width: 370px) {
    .game-card__poster {
        height: 185px;
    }
    .hero__main .trustpilot__stars > img {
        display: none;
    }
    .hero__main .trustpilot__stars > img:first-child {
        display: block;
    }
}
