html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    line-height: 1;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: "";
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

:root {
    --font: "Golos Text", sans-serif;
    --base: #276269;
    --white: #FFFFFF;
    --bg: #F0F0F0;
    --orange: #DE9F56;
    --gradient: linear-gradient(90deg, #092E32, #64989E);
}

* {
    box-sizing: border-box;
    text-decoration: none;
    word-break: break-word;
}

*:hover,
*:focus {
    outline: 0;
}

body {
    background: var(--white);
    font: 400 18px/1.3 var(--font);
    color: var(--base);
}

body::-webkit-scrollbar {
    width: 10px;
    height: 0;
    background: var(--white);
}

body::-webkit-scrollbar-thumb {
    width: 10px;
    background: var(--base);
    border-radius: 10px;
}

body.hidden {
    overflow: hidden;
}

@supports not selector(::-webkit-scrollbar) {
    body {
        scrollbar-width: thin;
        scrollbar-color: var(--base) var(--white);
    }
}

#app {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.wrapper {
    width: 100%;
    max-width: 1248px;
    padding: 0 16px;
    margin: 0 auto;
}

.overflowH {
    overflow: hidden;
}

a {
    color: var(--base);
    transition: 0.25s;
}

a:hover {
    color: var(--orange);
}

button {
    border: none;
    background: none;
    margin: 0;
    padding: 0;
    font: 500 24px/1.2 var(--font);
    color: var(--base);
    cursor: pointer;
    transition: 0.25s;
}

img {
    width: auto;
    height: auto;
    max-width: 100%;
}

svg {
    transition: 0.25s;
}

strong {
    font-weight: 500;
}

h1,
.h1 {
    font: 700 56px/1 var(--font);
    letter-spacing: -0.01em;
}

h2,
.h2 {
    font: 700 40px/1.3 var(--font);
}

h3,
.h3 {
    font: 700 32px/1.2 var(--font);
}

h4,
.h4 {
    font: 700 24px/1.2 var(--font);
}

h5,
.h5 {
    font: 700 20px/1.2 var(--font);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 100%;
    min-height: 60px;
    background: var(--orange);
    border-radius: 10px;
    border: none;
    padding: 12px 32px;
    font: 500 22px/1.2 var(--font);
    color: var(--white);
    cursor: pointer;
    transition: 0.25s;
    overflow: hidden;
}

.btn__icon {
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    width: 24px;
    margin-right: 12px;
}

.btn__text {
    position: relative;
    z-index: 2;
    max-width: 100%;
}

.btn_sm {
    min-height: 32px;
    border-radius: 8px;
    padding: 6px 12px;
    font-weight: 600;
    font-size: 16px;
}

.btn_white {
    background: var(--white);
    color: var(--base);
}

.btn:hover {
    background: #d6872b;
    color: var(--white);
}

.btn_gradient {
    background: var(--gradient);
    position: relative;
}

.btn_gradient::before {
    content: "";
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--orange);
    opacity: 0;
    transition: 0.25s;
}

.btn_gradient:hover {
    background: var(--gradient);
}

.btn_gradient:hover::before {
    opacity: 1;
}

.backBtn {
    display: inline-flex;
    align-items: center;
    opacity: 0.5;
}

.backBtn__icon {
    flex-shrink: 0;
    width: 20px;
    margin-right: 4px;
    transition: 0.25s;
}

.backBtn__text {
    max-width: 100%;
    font: 400 18px/1 var(--font);
    color: #3A3F47;
}

.backBtn:hover {
    opacity: 1;
}

.backBtn:hover .backBtn__icon {
    transform: translate(-4px, 0);
}

input {
    width: 100%;
    height: 67px;
    background: #335F64;
    border: none;
    border-radius: 10px;
    padding: 0 24px;
    font: 400 16px/1.2 var(--font);
    color: var(--white);
}

input::placeholder {
    font: 400 16px/1.2 var(--font);
    color: rgba(255, 255, 255, 0.8);
}

input[type=number] {
    -moz-appearance: textfield;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.textBlock h1,
.textBlock h2 {
    margin-top: 48px;
    margin-bottom: 24px;
}

.textBlock h1:last-child,
.textBlock h2:last-child {
    margin-bottom: 0;
}

.textBlock h1:first-child,
.textBlock h2:first-child {
    margin-top: 0;
}

.textBlock h3,
.textBlock h4 {
    margin-top: 40px;
    margin-bottom: 20px;
}

.textBlock h3:last-child,
.textBlock h4:last-child {
    margin-bottom: 0;
}

.textBlock h3:first-child,
.textBlock h4:first-child {
    margin-top: 0;
}

.textBlock h5,
.textBlock h6 {
    margin-top: 32px;
    margin-bottom: 16px;
}

.textBlock h5:last-child,
.textBlock h6:last-child {
    margin-bottom: 0;
}

.textBlock h5:first-child,
.textBlock h6:first-child {
    margin-top: 0;
}

.textBlock p {
    margin-bottom: 16px;
}

.textBlock p:last-child {
    margin-bottom: 0;
}

.textBlock a {
    text-decoration: underline;
    color: var(--base);
}

.textBlock a:hover {
    color: var(--orange);
}

.textBlock ul {
    margin-bottom: 16px;
}

.textBlock ul:last-child {
    margin-bottom: 0;
}

.textBlock ul li {
    display: block;
    position: relative;
    padding-left: 20px;
    margin-bottom: 4px;
}

.textBlock ul li:last-child {
    margin-bottom: 0;
}

.textBlock ul li::before {
    content: "";
    position: absolute;
    top: 9px;
    left: 8px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--base);
}

.textBlock ol {
    list-style-type: decimal;
    margin-left: 24px;
    margin-bottom: 16px;
}

.textBlock ol:last-child {
    margin-bottom: 0;
}

.textBlock ol li {
    margin-bottom: 4px;
}

.textBlock ol li:last-child {
    margin-bottom: 0;
}

.header {
    padding-top: 32px;
    padding-bottom: 36px;
}

.header__wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header__logo {
    width: 142px;
    display: flex;
    align-items: center;
}

.header__logo img {
    width: 100%;
}

.header__burger {
    display: none;
}

.headerMenu {
    display: flex;
    align-items: center;
}

.headerMenu__item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    padding: 12px 24px;
    font: 500 20px/1.3 var(--font);
    letter-spacing: -0.01em;
    color: rgba(16, 77, 84, 0.6);
    margin-right: 40px;
}

.headerMenu__item:last-child {
    margin-right: 0;
}

.headerMenu__item:hover {
    color: var(--base);
}

.headerMenu__item.active {
    background: var(--gradient);
    color: var(--white);
}

.footer {
    margin: auto;
    margin-bottom: 0;
    width: 100%;
    padding-top: 84px;
}

.footer__inner {
    background: var(--gradient);
    color: var(--white);
    padding: 80px 0;
}

.footer__wrap {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.footer__logo {
    width: 142px;
    display: flex;
    align-items: center;
    margin-bottom: 24px;
}

.footer__logo img {
    width: 100%;
}

.footer__bottom {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font: 400 16px/1.2 var(--font);
}

.footer__bottom a {
    font-weight: 700;
    color: var(--white);
    text-decoration: underline;
}

.footer__bottom a:hover {
    color: var(--orange);
}

.footerCooperation {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 100%;
    min-height: 56px;
    border: 1px dashed var(--white);
    border-radius: 8px;
    padding: 12px 32px;
    font: 500 18px/1.2 var(--font);
    color: var(--white);
    cursor: pointer;
    transition: 0.25s;
}

.footerCooperation__icon {
    flex-shrink: 0;
    width: 24px;
    margin-right: 16px;
}

.footerCooperation__text {
    max-width: 100%;
}

.footerCooperation:hover {
    background: var(--base);
    color: var(--white);
}

.footerBlock__title {
    margin-bottom: 40px;
}

.footerBlock__text {
    font: 400 16px/1.2 var(--font);
}

.footerBlock__text p {
    margin-bottom: 16px;
}

.footerBlock__text p:last-child {
    margin-bottom: 0;
}

.footerBlock__text a {
    color: var(--white);
    text-decoration: underline;
}

.footerBlock__text a:hover {
    color: var(--orange);
}

.section {
    padding: 36px 0;
}

.section.np {
    padding: 0;
}

.section.npt {
    padding-top: 0;
}

.section.npb {
    padding-bottom: 0;
}

.section_bg {
    background: var(--bg);
    padding: 56px 0;
    margin: 20px 0;
}

.sectionHead {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 32px;
}

.sectionHead:last-child {
    margin-bottom: 0;
}

.sectionHead__liveIcon {
    flex-shrink: 0;
    width: 35px;
}

.sectionHead__tag {
    max-width: 100%;
    min-height: 45px;
    background: var(--orange);
    border-radius: 12px;
    padding: 8px 12px;
    display: inline-flex;
    align-items: center;
    font: 500 16px/1.3 var(--font);
    color: var(--white);
}

.sectionHead__tag img {
    flex-shrink: 0;
    width: 14px;
    margin-right: 4px;
}

.sectionHead__tag span {
    max-width: 100%;
}

.mobMenu {
    display: none;
    position: fixed;
    z-index: 50;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
}

.mobMenu__overlay {
    width: 100%;
    height: 100%;
}

.mobileMenu {
    position: absolute;
    top: 0;
    right: -265px;
    width: 262px;
    height: 100%;
    background: var(--bg);
    padding: 48px 32px;
    font: 500 20px/1.2 var(--font);
    transition: 0.5s;
}

.mobileMenu.active {
    right: 0;
}

.mobileMenu__item {
    display: block;
    border-radius: 8px;
    padding: 8px 16px;
    text-align: center;
    color: var(--base);
    margin-bottom: 16px;
}

.mobileMenu__item:last-child {
    margin-bottom: 0;
}

.mobileMenu__item:hover {
    color: var(--base);
}

.mobileMenu__item.active {
    background: var(--gradient);
    color: var(--white);
}

.gamesList {
    display: grid;
    grid-gap: 24px;
    grid-template-columns: repeat(4, 1fr);
}

.gamesItem {
    display: flex;
    flex-direction: column;
    border-radius: 12px;
    overflow: hidden;
    transition: 0.25s;
}

.gamesItem__image {
    flex-shrink: 0;
    display: block;
    position: relative;
    overflow: hidden;
}

.gamesItem__image::before {
    content: "";
    display: block;
    padding-top: 52%;
}

.gamesItem__image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gamesItem__content {
    height: 100%;
    background: var(--gradient);
    padding: 20px 16px;
    padding-top: 24px;
    display: flex;
    flex-direction: column;
    color: var(--white);
}

.gamesItem__head {
    margin-bottom: 16px;
}

.gamesItem__title {
    display: block;
    margin-bottom: 4px;
}

.gamesItem__title:last-child {
    margin-bottom: 0;
}

.gamesItem__subtitle {
    display: block;
    font: 400 14px/1 var(--font);
    color: rgba(255, 255, 255, 0.5);
}

.gamesItem__bottom {
    margin: auto;
    margin-bottom: 0;
    width: 100%;
    display: flex;
    align-items: center;
}

.gamesItem__btn {
    flex-shrink: 0;
    margin-left: 8px;
}

.gamesItem:hover {
    transform: scale(1.04);
}

.gamesItem:hover .gamesItem__btn {
    background: var(--orange);
    color: var(--white);
}

.gamesItemVisit {
    width: 100%;
    display: flex;
    align-items: center;
}

.gamesItemVisit__images {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    margin-right: 8px;
}

.gamesItemVisit__img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    margin-left: -13px;
}

.gamesItemVisit__img:first-child {
    margin: 0;
}

.gamesItemVisit__text {
    width: 100%;
    font: 400 12px/0.9 var(--font);
    letter-spacing: -0.01em;
}

.digitsBlock {
    background: var(--gradient);
    border-radius: 12px;
    padding: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.digitsItem {
    display: flex;
    align-items: center;
    margin-right: 80px;
}

.digitsItem:last-child {
    margin-right: 0;
}

.digitsItem__icon {
    flex-shrink: 0;
    width: 56px;
    margin-right: 16px;
}

.digitsItem__content {
    max-width: 100%;
}

.digitsItem__digit {
    margin-bottom: 4px;
}

.digitsItem__text {
    font-size: 16px;
}

.live__wrap {
    display: flex;
    flex-wrap: nowrap;
}

.liveItem {
    flex-shrink: 0;
    text-align: center;
}

.liveItem__image {
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    margin-bottom: 12px;
}

.liveItem__image::before {
    content: "";
    display: block;
    padding-top: 45%;
}

.liveItem__image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.liveItem__title {
    font: 700 20px/1.2 var(--font);
    margin-bottom: 4px;
}

.liveItem__text {
    font: 400 16px/1.2 var(--font);
}

.about__wrap {
    display: grid;
    grid-gap: 32px;
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 32px;
}

.about__wrap:last-child {
    margin-bottom: 0;
}

.aboutItem {
    display: flex;
    align-items: center;
}

.aboutItem__icon {
    flex-shrink: 0;
    width: 176px;
    height: 176px;
    background: var(--bg);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.aboutItem__icon img {
    width: 94px;
}

.aboutItem__content {
    width: 100%;
}

.aboutItem__title {
    font: 700 28px/1 var(--font);
    margin-bottom: 16px;
}

.aboutItem__text {
    font-weight: 500;
}

.aboutItem__text p {
    margin-bottom: 16px;
}

.aboutItem__text p:last-child {
    margin-bottom: 0;
}

.aboutText {
    background: var(--bg);
    border-radius: 10px;
    padding: 32px;
}

.aboutText__title {
    font: 700 28px/1 var(--font);
    margin-bottom: 24px;
}

.aboutText__text {
    margin-bottom: 24px;
}

.aboutText__text:last-child {
    margin-bottom: 0;
}

.reviews__list {
    display: grid;
    grid-gap: 24px;
    grid-template-columns: repeat(3, 1fr);
}

.reviews__btn {
    display: none;
    margin-top: 32px;
}

.reviews__btn.active {
    display: flex;
    justify-content: center;
}

.reviews__btn .btn {
    min-width: 380px;
}

.reviewsItem {
    display: none;
    background: var(--bg);
    border-radius: 12px;
    padding: 20px 24px;
    padding-top: 32px;
}

.reviewsItem:nth-child(-n+6),
.reviewsItem.active {
    display: flex;
    flex-direction: column;
}

.reviewsItem__head {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
}

.reviewsItem__date {
    flex-shrink: 0;
    font: 400 16px/1.1 var(--font);
    opacity: 0.4;
    margin-left: 8px;
}

.reviewsItem__text {
    font: 400 20px/1.1 var(--font);
    margin-bottom: 24px;
}

.reviewsItem__image {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
}

.reviewsItem__image img {
    width: 100%;
    border-radius: 6px;
}

.reviewsItem__bottom {
    margin: auto;
    margin-bottom: 0;
    width: 100%;
    display: flex;
    align-items: center;
}

.reviewsItem__bottomText {
    font: 400 16px/1.1 var(--font);
    color: #858585;
}

.reviewsItemPerson {
    width: 100%;
    display: flex;
    align-items: center;
}

.reviewsItemPerson__image {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 2px;
    object-fit: cover;
    margin-right: 8px;
}

.reviewsItemPerson__name {
    width: 100%;
    font: 400 20px/1.1 var(--font);
}

.reviewsItemRating {
    display: flex;
    align-items: center;
    margin-right: 12px;
}

.reviewsItemRating__icon {
    width: 32px;
    margin-right: 12px;
}

.reviewsItemRating__text {
    font: 400 24px/1.1 var(--font);
}

.gameBanner {
    border-radius: 12px;
    padding: 80px 100px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.gameBanner::before {
    content: "";
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.25);
}

.gameBanner__bg {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gameBanner__image {
    position: relative;
    z-index: 3;
    flex-shrink: 0;
    width: 176px;
    height: 176px;
    border-radius: 10px;
    object-fit: cover;
    margin-right: 40px;
}

.gameBanner__title {
    position: relative;
    z-index: 3;
    width: 100%;
    color: var(--white);
}

.currencyBlock {
    display: grid;
    grid-gap: 32px;
    grid-template-columns: repeat(3, 1fr);
}

.currencyItem {
    background: var(--orange);
    border-radius: 12px;
    padding-bottom: 24px;
    color: var(--white);
    overflow: hidden;
}

.currencyItem__image {
    aspect-ratio: 2.66;
    margin-bottom: 20px;
}

.currencyItem__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.currencyItem__title {
    padding: 0 24px;
    margin-bottom: 16px;
}

.currencyItem__title:last-child {
    margin-bottom: 0;
}

.currencyItem__bottom {
    padding: 0 24px;
    display: flex;
    align-items: center;
}

.currencyItem__sale {
    flex-shrink: 0;
    background: var(--white);
    border-radius: 8px;
    padding: 8px 12px;
    font: 500 16px/1 var(--font);
    letter-spacing: -0.01em;
    color: var(--base);
    margin-right: 15px;
}

.currencyItem__price {
    max-width: 100%;
    font: 500 32px/0.9 var(--font);
    letter-spacing: -0.01em;
}

.gameAccounts__tabs {
    display: flex;
    flex-wrap: wrap;
    column-gap: 40px;
    row-gap: 12px;
    margin-bottom: 32px;
}

.gameAccounts__list {
    display: grid;
    grid-gap: 24px;
    grid-template-columns: repeat(4, 1fr);
}

.gameAccountsTab {
    position: relative;
    padding-left: 32px;
    font: 500 20px/1.3 var(--font);
    color: var(--base);
    opacity: 0.5;
}

.gameAccountsTab::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
    width: 24px;
    height: 24px;
    background: url("../img/game-account-tab.svg") no-repeat;
    background-size: cover;
    background-position: center;
}

.gameAccountsTab:hover {
    color: var(--base);
    opacity: 0.75;
}

.gameAccountsTab.active {
    opacity: 1;
}

.gameAccount {
    display: flex;
    flex-direction: column;
    border-radius: 12px;
    overflow: hidden;
    transition: 0.25s;
}

.gameAccount__image {
    flex-shrink: 0;
    display: block;
    position: relative;
    aspect-ratio: 1.95;
}

.gameAccount__img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gameAccount__time {
    position: absolute;
    z-index: 2;
    bottom: 16px;
    left: 16px;
    min-height: 30px;
    background: rgba(39, 98, 105, 0.4);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    border-radius: 4px;
    padding: 8px;
    padding-left: 28px;
    display: inline-flex;
    align-items: center;
    font: 400 12px/1 var(--font);
    color: var(--white);
}

.gameAccount__time::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 8px;
    transform: translate(0, -50%);
    width: 14px;
    height: 14px;
    background: url("../img/time-icon.svg") no-repeat;
    background-size: cover;
    background-position: center;
}

.gameAccount__content {
    height: 100%;
    background: var(--gradient);
    padding: 20px 16px;
    display: flex;
    flex-direction: column;
    color: var(--white);
}

.gameAccount__title {
    display: block;
    margin-bottom: 16px;
}

.gameAccount__title:last-child {
    margin-bottom: 0;
}

.gameAccount__bottom {
    margin: auto;
    margin-bottom: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.gameAccount__info {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.gameAccount__sale {
    background: var(--white);
    border-radius: 8px;
    padding: 8px;
    font: 500 16px/1 var(--font);
    letter-spacing: -0.01em;
    color: var(--base);
}

.gameAccount__price {
    max-width: 100%;
    font: 500 22px/0.9 var(--font);
    letter-spacing: -0.01em;
}

.gameAccount:hover {
    transform: scale(1.04);
}

.gameAccount:hover .gameAccount__btn {
    background: var(--orange);
    color: var(--white);
}

.accountBack {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
}

.accountBack__btn {
    margin-bottom: 24px;
}

.accountBack__btn:last-child {
    margin-bottom: 0;
}

.accountBackGame {
    display: flex;
    align-items: center;
}

.accountBackGame__image {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    margin-right: 16px;
}

.accountBackGame__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.accountBackGame__content {
    max-width: 100%;
}

.accountBackGame__title {
    display: block;
    color: var(--base);
}

.accountBackGame__update {
    min-height: 36px;
    background: linear-gradient(90deg, rgba(9, 46, 50, 0.7), rgba(100, 152, 158, 0.7));
    border-radius: 10px;
    padding: 8px 12px;
    padding-left: 40px;
    display: inline-flex;
    align-items: center;
    font: 400 17px/1 var(--font);
    color: var(--white);
    margin-top: 4px;
    position: relative;
}

.accountBackGame__update::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 12px;
    transform: translate(0, -50%);
    width: 20px;
    height: 20px;
    background: url("../img/time-icon.svg") no-repeat;
    background-size: cover;
    background-position: center;
}

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

.account__left {
    width: calc(50% - 16px);
    display: flex;
    flex-direction: column;
}

.account__gallery {
    margin-bottom: 24px;
}

.account__gallery:last-child {
    margin-bottom: 0;
}

.account__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.account__right {
    width: calc(50% - 16px);
}

.account__head {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 32px;
}

.account__description {
    font: 400 20px/1.3 var(--font);
    margin-bottom: 40px;
}

.account__description p {
    margin-bottom: 24px;
}

.account__description p:last-child {
    margin-bottom: 0;
}

.accountGallery {
    position: relative;
    overflow: hidden;
}

.accountGallery__wrap {
    display: flex;
}

.accountGallery__item {
    flex-shrink: 0;
    border-radius: 10px;
    aspect-ratio: 1.9;
    overflow: hidden;
}

.accountGallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.accountGallery__arrow {
    position: absolute;
    z-index: 2;
    top: 50%;
    transform: translate(0, -50%);
    width: 40px;
    height: 40px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    opacity: 0;
    transition: 0.25s;
}

.accountGallery:hover .accountGallery__arrow {
    opacity: 1;
}

#accountGalleryPrev {
    left: 16px;
}

#accountGalleryNext {
    right: 16px;
}

.accountThumbs {
    overflow: hidden;
    margin-top: 16px;
}

.accountThumbs__wrap {
    display: flex;
}

.accountThumbs__item {
    flex-shrink: 0;
    border-radius: 8px;
    aspect-ratio: 1.9;
    overflow: hidden;
    opacity: 0.5;
    cursor: pointer;
}

.accountThumbs__item:hover {
    opacity: 0.6;
}

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

.accountThumbs__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.accountTag {
    max-width: 100%;
    min-height: 45px;
    background: var(--orange);
    border-radius: 12px;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    font: 500 16px/1.3 var(--font);
    color: var(--white);
}

.accountTag__icon {
    flex-shrink: 0;
    width: 24px;
    margin-right: 8px;
}

.accountTag__text {
    max-width: 100%;
}

.accountSubtitle {
    margin-top: 8px;
    background: linear-gradient(90deg, rgba(9, 46, 50, 0.7), rgba(100, 152, 158, 0.7));
    border-radius: 10px;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    font: 400 17px/1 var(--font);
    color: var(--white);
}

.accountSubtitle__icon {
    flex-shrink: 0;
    width: 24px;
    margin-right: 6px;
}

.accountSubtitle__text {
    max-width: 100%;
}

.accountInfo {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

.accountInfo__sale {
    width: 120px;
    height: 60px;
    background: var(--orange);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font: 500 24px/0.9 var(--font);
    letter-spacing: -0.01em;
    color: var(--white);

}

.accountPrice {
    font: 500 40px/0.9 var(--font);
    letter-spacing: -0.01em;
}

.accountPrice__old {
    font-size: 20px;
    color: #789194;
    margin-bottom: 6px;
    text-decoration: line-through;
}

.accountForm__pay {
    display: grid;
    grid-gap: 8px;
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 32px;
}

.accountForm__inputs {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.accountForm__input {
    width: 50%;
}

.accountForm__input.full {
    width: 100%;
}

.accountFormPayMethod__input {
    width: 0;
    height: 0;
    position: absolute;
}

.accountFormPayMethod__input:checked + .accountFormPayMethod__image {
    opacity: 1;
}

.accountFormPayMethod__image {
    display: block;
    background: #335F64;
    border-radius: 10px;
    aspect-ratio: 2.18;
    overflow: hidden;
    opacity: 0.6;
    transition: 0.25s;
    cursor: pointer;
}

.accountFormPayMethod__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media screen and (max-width: 1199px) {
    body {
        font-size: 16px;
    }

    .btn {
        min-height: 52px;
        padding: 8px 24px;
        font-size: 18px;
    }

    .btn__icon {
        width: 20px;
    }

    .btn_sm {
        min-height: 32px;
        padding: 6px 12px;
        font-size: 16px;
    }

    input {
        height: 52px;
    }

    .header {
        padding-top: 24px;
        padding-bottom: 32px;
    }

    .headerMenu__item {
        font-size: 18px;
        margin-right: 16px;
    }

    .footer {
        padding-top: 64px;
    }

    .footer__inner {
        padding: 60px 0;
    }

    .footer__wrap {
        flex-wrap: wrap;
    }

    .footer__left {
        width: 100%;
        display: flex;
        align-items: center;
        margin-bottom: 40px;
    }

    .footer__logo {
        margin-bottom: 0;
        margin-right: 40px;
    }

    .footer__bottom {
        margin-top: 40px;
    }

    .footerBlock__title {
        margin-bottom: 24px;
    }

    .section {
        padding: 32px 0;
    }

    .section_bg {
        padding: 40px 0;
        margin: 28px 0;
    }

    .gamesList {
        grid-gap: 16px;
        grid-template-columns: repeat(3, 1fr);
    }

    .about__wrap {
        grid-gap: 24px;
        margin-bottom: 24px;
    }

    .aboutItem__icon {
        width: 120px;
        height: 120px;
        margin-right: 12px;
    }

    .aboutItem__icon img {
        width: 64px;
    }

    .aboutItem__title {
        font-size: 20px;
        margin-bottom: 8px;
    }

    .aboutItem__text {
        font-size: 12px;
    }

    .aboutItem__text p {
        margin-bottom: 8px;
    }

    .aboutText {
        padding: 24px;
    }

    .aboutText__title {
        font-size: 24px;
        margin-bottom: 16px;
    }

    .aboutText__text {
        margin-bottom: 16px;
    }

    .reviews__list {
        grid-gap: 16px;
    }

    .reviews__btn {
        margin-top: 24px;
    }

    .reviewsItem {
        padding: 20px 16px;
    }

    .reviewsItem__head {
        margin-bottom: 16px;
    }

    .reviewsItem__date {
        font-size: 14px;
    }

    .reviewsItem__text {
        font-size: 16px;
        margin-bottom: 16px;
    }

    .reviewsItem__image {
        margin-bottom: 16px;
    }

    .reviewsItem__image img {
        border-radius: 4px;
    }

    .reviewsItem__bottomText {
        font-size: 14px;
    }

    .reviewsItemPerson__name {
        font-size: 16px;
    }

    .reviewsItemRating__icon {
        width: 22px;
        margin-right: 8px;
    }

    .reviewsItemRating__text {
        font-size: 16px;
    }

    .currencyBlock {
        grid-gap: 16px;
    }

    .currencyItem {
        padding-bottom: 20px;
    }

    .currencyItem__image {
        aspect-ratio: 1.89;
        margin-bottom: 16px;
    }

    .currencyItem__title {
        padding: 0 16px;
        margin-bottom: 12px;
        font-size: 22px;
    }

    .currencyItem__bottom {
        padding: 0 16px;
    }

    .currencyItem__sale {
        margin-right: 12px;
    }

    .currencyItem__price {
        font-size: 26px;
    }

    .gameAccounts__tabs {
        margin-bottom: 24px;
    }

    .gameAccounts__list {
        grid-gap: 16px;
        grid-template-columns: repeat(3, 1fr);
    }

    .account__left,
    .account__right {
        width: calc(50% - 8px);
    }

    .account__head {
        margin-bottom: 24px;
    }

    .account__description {
        font-size: 16px;
        margin-bottom: 24px;
    }

    .account__description p {
        margin-bottom: 16px;
    }

    .accountTag {
        min-height: 32px;
        border-radius: 8px;
        padding: 4px 8px;
        font-size: 14px;
    }

    .accountTag__icon {
        width: 20px;
        margin-right: 6px;
    }

    .accountSubtitle {
        font-size: 16px;
    }

    .accountSubtitle__icon {
        width: 20px;
        margin-right: 4px;
    }

    .accountInfo {
        gap: 12px;
    }

    .accountInfo__sale {
        width: 97px;
        height: 52px;
        font-size: 20px;
    }

    .accountPrice {
        font-size: 32px;
    }

    .accountPrice__old {
        font-size: 16px;
        margin-bottom: 4px;
    }

    .accountForm__pay {
        margin-bottom: 24px;
    }

    .accountForm__input {
        width: 100%;
    }

    .accountForm__submit {
        width: 100%;
    }
}

@media screen and (max-width: 999px) {
    h1,
    .h1 {
        font-size: 40px;
    }

    .gamesList {
        grid-template-columns: repeat(2, 1fr);
    }

    .digitsBlock {
        padding: 24px;
    }

    .digitsItem {
        margin-right: 40px;
    }

    .digitsItem__icon {
        width: 40px;
        margin-right: 12px;
    }

    .reviews__list {
        grid-template-columns: repeat(2, 1fr);
    }

    .gameBanner {
        padding-left: 80px;
        padding-right: 80px;
    }

    .gameBanner__image {
        width: 140px;
        height: 140px;
    }

    .gameAccounts__list {
        grid-template-columns: repeat(2, 1fr);
    }

    .account {
        display: block;
    }

    .account__left {
        width: 100%;
        margin-bottom: 24px;
    }

    .account__gallery {
        order: 2;
        margin: 0;
    }

    .account__tags {
        order: 1;
        margin-bottom: 24px;
    }

    .account__right {
        width: 100%;
    }
}

@media screen and (max-width: 767px) {
    h1,
    .h1 {
        font-size: 24px;
    }

    h2,
    .h2 {
        font-size: 32px;
    }

    h3,
    .h3 {
        font-size: 24px;
    }

    h4,
    .h4 {
        font-size: 22px;
    }

    h5,
    .h5 {
        font-size: 18px;
    }

    input {
        height: 45px;
    }

    .header {
        padding-top: 16px;
        padding-bottom: 24px;
    }

    .header__logo {
        width: 108px;
    }

    .header__burger {
        display: flex;
        align-items: center;
    }

    .headerMenu {
        display: none;
    }

    .footer {
        padding-top: 40px;
    }

    .footer__inner {
        padding: 40px 0;
    }

    .footer__wrap {
        display: block;
    }

    .footer__left {
        display: block;
    }

    .footer__logo {
        margin-bottom: 24px;
        margin-right: 0;
    }

    .footer__bottom {
        display: block;
        font-size: 12px;
    }

    .footerBlock {
        margin-bottom: 40px;
    }

    .footerBlock:last-child {
        margin-bottom: 0;
    }

    .footerBlock__text {
        font-size: 14px;
    }

    .footerBlock__text p {
        margin-bottom: 12px;
    }

    .section {
        padding: 24px 0;
    }

    .section_bg {
        padding: 24px 0;
        margin: 12px 0;
    }

    .sectionHead {
        gap: 12px;
        margin-bottom: 24px;
    }

    .sectionHead__liveIcon {
        width: 28px;
    }

    .sectionHead__tag {
        min-height: 40px;
        font-size: 14px;
    }

    .gamesList {
        grid-template-columns: 1fr;
    }

    .gamesItem__content {
        padding: 16px;
    }

    .digitsBlock {
        display: block;
    }

    .digitsItem {
        margin-right: 0;
        margin-bottom: 24px;
    }

    .digitsItem:last-child {
        margin-bottom: 0;
    }

    .liveItem__image::before {
        padding-top: 82%;
    }

    .liveItem__title {
        font-size: 14px;
    }

    .liveItem__text {
        font-size: 12px;
    }

    .about__wrap {
        grid-gap: 16px;
        grid-template-columns: 1fr;
        margin-bottom: 48px;
    }

    .aboutItem__icon {
        width: 96px;
        height: 96px;
    }

    .aboutItem__icon img {
        width: 56px;
    }

    .aboutItem__title {
        font-size: 18px;
    }

    .aboutText {
        padding-left: 16px;
        padding-right: 16px;
    }

    .aboutText__btn .btn {
        width: 100%;
    }

    .reviews__list {
        grid-template-columns: 1fr;
    }

    .reviews__btn {
        margin-top: 20px;
    }

    .reviews__btn .btn {
        min-width: 220px;
    }

    .gameBanner {
        min-height: 190px;
        padding: 20px;
    }

    .gameBanner__image {
        width: 80px;
        height: 80px;
        margin-right: 16px;
    }

    .currencyBlock {
        grid-template-columns: 1fr;
    }

    .gameAccounts__tabs {
        column-gap: 24px;
        row-gap: 8px;
    }

    .gameAccounts__list {
        grid-template-columns: 1fr;
    }

    .gameAccountsTab {
        padding-left: 26px;
        font-size: 14px;
    }

    .gameAccountsTab::before {
        width: 18px;
        height: 18px;
    }

    .gameAccount__content {
        padding: 16px;
    }

    .accountBackGame__image {
        width: 72px;
        height: 72px;
        margin-right: 12px;
    }

    .accountBackGame__update {
        font-size: 13px;
    }

    .account__left {
        margin-bottom: 16px;
    }

    .account__tags {
        gap: 4px;
        margin-bottom: 12px;
    }

    .account__head {
        margin-bottom: 16px;
    }

    .account__description {
        font-size: 14px;
        margin-bottom: 16px;
    }

    .account__description p {
        margin-bottom: 12px;
    }

    .accountGallery {
        transform: translate(-16px, 0);
        width: calc(100% + 32px);
        padding: 0 16px;
    }

    .accountGallery__item {
        width: 90%;
        margin-right: 8px;
    }

    .accountGallery__item:last-child {
        margin-right: 0;
    }

    .accountGallery__item:only-child {
        width: 100%;
    }

    .accountGallery__arrow {
        display: none;
    }

    .accountThumbs {
        display: none;
    }

    .accountTag {
        min-height: 30px;
        font-size: 11px;
    }

    .accountTag__icon {
        font-size: 16px;
        margin-right: 4px;
    }

    .accountSubtitle {
        font-size: 14px;
    }

    .accountSubtitle__icon {
        width: 18px;
    }

    .accountInfo {
        align-items: flex-end;
    }

    .accountInfo__sale {
        width: 79px;
        height: 38px;
        font-size: 16px;
    }

    .accountInfo__btn {
        min-height: 38px;
        padding: 4px 20px;
        font-size: 16px;
    }

    .accountPrice__old {
        font-size: 14px;
    }

    .accountForm__pay {
        margin-bottom: 16px;
    }

    .accountForm__inputs {
        display: block;
    }

    .accountForm__input {
        margin-bottom: 8px;
    }

    .accountFormPayMethod__image {
        border-radius: 6px;
    }
}