@charset "UTF-8";:root {
    --font-family: "Inter",sans-serif;
    --content-width: 1180px;
    --container-offset: 15px;
    --container-width: calc(var(--content-width) + (var(--container-offset) * 2));
    --light-color: #ffffff;
    --dark-color: #000
}

.custom-checkbox__field:checked+.custom-checkbox__content::after {
    opacity: 1
}

.custom-checkbox__field:focus+.custom-checkbox__content::before {
    outline: red solid 2px;
    outline-offset: 2px
}

.custom-checkbox__field:disabled+.custom-checkbox__content {
    opacity: .4;
    pointer-events: none
}

@font-face {
    font-family: Inter;
    src: url(../fonts/Inter-Medium.woff2) format("woff2");
    font-weight: 500;
    font-display: swap;
    font-style: normal
}

@font-face {
    font-family: Inter;
    src: url(../fonts/Inter-Bold.woff2) format("woff2");
    font-weight: 700;
    font-display: swap;
    font-style: normal
}

@font-face {
    font-family: Inter;
    src: url(../fonts/Inter-Black.woff2) format("woff2");
    font-weight: 900;
    font-display: swap;
    font-style: normal
}

@font-face {
    font-family: Akrobat;
    src: url(../fonts/Akrobat-Bold.woff2) format("woff2");
    font-weight: 700;
    font-display: swap;
    font-style: normal
}

@font-face {
    font-family: Akrobat;
    src: url(../fonts/Akrobat-ExtraBold.woff2) format("woff2");
    font-weight: 800;
    font-display: swap;
    font-style: normal
}

@font-face {
    font-family: Akrobat;
    src: url(../fonts/Akrobat-Black.woff2) format("woff2");
    font-weight: 900;
    font-display: swap;
    font-style: normal
}

@font-face {
    font-family: BebasNeue;
    src: url(../fonts/BebasNeue-Bold.woff2) format("woff2");
    font-weight: 700;
    font-display: swap;
    font-style: normal
}

html {
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

*,::after,::before {
    -webkit-box-sizing: inherit;
    box-sizing: inherit
}

.page {
    font-family: var(--font-family,sans-serif);
    -webkit-text-size-adjust: 100%
}

.page__body {
    background-size: cover;
    background-repeat: no-repeat;
    margin: 0;
    min-width: 320px;
    min-height: 100%;
    font-size: 16px;
    background-image: url(../img/background.png);
    background-position: center top;
    background-color: var(--dark-color)
}

.page__body-img {
    position: fixed;
    left: 0;
    top: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.page__body--bg-none {
    background-image: none
}

.page__body--404 {
    background-image: url(../img/404-background.png)
}

img {
    height: auto;
    max-width: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

a {
    text-decoration: none
}

.site-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    overflow: hidden;
    min-height: 100vh
}

.is-hidden {
    display: none!important
}

.btn-reset {
    border: none;
    padding: 0;
    background-color: transparent;
    cursor: pointer
}

.list-reset {
    list-style: none;
    margin: 0;
    padding: 0
}

.input-reset {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    border-radius: 0;
    background-color: #fff
}

.input-reset::-webkit-search-cancel-button,.input-reset::-webkit-search-decoration,.input-reset::-webkit-search-results-button,.input-reset::-webkit-search-results-decoration {
    display: none
}

.visually-hidden {
    position: absolute;
    overflow: hidden;
    margin: -1px;
    border: 0;
    padding: 0;
    width: 1px;
    height: 1px;
    clip: rect(0 0 0 0)
}

.container {
    margin: 0 auto;
    padding: 0 var(--container-offset);
    max-width: var(--container-width)
}

.js-focus-visible :focus:not(.focus-visible) {
    outline: 0
}

.centered {
    text-align: center
}

.dis-scroll {
    position: fixed;
    left: 0;
    top: 0;
    overflow: hidden;
    width: 100%;
    height: 100vh;
    -ms-scroll-chaining: none;
    overscroll-behavior: none
}

.page--ios .dis-scroll {
    position: relative
}

.title {
    margin: 0 0 28px;
    font-weight: 900;
    font-size: 64px;
    line-height: 58px;
    letter-spacing: -1px;
    text-align: center;
    text-transform: uppercase;
    color: var(--light-color)
}

.subtitle-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.subtitle {
    position: relative;
    margin: 0 0 55px;
    font-weight: 900;
    font-size: 40px;
    line-height: 35px;
    letter-spacing: -1px;
    text-align: center;
    text-transform: uppercase;
    color: var(--light-color)
}

.subtitle::after {
    content: "";
    position: absolute;
    left: 2px;
    bottom: -12px;
    border-radius: 3px;
    width: 206px;
    height: 3px;
    background-color: #64dc61
}

.subtitle--border-longer::before {
    content: "";
    position: absolute;
    left: 40%;
    top: 50%;
    z-index: -1;
    width: 412px;
    height: 92px;
    background-color: #1a5b38;
    -webkit-filter: blur(75px);
    filter: blur(75px);
    -webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%)
}

.subtitle--border-longer::after {
    width: 284px
}

.subtitle--border-full::after {
    width: 100%
}

.subtitle--border-orange::before {
    background-color: rgba(253,185,83,.5);
    -webkit-filter: blur(100px);
    filter: blur(100px)
}

.subtitle--border-orange::after {
    background-color: #f8b636
}

.subtitle--border-red::before {
    background-color: rgba(138,34,34,.7)
}

.subtitle--border-red::after {
    left: 0;
    width: 100%;
    background-color: #f83636
}

.descr {
    margin: 0;
    font-family: Akrobat,sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 32px;
    letter-spacing: -1px;
    text-align: center;
    color: #dbdbdb
}

.awesome-select {
    position: relative;
    display: block
}

.awesome-select__button {
    position: relative;
    border: 2px solid rgba(80,90,83,.6);
    border-radius: 5px;
    padding: 27px 16px;
    width: 100%;
    -webkit-box-shadow: rgba(50,50,93,.25) 0 2px 5px -1px,rgba(0,0,0,.3) 0 1px 3px -1px;
    box-shadow: rgba(50,50,93,.25) 0 2px 5px -1px,rgba(0,0,0,.3) 0 1px 3px -1px;
    font-family: Akrobat,sans-serif;
    font-weight: 800;
    font-size: 20px;
    line-height: 93.4%;
    letter-spacing: .005em;
    text-align: left;
    text-transform: uppercase;
    color: var(--light-color);
    background: radial-gradient(128.35% 128.35% at 50% 60.63%,rgba(255,255,255,.22) 0,rgba(255,255,255,0) 100%);
    cursor: pointer
}

.awesome-select__button::after {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    content: "";
    position: absolute;
    right: 21px;
    top: 50%;
    width: 22px;
    height: 13px;
    background-image: url(../img/replenishment/replenishment-select-arrow.svg);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: -webkit-transform .3s ease-in-out;
    transition: transform .3s ease-in-out;
    transition: transform .3s ease-in-out,-webkit-transform .3s ease-in-out
}

.awesome-select._opened .awesome-select__button::after {
    -webkit-transform: translateY(-50%) rotate(180deg);
    -ms-transform: translateY(-50%) rotate(180deg);
    transform: translateY(-50%) rotate(180deg)
}

.awesome-select__list {
    position: absolute;
    top: calc(100% - 1px);
    z-index: 10;
    margin: 0;
    padding: .25rem 0;
    width: 100%;
    -webkit-box-shadow: rgba(50,50,93,.25) 0 2px 5px -1px,rgba(0,0,0,.3) 0 1px 3px -1px;
    box-shadow: rgba(50,50,93,.25) 0 2px 5px -1px,rgba(0,0,0,.3) 0 1px 3px -1px;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(10px);
    -ms-transform: translateY(10px);
    transform: translateY(10px);
    -webkit-transition: opacity .3s ease-in-out,visibility .3s ease-in-out,-webkit-transform .3s ease-in-out;
    transition: opacity .3s ease-in-out,visibility .3s ease-in-out,transform .3s ease-in-out,-webkit-transform .3s ease-in-out
}

.awesome-select._opened .awesome-select__list {
    opacity: 1;
    visibility: visible;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none
}

.awesome-select__item {
    overflow-x: hidden;
    border: 2px solid rgba(80,90,83,.6);
    border-radius: 5px;
    padding: 20px;
    font-family: Akrobat,sans-serif;
    font-weight: 800;
    font-size: 18px;
    line-height: 93.4%;
    letter-spacing: .005em;
    white-space: nowrap;
    text-overflow: ellipsis;
    text-transform: uppercase;
    color: var(--light-color);
    background-color: #3c4540;
    cursor: pointer
}

.awesome-select__item._selected,.awesome-select__item:hover {
    background-color: #4f5853
}

.btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 10px;
    font-family: Akrobat,sans-serif;
    font-weight: 800;
    font-size: 32px;
    line-height: 93.4%;
    letter-spacing: .005em;
    text-transform: uppercase;
    color: var(--light-color);
    background: radial-gradient(87.92% 96.98% at 50.83% 55.83%,#faa321 0,#ffc97b 100%),radial-gradient(119.5% 3733.9% at 41.15% 49.83%,rgba(255,186,52,.7) 0,rgba(253,197,0,.2) 100%);
    -webkit-backdrop-filter: blur(91.25px);
    backdrop-filter: blur(91.25px)
}

.btn-hover {
    position: relative;
    -webkit-transition: -webkit-transform .3s ease-in-out;
    transition: transform .3s ease-in-out;
    transition: transform .3s ease-in-out,-webkit-transform .3s ease-in-out
}

.btn-hover::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 10px;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity .3s ease-in-out,visibility .3s ease-in-out;
    transition: opacity .3s ease-in-out,visibility .3s ease-in-out
}

.btn-hover span {
    position: relative
}

.header {
    position: relative;
    z-index: 1;
    padding: 55px 0
}

.hero {
    position: relative;
    padding: 106px 0 75px
}

.hero__text-wrapper {
    margin: 0 auto 170px;
    width: 100%;
    max-width: 760px
}

.hero__links-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 22px
}

.hero__online-block {
    position: relative;
    border-radius: 10px;
    background: radial-gradient(128.35% 128.35% at 50% 60.63%,rgba(255,255,255,.099) 0,rgba(255,255,255,0) 100%);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px)
}

.hero__online-block--mobile {
    display: none
}

.hero__online-block--mobile .hero__online-text {
    background: radial-gradient(61.98% 143.37% at 50.83% 55.83%,#b521fa 0,#d57bff 100%)
}

.hero__online-val {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border: 2px solid rgba(76,69,60,.5);
    border-radius: 10px;
    padding: 30px 50px 15px;
    min-width: 160px;
    font-family: BebasNeue,sans-serif;
    font-weight: 700;
    font-size: 70px;
    line-height: 85%;
    letter-spacing: .005em;
    -webkit-text-fill-color: transparent;
    text-fill-color: transparent;
    text-transform: uppercase;
    background: -webkit-gradient(linear,left top,right top,from(#999),color-stop(75.01%,#fff),to(#fff));
    background: linear-gradient(90deg,#999 0,#fff 75.01%,#fff 100%);
    -webkit-background-clip: text;
    background-clip: text
}

.hero__online-text {
    position: absolute;
    left: 50%;
    top: 0;
    border-radius: 5px;
    padding: 13px 10px;
    width: 100%;
    max-width: 140px;
    font-family: Akrobat,sans-serif;
    font-weight: 700;
    font-size: 18.383px;
    line-height: 93.4%;
    letter-spacing: .005em;
    text-align: center;
    text-transform: uppercase;
    color: var(--light-color);
    background: -webkit-gradient(linear,right top,left top,from(#49cb56),to(#319a42));
    background: linear-gradient(270deg,#49cb56 0,#319a42 100%);
    -webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%)
}

.hero__play-link {
    padding: 20px 50px
}

.hero__play-link::before {
    background-color: #ce9642
}

.hero__swiper {
    position: absolute;
    left: 50%;
    top: -107px;
    z-index: -1;
    width: 100%;
    height: 1201px;
    max-width: 1902px;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    pointer-events: none
}

.hero__social-mobile {
    display: none
}

.hero__social-title {
    margin: 0 0 20px;
    font-family: Akrobat,sans-serif;
    font-weight: 900;
    font-size: 28px;
    line-height: 25px;
    letter-spacing: 1px;
    text-align: center;
    -webkit-text-fill-color: transparent;
    text-fill-color: transparent;
    text-transform: uppercase;
    background: -webkit-gradient(linear,left top,right top,from(#999),color-stop(50.15%,#fff));
    background: linear-gradient(90deg,#999 0,#fff 50.15%);
    -webkit-background-clip: text;
    background-clip: text;
    gap: 18px
}

.hero .swiper-pagination {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    top: 416px;
    bottom: initial;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 35px
}

.hero .swiper-pagination-bullet {
    width: 17px;
    height: 17px;
    background-color: rgba(255,255,255,.65);
    -webkit-transition: background-color .3s ease-in-out,-webkit-transform .3s ease-in-out;
    transition: background-color .3s ease-in-out,transform .3s ease-in-out,-webkit-transform .3s ease-in-out
}

.hero .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #ffe925;
    -webkit-transform: scale(1.35);
    -ms-transform: scale(1.35);
    transform: scale(1.35)
}

.hero .swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,.hero .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0
}

.hero .swiper-slide {
    position: relative
}

.hero .swiper-slide img {
    position: absolute;
    left: 50%;
    top: 0;
    width: auto;
    height: 890px;
    max-width: initial;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%)
}

.replenishment {
    padding: 20px 0
}

.replenishment__subtitle--error::after,.replenishment__subtitle--error::before {
    background-color: #bd3433
}

.replenishment__subtitle--mobile {
    display: none
}

.replenishment__subtitle--mobile span {
    color: #4b9c1d
}

.replenishment__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative
}

.replenishment__form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    border-radius: 10px 0 0 10px;
    padding: 34px;
    width: 100%;
    max-width: 505px;
    background-color: rgba(122,204,155,.11);
    -webkit-backdrop-filter: blur(9.1px);
    backdrop-filter: blur(9.1px);
    gap: 28px
}

.replenishment__form::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.4);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity .3s ease-in-out,visibility .3s ease-in-out;
    transition: opacity .3s ease-in-out,visibility .3s ease-in-out
}

.replenishment__form--loader::after {
    opacity: 1;
    visibility: visible
}

.replenishment__form-inputs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px
}

.replenishment__label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    border: 2px solid rgba(80,90,83,.6);
    border-radius: 5px;
    padding: 16px;
    background: radial-gradient(128.35% 128.35% at 50% 60.63%,rgba(255,255,255,.22) 0,rgba(255,255,255,0) 100%);
    gap: 5px
}

.replenishment__label:focus-within {
    border: 2px solid rgba(0,0,0,.6)
}

.replenishment__label--sum::after {
    content: "₽";
    position: absolute;
    right: 16px;
    top: 50%;
    font-family: Akrobat,sans-serif;
    font-weight: 800;
    font-size: 20px;
    line-height: 93.4%;
    letter-spacing: .005em;
    text-transform: uppercase;
    color: #cbcbcb;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: opacity .3s ease-in-out,visibility .3s ease-in-out;
    transition: opacity .3s ease-in-out,visibility .3s ease-in-out
}

.replenishment__label--sum-active::after {
    opacity: 0;
    visibility: hidden
}

.replenishment__label--sum-active .replenishment__label-loader {
    opacity: 1;
    visibility: visible
}

.replenishment__label--servers {
    padding: 30px 16px
}

.replenishment__label-servers {
    font-family: Akrobat,sans-serif;
    font-weight: 800;
    font-size: 20px;
    line-height: 93.4%;
    letter-spacing: .005em;
    text-transform: uppercase;
    color: var(--light-color)
}

.replenishment__label-text {
    font-family: Akrobat,sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 93.4%;
    letter-spacing: .005em;
    text-transform: uppercase;
    color: var(--light-color)
}

.replenishment__label-input {
    border: none;
    padding: 0;
    background-color: transparent
}

.replenishment__label-input:focus {
    outline: 0
}

.replenishment__label-input--number::-webkit-inner-spin-button,.replenishment__label-input--number::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
    padding-right: 35px
}

.replenishment__form-btn {
    position: relative;
    z-index: 1;
    border-radius: 5px;
    padding: 33px 15px;
    font-family: Akrobat,sans-serif;
    font-weight: 800;
    font-size: 35px;
    line-height: 93.4%;
    letter-spacing: .005em;
    text-transform: uppercase;
    color: var(--light-color);
    background: -webkit-gradient(linear,left top,right top,from(#23840a),to(#83be37));
    background: linear-gradient(90deg,#23840a 0,#83be37 100%)
}

.replenishment__form-btn::before {
    background-color: #4a7e20
}

.replenishment__form-btn--loader .replenishment__form-btn-loader {
    opacity: 1;
    visibility: visible
}

.replenishment__form-btn-loader {
    position: absolute;
    left: 30px;
    top: 50%;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: opacity .3s ease-in-out,visibility .3s ease-in-out;
    transition: opacity .3s ease-in-out,visibility .3s ease-in-out
}

.replenishment__form-text {
    font-weight: 500;
    font-size: 18px;
    line-height: 16px;
    letter-spacing: -1px;
    text-align: center;
    color: var(--light-color)
}

.replenishment__select-color {
    color: #ffc480
}

.replenishment__safe-wrapper {
    position: relative;
    z-index: -1
}

.replenishment__safe {
    height: 100%
}

.replenishment__people {
    position: absolute;
    left: -182px;
    bottom: -75px;
    width: 1080px;
    max-width: initial;
    pointer-events: none
}

.replenishment__money {
    position: absolute;
    right: 785px;
    bottom: -25px
}

.replenishment__bonus {
    position: absolute;
    right: -12px;
    top: 50%;
    z-index: 1;
    border: 2px solid rgba(80,90,83,.6);
    border-radius: 5px;
    padding: 10px;
    background-color: #6a7655;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translate(100%,-45%);
    -ms-transform: translate(100%,-45%);
    transform: translate(100%,-45%);
    -webkit-transition: opacity .3s ease-in-out,visibility .3s ease-in-out,-webkit-transform .3s ease-in-out;
    transition: opacity .3s ease-in-out,visibility .3s ease-in-out,transform .3s ease-in-out,-webkit-transform .3s ease-in-out;
    -webkit-backdrop-filter: blur(75px);
    backdrop-filter: blur(75px)
}

.replenishment__bonus--active {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate(100%,-50%);
    -ms-transform: translate(100%,-50%);
    transform: translate(100%,-50%)
}

.replenishment__bonus-text {
    margin-bottom: 10px;
    font-family: Akrobat,sans-serif;
    font-weight: 700;
    font-size: 12px;
    line-height: 93.4%;
    letter-spacing: .005em;
    text-transform: uppercase;
    color: var(--light-color)
}

.replenishment__bonus-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 7px
}

.replenishment__bonus-currency {
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    border-radius: 3.875px;
    padding: 7px 35px 7px 15px;
    font-family: Akrobat,sans-serif;
    font-weight: 800;
    font-size: 13.95px;
    letter-spacing: .005em;
    text-transform: uppercase;
    color: #fff171;
    background: radial-gradient(128.35% 128.35% at 50% 60.63%,#d2af2f 0,#3e3505 100%),radial-gradient(128.35% 128.35% at 50% 60.63%,rgba(255,255,255,.22) 0,rgba(255,255,255,0) 100%)
}

.replenishment__bonus-currency::after {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    content: "";
    position: absolute;
    right: 9px;
    top: 50%;
    width: 19px;
    height: 19px;
    background-image: url(../img/replenishment/replenishment-bonus-icon.svg);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%)
}

.replenishment__bonus-val {
    border-radius: 4.16563px;
    padding: 7px 5px;
    font-family: Akrobat,sans-serif;
    font-weight: 800;
    font-size: 13.95px;
    letter-spacing: .005em;
    text-transform: uppercase;
    color: var(--light-color);
    background: radial-gradient(128.35% 128.35% at 50% 60.63%,rgba(255,255,255,.22) 0,rgba(255,255,255,0) 100%)
}

.replenishment__label-loader {
    position: absolute;
    right: 16px;
    top: 50%;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: opacity .3s ease-in-out,visibility .3s ease-in-out;
    transition: opacity .3s ease-in-out,visibility .3s ease-in-out
}

.replenishment__help {
    position: absolute;
    right: 20px;
    top: 50%;
    z-index: 1;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%)
}

.replenishment__help-btn {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 11px;
    height: 27px;
    background-image: url(../img/replenishment/replenishment-help.svg)
}

.replenishment__help-text {
    position: absolute;
    right: -28px;
    bottom: -25px;
    border-radius: 5px;
    padding: 15px 25px;
    width: 230px;
    -webkit-box-shadow: 0 -9px 45px rgba(0,0,0,.05);
    box-shadow: 0 -9px 45px rgba(0,0,0,.05);
    font-family: Montserrat,sans-serif;
    font-weight: 500;
    font-size: 13px;
    letter-spacing: -1px;
    text-align: center;
    color: #747474;
    background-color: #fff;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%);
    -webkit-transition: opacity .3s ease-in-out,visibility .3s ease-in-out;
    transition: opacity .3s ease-in-out,visibility .3s ease-in-out
}

.replenishment__help-text::before {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    content: "";
    position: absolute;
    right: 30px;
    top: 3px;
    width: 25px;
    height: 22px;
    background-image: url(../img/replenishment/replenishment-triangle.svg);
    -webkit-transform: translateY(-99%);
    -ms-transform: translateY(-99%);
    transform: translateY(-99%)
}

.replenishment__help-text--active {
    opacity: 1;
    visibility: visible
}

.replenishment__label-input::-webkit-input-placeholder {
    text-transform: uppercase;
    font-family: Akrobat,sans-serif;
    font-weight: 800;
    font-size: 24px;
    line-height: 93.4%;
    letter-spacing: .005em;
    color: #cbcbcb
}

.replenishment__label-input::-moz-placeholder {
    text-transform: uppercase;
    font-family: Akrobat,sans-serif;
    font-weight: 800;
    font-size: 24px;
    line-height: 93.4%;
    letter-spacing: .005em;
    color: #cbcbcb
}

.replenishment__label-input:-ms-input-placeholder {
    text-transform: uppercase;
    font-family: Akrobat,sans-serif;
    font-weight: 800;
    font-size: 24px;
    line-height: 93.4%;
    letter-spacing: .005em;
    color: #cbcbcb
}

.replenishment__label-input::-ms-input-placeholder {
    text-transform: uppercase;
    font-family: Akrobat,sans-serif;
    font-weight: 800;
    font-size: 24px;
    line-height: 93.4%;
    letter-spacing: .005em;
    color: #cbcbcb
}

.replenishment__label-input::placeholder {
    text-transform: uppercase
}

.replenishment__label-input,.replenishment__label-input::placeholder {
    font-family: Akrobat,sans-serif;
    font-weight: 800;
    font-size: 24px;
    line-height: 93.4%;
    letter-spacing: .005em;
    color: #cbcbcb
}

.replenishment-balance {
    padding: 20px 0
}

.launcher {
    padding: 145px 0 155px
}

.launcher__content {
    position: relative
}

.launcher__text-wrapper {
    width: 100%;
    max-width: 580px
}

.launcher__label-inf {
    position: relative;
    z-index: -1;
    display: inline-block;
    margin-bottom: 20px;
    border: 2px solid #1d7dc2;
    border-radius: 10px;
    padding: 19px 18px;
    -webkit-box-shadow: 0 0 33.4px rgba(12,108,197,.3);
    box-shadow: 0 0 33.4px rgba(12,108,197,.3);
    font-family: Akrobat,sans-serif;
    font-weight: 800;
    font-size: 20px;
    line-height: 93.4%;
    letter-spacing: .005em;
    text-transform: uppercase;
    color: var(--light-color);
    background: radial-gradient(128.35% 128.35% at 50% 60.63%,rgba(33,132,188,.85) 0,#050e3e 100%);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px)
}

.launcher__label-inf::before {
    content: "";
    position: absolute;
    left: 40%;
    top: 50%;
    width: 215px;
    height: 215px;
    background: #53b6fd;
    -webkit-filter: blur(150px);
    filter: blur(150px);
    -webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    pointer-events: none
}

.launcher__title {
    font-family: Akrobat,sans-serif;
    font-weight: 900;
    line-height: 58px;
    text-align: left;
    -webkit-text-fill-color: transparent;
    text-fill-color: transparent;
    background: -webkit-gradient(linear,left top,right top,from(#fff),to(#999));
    background: linear-gradient(90deg,#fff 0,#999 100%);
    -webkit-background-clip: text;
    background-clip: text
}

.launcher__descr {
    margin-bottom: 40px;
    font-size: 28px;
    text-align: left
}

.launcher__img {
    position: absolute;
    right: -55px;
    top: -112px;
    z-index: -1;
    width: 1000px;
    max-width: initial;
    pointer-events: none
}

.launcher__img--mobile {
    display: none
}

.launcher__btns-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 28px
}

.launcher__btn-download {
    padding: 40px 20px;
    min-width: 280px
}

.launcher__btn-download::before {
    background-color: #ce9642
}

.launcher__btn-download--mobile {
    display: none
}

.launcher__btn-apk {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    border: 2px solid #4d4136;
    border-radius: 10px;
    padding: 26px 30px;
    background: radial-gradient(128.35% 128.35% at 50% 60.63%,rgba(255,255,255,.22) 0,rgba(255,255,255,0) 100%);
    -webkit-transition: -webkit-transform .3s ease-in-out;
    transition: transform .3s ease-in-out;
    transition: transform .3s ease-in-out,-webkit-transform .3s ease-in-out;
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    gap: 7px
}

.launcher__btn-apk span {
    font-weight: 800;
    font-style: italic;
    font-size: 16px;
    letter-spacing: -1px;
    text-transform: uppercase;
    color: var(--light-color);
    -webkit-transform: translateX(-3px);
    -ms-transform: translateX(-3px);
    transform: translateX(-3px)
}

.replenishment-waiting {
    padding: 90px 0
}

.replenishment-waiting__content {
    position: relative
}

.replenishment-waiting__text-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-left: 100px;
    width: 100%;
    max-width: 510px
}

.replenishment-waiting__subtitle {
    margin-bottom: 70px
}

.replenishment-waiting__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 28px;
    border: 2px solid rgba(60,71,66,.5);
    border-radius: 10px;
    padding: 16px 15px;
    width: 100%;
    max-width: 452px;
    background: radial-gradient(128.35% 128.35% at 50% 60.63%,rgba(255,255,255,.099) 0,rgba(255,255,255,0) 100%);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    gap: 16px
}

.replenishment-waiting__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    border-radius: 10px;
    padding: 15px 0 10px;
    font-family: Akrobat,sans-serif;
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    gap: 10px
}

.replenishment-waiting__item--orange {
    background: radial-gradient(87.92% 96.98% at 50.83% 55.83%,#faa321 0,#ffc97b 100%)
}

.replenishment-waiting__item--orange .replenishment-waiting__item-label {
    color: #976416
}

.replenishment-waiting__item--green {
    background: -webkit-gradient(linear,left top,right top,from(#23840a),to(#83be37));
    background: linear-gradient(90deg,#23840a 0,#83be37 100%)
}

.replenishment-waiting__item--green .replenishment-waiting__item-label {
    color: var(--light-color)
}

.replenishment-waiting__item-label {
    padding: 0 15px;
    font-weight: 800;
    font-size: 24px;
    line-height: 93.4%;
    letter-spacing: .005em;
    text-transform: uppercase
}

.replenishment-waiting__item-text {
    padding: 11px 15px;
    width: 100%;
    -webkit-box-shadow: 0 4px 45px rgba(0,0,0,.05);
    box-shadow: 0 4px 45px rgba(0,0,0,.05);
    font-weight: 800;
    font-size: 18px;
    line-height: 93.4%;
    letter-spacing: .005em;
    text-align: center;
    text-transform: uppercase;
    color: var(--light-color);
    background: rgba(0,0,0,.25);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px)
}

.replenishment-waiting__text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    max-width: 452px;
    font-family: Akrobat,sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 93.4%;
    letter-spacing: .005em;
    text-transform: uppercase;
    color: var(--light-color);
    gap: 8px
}

.replenishment-waiting__loader-wrapper {
    border: 1px solid #f8b636;
    border-radius: 10px;
    padding: 6px;
    background: radial-gradient(128.35% 128.35% at 50% 60.63%,rgba(230,153,36,.85) 0,#3e2b05 100%)
}

.replenishment-waiting__img {
    position: absolute;
    right: -142px;
    top: -258px;
    z-index: -1;
    width: 1000px;
    max-width: initial;
    pointer-events: none
}

.error-404 {
    padding: 90px 0
}

.error-404__subtitle {
    margin-bottom: 78px
}

.error-404__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.error-404__link-back {
    padding: 23px 15px;
    min-width: 350px;
    font-size: 24px;
    -webkit-transform: translateY(-45px);
    -ms-transform: translateY(-45px);
    transform: translateY(-45px);
    -webkit-transition: -webkit-transform .3s ease-in-out;
    transition: transform .3s ease-in-out;
    transition: transform .3s ease-in-out,-webkit-transform .3s ease-in-out
}

.error-404__link-back::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 10px;
    width: 100%;
    height: 100%;
    background-color: #ce9642;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity .3s ease-in-out,visibility .3s ease-in-out;
    transition: opacity .3s ease-in-out,visibility .3s ease-in-out
}

.error-404__link-back span {
    position: relative
}

.promo {
    padding: 20px 0 30px
}

.promo__content {
    position: relative
}

.promo__img {
    position: absolute;
    right: -370px;
    top: -180px;
    z-index: -1;
    width: 1403px;
    max-width: initial;
    pointer-events: none
}

.promo__text-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    max-width: 800px;
    gap: 50px
}

.promo__label-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    z-index: 0;
    font-family: Akrobat,sans-serif;
    gap: 25px
}

.promo__label {
    position: relative;
    border-radius: 10px;
    padding: 18px;
    -webkit-box-shadow: 0 0 33.4px rgba(255,197,0,.3);
    box-shadow: 0 0 33.4px rgba(255,197,0,.3);
    font-weight: 800;
    font-size: 24px;
    line-height: 93.4%;
    letter-spacing: .005em;
    text-transform: uppercase;
    color: var(--light-color);
    background: radial-gradient(128.35% 128.35% at 50% 60.63%,rgba(255,215,73,.85) 0,#3e3505 100%);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px)
}

.promo__label::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: -1;
    width: 247px;
    height: 247px;
    background-color: rgba(251,167,0,.7);
    -webkit-filter: blur(175px);
    filter: blur(175px);
    -webkit-transform: translate(-50%,-60%);
    -ms-transform: translate(-50%,-60%);
    transform: translate(-50%,-60%);
    pointer-events: none
}

.promo__label-text {
    font-weight: 800;
    font-size: 32px;
    line-height: 93.4%;
    letter-spacing: .005em;
    text-transform: uppercase;
    color: #fdbc5d
}

.promo__title {
    position: relative;
    margin: 0;
    font-weight: 900;
    font-size: 54px;
    line-height: 52px;
    letter-spacing: -1px;
    text-transform: uppercase;
    color: var(--light-color)
}

.promo__title span {
    color: #efba2b
}

.promo__code-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 65px
}

.promo__code {
    position: relative;
    border: 2px solid rgba(60,71,66,.5);
    border-radius: 10px;
    padding: 45px 40px;
    width: 100%;
    max-width: 477px;
    text-align: left;
    background: radial-gradient(128.35% 128.35% at 50% 60.63%,rgba(255,255,255,.099) 0,rgba(255,255,255,0) 100%);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px)
}

.promo__code-text {
    border: none;
    font-weight: 900;
    font-size: 24px;
    letter-spacing: -1px;
    text-transform: uppercase;
    color: var(--light-color);
    background: 0 0;
    pointer-events: none
}

.promo__code-copied-text {
    position: absolute;
    left: 0;
    bottom: -10px;
    font-weight: 900;
    font-size: 18px;
    letter-spacing: -1px;
    text-transform: uppercase;
    color: #efba2b;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%);
    -webkit-transition: opacity .3s ease-in-out,visibility .3s ease-in-out;
    transition: opacity .3s ease-in-out,visibility .3s ease-in-out
}

.promo__code-copied-text--active {
    opacity: 1;
    visibility: visible
}

.promo__code-copy {
    position: absolute;
    right: 0;
    top: 50%;
    border-radius: 10px;
    width: 64px;
    height: 64px;
    background: radial-gradient(128.35% 128.35% at 50% 60.63%,rgba(255,255,255,.22) 0,rgba(255,255,255,0) 100%),radial-gradient(87.92% 96.98% at 50.83% 55.83%,#faa321 0,#ffc97b 100%);
    -webkit-transform: translate(50%,-50%);
    -ms-transform: translate(50%,-50%);
    transform: translate(50%,-50%)
}

.promo__code-copy::after {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 42px;
    height: 42px;
    background-image: url(../img/promo/promo-copy.svg);
    -webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%)
}

.promo__btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 15px 10px 15px 35px;
    gap: 4px
}

.promo__awards-title {
    margin: 0 0 148px;
    font-weight: 900;
    font-size: 48px;
    line-height: 52px;
    letter-spacing: -1px;
    -webkit-text-fill-color: transparent;
    text-fill-color: transparent;
    text-transform: uppercase;
    background: -webkit-gradient(linear,left top,right top,from(#fff),to(#999));
    background: linear-gradient(90deg,#fff 0,#999 100%);
    -webkit-background-clip: text;
    background-clip: text
}

.promo__list {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3,1fr);
    gap: 35px
}

.promo__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.promo__item--green .promo__item-text-wrapper {
    background: radial-gradient(128.35% 128.35% at 50% 60.63%,rgba(131,255,73,.85) 0,rgba(113,255,46,.05) 100%)
}

.promo__item--yellow .promo__item-text-wrapper {
    background: radial-gradient(128.35% 128.35% at 50% 60.63%,#ffcc49 0,rgba(255,207,37,.05) 100%)
}

.promo__item--red .promo__item-text-wrapper {
    background: radial-gradient(128.35% 128.35% at 50% 60.63%,rgba(255,73,73,.85) 0,rgba(255,46,46,.05) 100%)
}

.promo__item-img {
    position: absolute;
    left: 50%;
    top: -143px;
    width: 235px;
    max-width: initial;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%)
}

.promo__item-text-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 8.55263px;
    padding: 0 15px;
    min-height: 89px
}

.promo__item-text {
    font-family: Akrobat,sans-serif;
    font-weight: 800;
    font-size: 28px;
    line-height: 93.4%;
    letter-spacing: .005em;
    text-align: center;
    text-transform: uppercase;
    color: var(--light-color)
}

.footer {
    margin-top: auto;
    padding: 75px 0 80px
}

.footer__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.footer__link {
    display: block;
    font-weight: 700;
    font-size: 10px;
    letter-spacing: -1px;
    text-transform: uppercase;
    color: var(--light-color);
    -webkit-transition: color .3s ease-in-out,-webkit-transform .3s ease-in-out;
    transition: color .3s ease-in-out,transform .3s ease-in-out,-webkit-transform .3s ease-in-out
}

.footer__link img {
    display: block
}

.footer__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    max-width: 365px;
    gap: 20px
}

.footer__list--mobile {
    display: none
}

.nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 15px
}

.nav__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 58px
}

.nav__item {
    position: relative
}

.nav__item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -29px;
    top: 50%;
    width: 1px;
    height: 62px;
    background-color: rgba(255,255,255,.05);
    -webkit-transform: translate(100%,-50%);
    -ms-transform: translate(100%,-50%);
    transform: translate(100%,-50%)
}

.nav__link {
    display: block;
    padding: 13px 10px;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: -1px;
    text-transform: uppercase;
    color: var(--light-color);
    -webkit-transition: color .3s ease-in-out,-webkit-transform .3s ease-in-out;
    transition: color .3s ease-in-out,transform .3s ease-in-out,-webkit-transform .3s ease-in-out
}

.nav__link--active {
    border: 1px solid #ad9d5e;
    border-radius: 10px;
    background: radial-gradient(128.35% 128.35% at 50% 60.63%,rgba(255,215,73,.85) 0,#3e3505 100%);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px)
}

.social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    align-items: center;
    gap: 15px
}

.social__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border: 1px solid #575959;
    border-radius: 100%;
    width: 52px;
    height: 52px;
    color: #bfc1c1;
    background: linear-gradient(168.92deg,rgba(255,255,255,.39) -54.52%,rgba(217,217,217,0) 106.63%);
    -webkit-transition: color .3s ease-in-out,-webkit-transform .3s ease-in-out;
    transition: color .3s ease-in-out,transform .3s ease-in-out,-webkit-transform .3s ease-in-out
}

.payment-methods {
    margin: 0 auto;
    width: 100%;
    max-width: 660px
}

.payment-methods__content {
    margin-bottom: 30px;
    border: 2px solid rgba(60,71,66,.5);
    border-radius: 10px;
    padding: 26px 35px 39px;
    background: radial-gradient(128.35% 128.35% at 50% 60.63%,rgba(255,255,255,.099) 0,rgba(255,255,255,0) 100%);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px)
}

.payment-methods__titles-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 25px;
    font-family: Akrobat,sans-serif;
    gap: 15px
}

.payment-methods__title {
    margin: 0;
    font-weight: 700;
    font-size: 24px;
    line-height: normal;
    letter-spacing: -1px;
    color: var(--light-color)
}

.payment-methods__text {
    font-weight: 700;
    font-size: 24px;
    line-height: normal;
    letter-spacing: -1px;
    color: var(--light-color)
}

.payment-methods__list {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[5];
    grid-template-columns: repeat(5,1fr);
    gap: 15px
}

.payment-methods__label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border: 2px solid rgba(76,77,77,.6);
    border-radius: 5px;
    padding: 10px 12px;
    height: 100%;
    background: radial-gradient(128.35% 128.35% at 50% 60.63%,rgba(255,255,255,.22) 0,rgba(255,255,255,0) 100%);
    -webkit-transition: border .3s ease-in-out,-webkit-transform .3s ease-in-out;
    transition: transform .3s ease-in-out,border .3s ease-in-out,-webkit-transform .3s ease-in-out;
    cursor: pointer;
    gap: 3px
}

.payment-methods__label::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 5px;
    width: 100%;
    height: 100%;
    background-color: rgba(109,177,45,.5);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity .3s ease-in-out,visibility .3s ease-in-out;
    transition: opacity .3s ease-in-out,visibility .3s ease-in-out
}

.payment-methods__label img {
    position: relative
}

.payment-methods__label--disabled {
    opacity: .5;
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.payment-methods__label-text {
    font-family: Akrobat,sans-serif;
    font-weight: 800;
    font-size: 10px;
    line-height: 93.4%;
    letter-spacing: .005em;
    text-align: center;
    text-transform: uppercase;
    color: rgba(255,255,255,.8)
}

.payment-methods__input-radio {
    display: none
}

.payment-methods__input-radio:checked+label {
    border: 2px solid #3d9423;
    background: radial-gradient(128.35% 128.35% at 50% 60.63%,rgba(64,188,33,.85) 0,#183e05 100%)
}

.payment-methods__sum {
    text-transform: uppercase
}

.payment-methods__color {
    color: #71b32e
}

.payment-methods__inf {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 30px;
    gap: 23px
}

.payment-methods__inf-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    border: 2px solid rgba(60,71,66,.5);
    border-radius: 10px;
    padding: 22px 23px;
    background: radial-gradient(128.35% 128.35% at 50% 60.63%,rgba(255,255,255,.099) 0,rgba(255,255,255,0) 100%);
    -webkit-filter: drop-shadow(0 4px 45px rgba(0, 0, 0, .05));
    filter: drop-shadow(0 4px 45px rgba(0, 0, 0, .05));
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    gap: 7px
}

.payment-methods__inf-item:first-child {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1
}

.payment-methods__inf-text {
    font-family: Akrobat,sans-serif;
    font-weight: 800;
    font-size: 18px;
    line-height: 93.4%;
    letter-spacing: .005em;
    text-transform: uppercase;
    color: var(--light-color)
}

.payment-methods__val {
    font-family: Akrobat,sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 93.4%;
    letter-spacing: .005em;
    text-transform: uppercase;
    color: #ccc
}

.payment-methods__btn {
    margin-bottom: 23px;
    border-radius: 10px;
    padding: 28px 15px;
    width: 100%;
    font-family: Akrobat,sans-serif;
    font-weight: 800;
    font-size: 35px;
    line-height: 93.4%;
    letter-spacing: .005em;
    text-transform: uppercase;
    color: var(--light-color);
    background: -webkit-gradient(linear,left top,right top,from(#23840a),to(#83be37));
    background: linear-gradient(90deg,#23840a 0,#83be37 100%)
}

.payment-methods__btn::before {
    background-color: #4a7e20
}

.payment-methods__back-home {
    display: block;
    font-family: Akrobat,sans-serif;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: -1px;
    text-align: center;
    color: #bebebe;
    -webkit-transition: -webkit-transform .3s ease-in-out;
    transition: transform .3s ease-in-out;
    transition: transform .3s ease-in-out,-webkit-transform .3s ease-in-out
}

.payment-methods__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 16px
}

.payment-methods__currency-wrapper {
    font-family: Akrobat,sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 18px;
    letter-spacing: -1px;
    color: #a8a8a8
}

.payment-methods__currency {
    position: relative;
    border-radius: 5px;
    padding: 10px 40px 10px 9px;
    font-family: Akrobat,sans-serif;
    font-weight: 800;
    font-size: 18px;
    letter-spacing: .005em;
    text-transform: uppercase;
    color: var(--light-color);
    background: radial-gradient(128.35% 128.35% at 50% 60.63%,rgba(255,255,255,.22) 0,rgba(255,255,255,0) 100%)
}

.payment-methods__currency::after {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    content: "";
    position: absolute;
    right: 9px;
    top: 50%;
    width: 24px;
    height: 24px;
    background-image: url(../img/replenishment/replenishment-bonus-icon.svg);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%)
}

.status {
    padding: 20px 0
}

.status__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin: 0 auto;
    border: 2px solid rgba(60,71,66,.5);
    border-radius: 10px;
    padding: 27px 33px;
    width: 100%;
    max-width: 422px;
    background: radial-gradient(128.35% 128.35% at 50% 60.63%,rgba(255,255,255,.099) 0,rgba(255,255,255,0) 100%);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px)
}

.status__img {
    margin-bottom: 27px
}

.status__text {
    margin-bottom: 10px;
    font-family: Akrobat;
    font-weight: 700;
    font-size: 20px;
    line-height: 93.4%;
    letter-spacing: .005em;
    text-align: center;
    color: var(--light-color)
}

.status__subtext {
    margin-bottom: 34px;
    font-family: Akrobat;
    font-weight: 600;
    font-size: 18px;
    line-height: 93.4%;
    letter-spacing: .005em;
    text-align: center;
    color: #d7d7d7
}

.status__link-back {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border: 2px solid #3f9621;
    border-radius: 10px;
    padding: 20px 15px;
    width: 100%;
    font-family: Akrobat,sans-serif;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: -1px;
    color: var(--light-color);
    background: -webkit-gradient(linear,left top,right top,from(#23840a),to(#83be37));
    background: linear-gradient(90deg,#23840a 0,#83be37 100%)
}

.status__link-back::before {
    background-color: #4a7e20
}

.status__link-back--error {
    border: 2px solid #942121;
    background: -webkit-gradient(linear,left top,right top,from(#840a0a),to(#be3737));
    background: linear-gradient(90deg,#840a0a 0,#be3737 100%)
}

.status__link-back--error::before {
    background-color: #840a0a
}

.burger {
    --burger-width: 35px;
    --burger-height: 30px;
    --burger-line-height: 3px;
    position: relative;
    display: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    border: none;
    padding: 0;
    width: var(--burger-width);
    height: var(--burger-height);
    color: var(--light-color);
    background-color: transparent;
    -webkit-transition: gap .3s ease-in-out,-webkit-box-pack .3s ease-in-out;
    transition: justify-content .3s ease-in-out,gap .3s ease-in-out,-webkit-box-pack .3s ease-in-out,-ms-flex-pack .3s ease-in-out;
    cursor: pointer;
    gap: 6px
}

.burger__line {
    border-radius: 3px;
    width: 100%;
    height: var(--burger-line-height);
    background-color: currentcolor;
    -webkit-transition: -webkit-transform .3s ease-in-out;
    transition: transform .3s ease-in-out;
    transition: transform .3s ease-in-out,-webkit-transform .3s ease-in-out
}

.burger__line:nth-child(2),.burger__line:nth-child(4) {
    width: 60%
}

.burger--active {
    gap: 0
}

.burger--active .burger__line:nth-child(2),.burger--active .burger__line:nth-child(4) {
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0)
}

.burger--active .burger__line:nth-child(1) {
    -webkit-transform: translateY(11px) rotate(45deg);
    -ms-transform: translateY(11px) rotate(45deg);
    transform: translateY(11px) rotate(45deg)
}

.burger--active .burger__line:nth-child(3) {
    -webkit-transform: translateY(5px) rotate(-45deg);
    -ms-transform: translateY(5px) rotate(-45deg);
    transform: translateY(5px) rotate(-45deg)
}

.graph-modal {
    background-color: rgba(0,0,0,.8)
}

.graph-modal__container {
    width: 100%;
    max-width: 230px;
    background-color: transparent
}

.graph-modal__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.graph-modal__img {
    margin-bottom: 24px
}

.graph-modal__text {
    margin-bottom: 18px;
    font-family: Inter,sans-serif;
    font-weight: 900;
    font-size: 40px;
    line-height: 35px;
    letter-spacing: -1px;
    text-transform: uppercase;
    color: var(--light-color)
}

.graph-modal__descr {
    margin-bottom: 24px;
    font-family: Akrobat,sans-serif;
    font-weight: 800;
    font-size: 20px;
    line-height: 22px;
    letter-spacing: -1px;
    color: #d0d0d0
}

.graph-modal__btn {
    border-radius: 10px;
    padding: 23px 15px;
    width: 100%;
    font-family: Akrobat,sans-serif;
    font-weight: 800;
    font-size: 20px;
    letter-spacing: .005em;
    color: var(--light-color);
    background: radial-gradient(128.35% 128.35% at 50% 60.63%,rgba(255,73,73,.97) 0,rgba(255,46,46,.05) 100%)
}

.graph-modal__btn--yellow {
    background: radial-gradient(128.35% 128.35% at 50% 60.63%,rgba(255,215,73,.85) 0,#3e3505 100%),radial-gradient(128.35% 128.35% at 50% 60.63%,rgba(255,73,73,.97) 0,rgba(255,46,46,.05) 100%)
}

.agreement__warning {
    position: relative;
    margin-bottom: 40px;
    border: 2px solid #b82b2b;
    border-radius: 10px;
    padding: 35px 35px 35px 101px;
    font-family: Akrobat,sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 22px;
    letter-spacing: -1px;
    color: var(--light-color);
    background: radial-gradient(128.35% 128.35% at 50% 60.63%,rgba(188,33,33,.2) 0,#3e0505 100%);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px)
}

.agreement__warning::before {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    content: "";
    position: absolute;
    left: 25px;
    top: 50%;
    width: 69px;
    height: 69px;
    background-image: url(../img/agreement/agreement-icon.svg);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%)
}

.agreement__title-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.agreement__title {
    margin: 0;
    border-radius: 10px;
    padding: 20px;
    font-family: Inter,sans-serif;
    font-weight: 900;
    font-size: 24px;
    letter-spacing: -1px;
    text-align: center;
    text-transform: uppercase;
    color: var(--light-color);
    background: radial-gradient(128.35% 128.35% at 50% 60.63%,rgba(255,255,255,.099) 0,rgba(255,255,255,0) 100%);
    -webkit-filter: drop-shadow(0 4px 45px rgba(0, 0, 0, .05));
    filter: drop-shadow(0 4px 45px rgba(0, 0, 0, .05));
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px)
}

.agreement__text {
    margin: 40px 0;
    font-family: Akrobat,sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 22px;
    letter-spacing: -1px;
    color: #c5c5c5
}

.agreement__text a {
    text-decoration: underline;
    color: var(--light-color)
}

.agreement__subtitle-mobile {
    display: none
}

@media (hover: hover) and (pointer:fine) {
    .nav__link:not(.nav__link--active):hover {
        color:#ccac3a;
        -webkit-transform: translateY(-2px);
        -ms-transform: translateY(-2px);
        transform: translateY(-2px)
    }

    .social__link:hover {
        color: var(--hover-color);
        -webkit-transform: translateY(-2px);
        -ms-transform: translateY(-2px);
        transform: translateY(-2px)
    }

    .btn-hover:not(:disabled):hover {
        -webkit-transform: translateY(-3px);
        -ms-transform: translateY(-3px);
        transform: translateY(-3px)
    }

    .btn-hover:not(:disabled):hover::before {
        opacity: 1;
        visibility: visible
    }

    .hero .swiper-pagination-bullet:hover {
        background-color: #ffe925
    }

    .payment-methods__label:hover {
        border: 2px solid transparent;
        -webkit-transform: translateY(-3px);
        -ms-transform: translateY(-3px);
        transform: translateY(-3px)
    }

    .payment-methods__label:hover::before {
        opacity: 1;
        visibility: visible
    }

    .payment-methods__input-radio:checked+label:hover {
        border: 2px solid #3d9423;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none
    }

    .payment-methods__input-radio:checked+label:hover::before {
        opacity: 0;
        visibility: hidden
    }

    .launcher__btn-apk:hover,.payment-methods__back-home:hover {
        -webkit-transform: translateY(-3px);
        -ms-transform: translateY(-3px);
        transform: translateY(-3px)
    }

    .error-404__link-back:hover {
        -webkit-transform: translateY(-48px);
        -ms-transform: translateY(-48px);
        transform: translateY(-48px)
    }

    .error-404__link-back:hover::before,.replenishment__help:hover .replenishment__help-text {
        opacity: 1;
        visibility: visible
    }

    .footer__link:hover {
        color: #ccac3a;
        -webkit-transform: translateY(-2px);
        -ms-transform: translateY(-2px);
        transform: translateY(-2px)
    }
}

@media (max-width: 1399.98px) {
    .hero .swiper-slide img {
        height:750px;
        opacity: .6
    }

    .hero__swiper {
        top: -47px
    }
}

@media (max-width: 1199.98px) {
    .header__logo img {
        width:140px
    }

    .nav__list {
        gap: 30px
    }

    .nav__item:not(:last-child)::after {
        right: -15px;
        height: 50px
    }

    .social__link {
        width: 42px;
        height: 42px
    }

    .social__link img {
        width: 28px
    }

    .title {
        font-size: 60px
    }

    .descr {
        font-size: 29px
    }

    .hero {
        padding-top: 70px
    }

    .hero__text-wrapper {
        margin-bottom: 140px
    }

    .hero .swiper-pagination {
        top: 366px
    }

    .replenishment__money {
        display: none
    }

    .launcher__img {
        opacity: .5
    }

    .promo__img,.replenishment-waiting__img {
        opacity: .6
    }
}

@media (max-width: 991.98px) {
    .nav {
        -webkit-box-orient:vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .header {
        padding: 40px 0
    }

    .header__logo img {
        width: 160px
    }

    .title {
        font-size: 54px
    }

    .descr {
        font-size: 26px
    }

    .hero__online-val {
        padding: 30px 40px 15px;
        font-size: 55px
    }

    .hero__play-link {
        padding: 20px 40px;
        font-size: 29px
    }

    .hero__online-text {
        max-width: 130px;
        font-size: 17px
    }

    .footer__list {
        width: initial;
        max-width: initial
    }

    .subtitle {
        font-size: 36px
    }

    .subtitle::after {
        width: 183px
    }

    .subtitle--border-red::after {
        width: 100%
    }

    .replenishment__content {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }

    .replenishment__safe {
        display: none
    }

    .replenishment__form {
        max-width: 550px;
        -webkit-backdrop-filter: blur(20px);
        backdrop-filter: blur(20px)
    }

    .replenishment__people {
        left: -782px;
        z-index: -1;
        opacity: .5
    }

    .replenishment__bonus-text {
        display: none
    }

    .replenishment__bonus-content {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .replenishment__bonus-val {
        text-align: center
    }

    .replenishment-balance__subtitle::after {
        width: 253px
    }

    .replenishment-waiting__img {
        right: -212px
    }

    .promo__title {
        font-size: 48px
    }

    .promo__code {
        padding: 40px 30px;
        max-width: 457px
    }

    .promo__code-wrapper {
        gap: 45px
    }

    .promo__awards-title {
        font-size: 45px
    }
}

@media (max-width: 767.98px) {
    .header__logo {
        position:relative;
        z-index: 100
    }

    .nav {
        -webkit-box-orient: initial;
        -webkit-box-direction: initial;
        -ms-flex-direction: initial;
        flex-direction: initial
    }

    .nav__list {
        position: fixed;
        left: 0;
        top: 0;
        z-index: 99;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        padding: 137px 15px 50px;
        width: 100%;
        min-width: 320px;
        background-color: rgba(0,0,0,.5);
        opacity: 0;
        visibility: hidden;
        -webkit-transform: translateY(20px);
        -ms-transform: translateY(20px);
        transform: translateY(20px);
        -webkit-transition: opacity .3s ease-in-out,visibility .3s ease-in-out,-webkit-transform .3s ease-in-out;
        transition: opacity .3s ease-in-out,visibility .3s ease-in-out,transform .3s ease-in-out,-webkit-transform .3s ease-in-out;
        -webkit-backdrop-filter: blur(27.5px);
        backdrop-filter: blur(27.5px);
        gap: 20px
    }

    .nav__list.menu--active {
        opacity: 1;
        visibility: visible;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none
    }

    .nav__item {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        width: 100%
    }

    .nav__item:not(:last-child)::after {
        display: none
    }

    .nav__link {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        border: 2px solid rgba(94,102,107,.6);
        border-radius: 10px;
        padding: 20px 10px;
        width: 100%;
        max-width: 350px;
        line-height: normal;
        background: radial-gradient(128.35% 128.35% at 50% 60.63%,rgba(255,255,255,.22) 0,rgba(255,255,255,0) 100%)
    }

    .nav__link--active {
        border: 2px solid #bb9d1d;
        background: radial-gradient(128.35% 128.35% at 50% 60.63%,rgba(255,215,73,.85) 0,#3e3505 100%)
    }

    .burger {
        z-index: 100;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex
    }

    .title {
        font-size: 47px;
        line-height: 53px
    }

    .descr {
        font-size: 23px;
        line-height: 30px
    }

    .subtitle::after {
        display: none
    }

    .payment-methods__list {
        -ms-grid-columns: (1fr)[3];
        grid-template-columns: repeat(3,1fr)
    }

    .launcher__img {
        top: 0;
        width: 700px
    }

    .hero__swiper {
        top: -15px;
        -webkit-transform: translateX(-45%);
        -ms-transform: translateX(-45%);
        transform: translateX(-45%)
    }

    .hero .swiper-pagination {
        z-index: 0
    }

    .replenishment-waiting__text-wrapper {
        margin-left: 0
    }

    .promo__code-wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .promo__btn {
        width: 100%;
        max-width: 457px
    }

    .promo__title {
        font-size: 43px
    }

    .promo__list {
        -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2,1fr);
        row-gap: 125px
    }

    .replenishment__bonus {
        right: -2px;
        padding: 6px;
        -webkit-transform: translate(0,-45%);
        -ms-transform: translate(0,-45%);
        transform: translate(0,-45%)
    }

    .replenishment__bonus--active {
        -webkit-transform: translate(0,-50%);
        -ms-transform: translate(0,-50%);
        transform: translate(0,-50%)
    }

    .replenishment__bonus-content {
        gap: 3px
    }

    .replenishment__bonus-val {
        padding: 3px 5px
    }

    .replenishment__bonus-currency {
        padding: 3px 26px 3px 5px
    }

    .replenishment__bonus-currency::after {
        right: 5px;
        width: 16px;
        height: 16px
    }
}

@media (max-width: 575.98px) {
    .header__logo img {
        width:130px
    }

    .social {
        display: none
    }

    .social__link {
        border-radius: 10px;
        width: 60px;
        height: 60px
    }

    .social__link img {
        width: 45px
    }

    .social--mobile {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }

    .hero {
        padding-top: 160px;
        padding-bottom: 25px
    }

    .hero__swiper {
        left: 0;
        top: -237px;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none
    }

    .hero__title {
        margin-bottom: 0
    }

    .hero__descr {
        display: none
    }

    .hero__text-wrapper {
        margin-bottom: 55px
    }

    .hero__links-wrapper {
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2,1fr);
        margin-bottom: 50px;
        gap: 37px 16px
    }

    .hero__play-link {
        -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
        order: -1;
        grid-column: 1/-1
    }

    .hero__online-block--mobile {
        display: block
    }

    .hero__online-val {
        min-width: initial
    }

    .hero__social-mobile {
        display: block
    }

    .hero .swiper-slide {
        overflow: hidden
    }

    .hero .swiper-slide img {
        width: 800px;
        height: initial;
        opacity: .8
    }

    .hero .swiper-pagination-bullet {
        width: 12px;
        height: 12px
    }

    .hero .swiper-pagination {
        top: 240px;
        gap: 23px
    }

    .title {
        font-size: 29px;
        line-height: 33px
    }

    .subtitle {
        margin-bottom: 40px
    }

    .footer {
        padding-top: 25px;
        padding-bottom: 40px
    }

    .footer__content {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .footer__list {
        display: none
    }

    .footer__list--mobile {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        margin-bottom: 40px;
        border: 2px solid rgba(59,59,56,.6);
        border-radius: 10px;
        padding: 20px;
        width: 100%;
        background: radial-gradient(128.35% 128.35% at 50% 60.63%,rgba(255,255,255,.099) 0,rgba(255,255,255,0) 100%);
        -webkit-backdrop-filter: blur(6px);
        backdrop-filter: blur(6px);
        gap: 25px
    }

    .footer__link {
        line-height: normal
    }

    .footer__link--email,.replenishment__subtitle {
        display: none
    }

    .replenishment__subtitle--mobile {
        position: relative;
        display: block;
        font-size: 28px
    }

    .replenishment__subtitle--mobile::before {
        content: "";
        position: absolute;
        left: 50%;
        top: 50%;
        z-index: -1;
        width: 207px;
        height: 207px;
        background-color: #239120;
        -webkit-filter: blur(125px);
        filter: blur(125px);
        -webkit-transform: translate(-50%,-40%);
        -ms-transform: translate(-50%,-40%);
        transform: translate(-50%,-40%)
    }

    .replenishment__people {
        display: none
    }

    .replenishment__form {
        padding: 0;
        background: initial;
        -webkit-backdrop-filter: initial;
        backdrop-filter: initial
    }

    .replenishment__form-btn {
        padding: 25px 15px;
        font-size: 30px
    }

    .replenishment__form-text {
        font-size: 15px
    }

    .replenishment__label-input::-webkit-input-placeholder {
        font-size: 20px
    }

    .replenishment__label-input::-moz-placeholder {
        font-size: 20px
    }

    .replenishment__label-input:-ms-input-placeholder {
        font-size: 20px
    }

    .replenishment__label-input::-ms-input-placeholder {
        font-size: 20px
    }

    .replenishment__label-input,.replenishment__label-input::placeholder {
        font-size: 20px
    }

    .replenishment-balance__subtitle {
        font-size: 27px
    }

    .payment-methods__list {
        -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2,1fr)
    }

    .payment-methods__titles-wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .payment-methods__content {
        border: none;
        padding: 0;
        background: initial;
        -webkit-backdrop-filter: initial;
        backdrop-filter: initial
    }

    .payment-methods__inf {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .payment-methods__inf-item {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }

    .payment-methods__title {
        font-size: 22px
    }

    .payment-methods__text {
        font-size: 20px
    }

    .payment-methods__back-home {
        font-size: 18px
    }

    .launcher {
        padding-top: 10px;
        padding-bottom: 40px
    }

    .launcher__title {
        display: none
    }

    .launcher__descr {
        margin-bottom: 342px;
        font-size: 22px;
        text-align: center
    }

    .launcher__label-inf {
        display: block;
        margin: 0 auto 20px;
        max-width: 197px
    }

    .launcher__btn-apk {
        display: none
    }

    .launcher__btn-download {
        position: relative;
        display: none;
        padding: 30px 20px;
        width: 100%;
        font-size: 26px
    }

    .launcher__btn-download::after {
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
        content: "";
        position: absolute;
        right: 22px;
        top: 50%;
        width: 34px;
        height: 34px;
        background-image: url(../img/launcher/launcher-apk-img.svg);
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%)
    }

    .launcher__btn-download--mobile {
        display: block
    }

    .launcher__img {
        left: 50%;
        right: initial;
        top: 170px;
        display: none;
        opacity: 1;
        -webkit-transform: translateX(-60%);
        -ms-transform: translateX(-60%);
        transform: translateX(-60%)
    }

    .launcher__img--mobile {
        top: 33%;
        display: block
    }

    .replenishment-waiting {
        padding: 20px 0
    }

    .replenishment-waiting__subtitle {
        font-size: 27px
    }

    .replenishment-waiting__text-wrapper {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        max-width: initial
    }

    .replenishment-waiting__img {
        display: none
    }

    .replenishment-waiting__list {
        padding: 0;
        background: initial;
        -webkit-backdrop-filter: initial;
        backdrop-filter: initial
    }

    .replenishment-waiting__item-label {
        font-size: 21px
    }

    .replenishment-waiting__item-text {
        font-size: 16px
    }

    .error-404 {
        padding: 50px 0
    }

    .error-404__subtitle {
        font-size: 28px
    }

    .error-404__img {
        width: 100%;
        max-width: 400px
    }

    .error-404__link-back {
        padding: 18px 15px;
        min-width: initial;
        font-size: 18px;
        -webkit-transform: translateY(-25px);
        -ms-transform: translateY(-25px);
        transform: translateY(-25px)
    }

    .promo__img {
        display: none
    }

    .promo__label-wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 20px
    }

    .promo__text-wrapper {
        gap: 30px
    }

    .promo__title {
        font-size: 36px;
        text-align: center
    }

    .promo__label {
        font-size: 22px
    }

    .promo__label-text {
        font-size: 30px
    }

    .promo__code-wrapper {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 30px
    }

    .promo__code {
        padding: 25px 20px
    }

    .promo__code-copy {
        display: none
    }

    .promo__code-text {
        width: 100%;
        font-size: 18px;
        text-align: center
    }

    .promo__code-copied-text {
        font-size: 14px
    }

    .promo__btn {
        padding: 10px 10px 10px 35px;
        font-size: 26px
    }

    .promo__btn-img {
        width: 60px;
        height: 60px
    }

    .promo__awards-title {
        font-size: 34px;
        text-align: center
    }

    .promo__list {
        grid-template-columns: repeat(auto-fit,minmax(210px,1fr))
    }

    .promo__item-img {
        top: -120px;
        width: 200px
    }

    .agreement__subtitle-mobile {
        display: block
    }

    .agreement__subtitle-mobile .replenishment__subtitle {
        display: block;
        border-radius: 10px;
        padding: 20px 18px;
        -webkit-box-shadow: 0 0 33.4px rgba(197,12,12,.3);
        box-shadow: 0 0 33.4px rgba(197,12,12,.3);
        font-size: 20px;
        background: radial-gradient(128.35% 128.35% at 50% 60.63%,rgba(255,73,73,.97) 0,rgba(255,46,46,.05) 100%);
        -webkit-backdrop-filter: blur(6px);
        backdrop-filter: blur(6px)
    }

    .agreement__warning {
        padding: 50px 15px 15px;
        font-size: 14px;
        text-align: center
    }

    .agreement__warning::before {
        left: 50%;
        top: 15px;
        width: 27px;
        height: 27px;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%)
    }

    .agreement__title {
        font-size: 20px
    }

    .agreement__text {
        margin: 20px;
        font-size: 16px
    }
}

@media (max-width: 359.98px) {
    .launcher__btn-download {
        padding:25px 20px;
        font-size: 23px
    }

    .launcher__btn-download::after {
        right: 17px
    }

    .launcher__descr {
        margin-bottom: 272px
    }

    .launcher__img--mobile {
        top: 42%;
        width: 550px
    }

    .promo__title {
        font-size: 32px
    }
}
