@font-face {
    font-family: 'Manrope';
    src: url('/assets/fonts/Manrope-Regular.woff2') format('woff2'),
         url('/assets/fonts/Manrope-Regular.woff') format('woff');
    font-style: normal;
    font-weight: normal;
}
@font-face {
    font-family: 'AlbertusBold';
    src: url('/assets/fonts/AlbertusBold.woff2') format('woff2'),
         url('/assets/fonts/AlbertusBold.woff') format('woff');
    font-style: normal;
    font-weight: normal;
}


* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: "Manrope", sans-serif;
    font-size: 18px;
    line-height: 1.7;
    color: #cedee5;
    background-color: #070f33;
    margin: 0;
    padding: 0;
    text-rendering: optimizeSpeed;
}
input {
    font-family: "Manrope", sans-serif;
    line-height: 1;
}
.body-wrapper {
    overflow: clip;
    margin: 0;
}
a {
    text-decoration: none;
    transition: all .2s ease;
    color: #bbc3c8;
    outline: none;
}
img, picture {
    max-width: 100%;
    display: block;
}
header {
    width: 100%;
    display: flex;
    min-width: 0;
    justify-content: center;
    align-items: center;
    position: fixed;
    z-index: 1000;
    top: 0;
}
.header__container {
    font-family: "AlbertusBold";
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    min-width: 0;
    padding: 12px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    line-height: 1;
    text-transform: uppercase;
    transition: all .3s ease;
    color: #bbc3c8;
}
.header__container a:hover {
    color: #e8e8e8;
}
.header__first {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 50px;
}
.logo {
    width: max-content;
}
.logo:hover {
    transform: scale(1.04);
    transform-origin: center center;
}
.nav__list {
    display: flex;
    min-width: 0;
    gap: 74px;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
}
.nav__list-el {
    margin: 0;
    padding: 0;
    position: relative;
}
.nav__list-item {
    padding: 2px 0;
}
.header__second {
    display: flex;
    align-items: center;
    min-width: 0;
    gap: 40px;
}
.online {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 0;
    gap: 12px;
    font-family: "Manrope";
    text-transform: none;
    margin-right: 8px;
    color: #e8e8e8;
}
.online span {
    color: #00d824;
}
.swap-lang-wrap {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 7px;
    cursor: pointer;
    position: relative;
    text-transform: none;
    font-family: "AlbertusBold";
}
.swap-lang {
    position: relative;
    z-index: 5;
}
.swap-lang-item {
    display: flex;
    min-width: 0;
    width: 100%;
    align-items: center;
    gap: 12px;
}
.lang-item-flag {
    width: 32px;
    height: 22px;
    border-radius: 2px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}
.lang-current .lang-item-name {
    color: #e8e8e8;
    font-size: 14px;
}
.lang-item-name {
    transition: all .2s ease;
}
.lang-list .swap-lang-item:hover .lang-item-name {
    color: #e8e8e8;
}
.lang-list {
    position: absolute;
    width: max-content;
    top: 100%;
    left: 0%;
    opacity: 0;
    visibility: hidden;
    display: flex;
    flex-direction: column;
    justify-items: center;
    align-items: center;
    gap: 10px;
    z-index: 0;
    cursor: default;
    transition: all .3s ease;
    background: rgba(0, 0, 0, 0.95);
    width: 100%;
    padding: 10px;
    margin-left: -10px;
    margin-right: -10px;
    border-radius: 8px;
}
.swap-lang-wrap:hover .lang-list {
    opacity: 1;
    visibility: visible;
}
.swap-lang-arrow {
    background: url(/assets/images/icons/lang-arrow.png) center no-repeat;
    background-size: contain;
    width: 8px;
    height: 6px;
    transition: all .3s ease-in-out;
    z-index: 1;
}
.swap-lang-wrap:hover .swap-lang-arrow {
    transform: scale(1, -1);
    filter: brightness(140%);
}
.account__btns {
    display: flex;
    align-items: center;
    gap: 12px;
}
.account {
    display: flex;
    min-width: 0;
    padding: 20px 36px;
    color: #e8e8e8;
    font-size: 17px;
    font-family: "AlbertusBold";
    justify-content: center;
    align-items: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 10px;
}
.account.login {
    background-image: url("../images/btns/btn-login.png");
}
.account.signup {
    background-image: url("../images/btns/btn-sgnup.png");
}
.account:hover {
    filter: brightness(120%);
}

section {
    display: flex;
    min-width: 0;
    justify-content: center;
    position: relative;
    padding: 0 5%;
    padding-top: 170px;
    padding-bottom: 170px;
}
section::before {
    content: "";
    width: 100%;
    height: 127px;
    position: absolute;
    top: -3px;
    left: 0;
    z-index: 2;
    background-image: url(/assets/images/bg/divider-top.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: auto 100%;
    pointer-events: none;
}
section::after {
    content: "";
    width: 100%;
    height: 93px;
    position: absolute;
    bottom: -3px;
    left: 0;
    z-index: 2;
    background-image: url(/assets/images/bg/divider-bottom.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: auto 100%;
    pointer-events: none;
}
section:first-child {
    padding-top: 90px;
}
section:first-child::before {
    display: none;
}
section:first-child::after {
    height: 127px;
    background-image: url(/assets/images/bg/divider-top.png);
    bottom: -124px;
}
section:nth-child(2n)::after, section:nth-child(2n)::before {
    display: none;
}

.container {
    display: flex;
    min-width: 0;
    width: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}


/* WELCOME */
section.welcome {
    background: url(/assets/images/bg/welcome-bg.webp) top no-repeat;
    background-size: cover;
    height: 100dvh;
    padding: 0;
    min-height: 900px;
    padding-top: 0;
    margin-top: 94px;
}
section.welcome .container {
    padding: 0;
    justify-content: center;
    align-items: center;
    padding-right: 44%;
    padding-bottom: 2%;
}
.welcome__logo {
    padding-bottom: 27px;
}
.section-title {
    font-family: "AlbertusBold";
    line-height: 1.375;
    color: #62beff;
    font-size: 60px;
    text-transform: uppercase;
    filter: drop-shadow(0 3px 6px #000);
}
.section-subtitle {
    font-family: "AlbertusBold";
    color: #f0f0f0;
    font-size: 36px;
    text-transform: uppercase;
    line-height: 1.375;
}
section.welcome .section-title {
    font-size: 50px;
}
.section-desc {
    padding-top: 25px;
    padding-bottom: 40px;
    color: #cedee5;
    font-size: 20px;
}
section.welcome .section-desc {
    max-width: 565px;
}
.btn_big {
    display: flex;
    text-transform: uppercase;
    min-width: 0;
    justify-content: center;
    align-items: center;
    height: 118px;
    aspect-ratio: 473/118;
    line-height: 1;
    padding: 10px 20px;
    background-image: url(../images/btns/btn-big.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    color: #fff;
    font-size: 26px;
    font-family: "AlbertusBold";
    text-shadow: 0 0 10px #00032a;
    filter: drop-shadow(0 5px 10px #000);
}
.btn_big span {
    filter: drop-shadow(0 0 14px #304a8a);
    text-shadow: 0 0 6px #00032a;
}
.btn_big:hover {
    filter: drop-shadow(0 5px 10px #000) brightness(120%);
}

/* UPDATES */
section.updates {
    background: url(/assets/images/bg/updates-bg.jpg) top no-repeat;
    background-size: cover;
}
section.updates .section-desc {
    max-width: 835px;
}
.updates__blocks {
    display: flex;
    min-width: 0;
    justify-content: center;
    align-items: center;
    max-width: 1400px;
    width: 100%;
    gap: 24px;
    height: 430px;
}
.updates__block {
    height: 100%;
    display: flex;
    min-width: 0;
    justify-content: space-between;
    flex-direction: column;
    width: 50%;
    gap: 24px;
}
.update__item {
    border: 2px solid #2d5573;
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 5px;
    position: relative;
    height: 50%;
    z-index: 1;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 30px 40px;
    user-select: text;
    cursor: pointer;
    line-height: 1.2;
    filter: drop-shadow(0 4px 15px #000);
}
.update__item.big {
    height: 100%;
}
.update__item img {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0;
    object-fit: cover;
    object-position: center;
    z-index: -1;
    top: 0;
    left: 0;
    transition: all .3s ease;
}
.update__item-date {
    font-size: 14px;
    color: #cedee5;
}
.update__item-name {
    text-transform: uppercase;
    color: #62beff;
    font-family: "AlbertusBold";
}
.update__item:hover img {
    filter: brightness(130%);
}

/* FEATURES */
section.features {
    background: url(/assets/images/bg/features-bg.jpg) top no-repeat;
    background-size: cover;
}
.feature-list {
    max-width: 1400px;
    width: 100%;
    display: flex;
    min-width: 0;
    flex-direction: column;
    align-items: center;
    gap: 150px;
}
.feature {
    width: 100%;
    display: flex;
    min-width: 0;
    gap: 60px;
    align-items: center;
}
.feature-text {
    width: 50%;
    display: flex;
    min-width: 0;
    flex-direction: column;
    text-align: left;
    align-items: flex-start;
}
.feature-img {
    width: 50%;
    filter: drop-shadow(0 15px 25px #000);
}
.feature-subtitle {
    text-transform: uppercase;
    color: #ffba4d;
    line-height: 1.2;
}
.feature-title {
    font-size: 44px;
    color: #fff;
    font-family: "AlbertusBold";
    text-transform: uppercase;
    line-height: 1.2;
    margin-top: 6px;
    margin-bottom: 15px;
}
.btn {
    display: flex;
    min-width: 0;
    justify-content: center;
    align-items: center;
    height: 58px;
    line-height: 1;
    padding: 10px 53px;
    background-image: url(../images/btns/btn.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    text-transform: uppercase;
    color: #e9e9e9;
    font-family: "AlbertusBold";
    border-radius: 10px;
    font-size: 17px;
    margin-top: 30px;
}
.btn:hover {
    filter: brightness(120%)
}
.feature:nth-child(2) .feature-text {
    order: 2;
}

/* SOCIALS */
section.socials {
    background: url(/assets/images/bg/socials-bg.jpg) top no-repeat;
    background-size: cover;
}
section.socials .section-desc {
    max-width: 870px;
}
.socials__list {
    display: flex;
    min-width: 0;
    gap: 38px;
}
.social {
    display: flex;
    flex-direction: column;
    min-width: 0;
    justify-content: center;
    align-items: center;
    width: 320px;
    height: 138px;
    gap: 15px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    transition: all .3s ease;
}
.social-desc {
    font-size: 10px;
    text-transform: uppercase;
    color: #eceff3;
    line-height: 1;
    letter-spacing: 8%;
}
.social.ds {
    background-image: url("../images/socials/ds-bg.png");
}
.social.vk {
    background-image: url("../images/socials/vk-bg.png");
}
.social.tg {
    background-image: url("../images/socials/tg-bg.png");
}
.social.fb {
    background-image: url("../images/socials/fb-bg.png");
}
.social:hover {
    filter: brightness(120%);
}

/* PLAY */
section.play {
    background: url(/assets/images/bg/play-bg.jpg) top no-repeat;
    background-size: cover;
}
section.play .section-desc {
    max-width: 550px;
}

/* FOOTER */
footer {
    background: url(/assets/images/bg/footer-bg.jpg) top no-repeat;
    background-size: cover;
}
.footer__container {
    margin: 0 auto;
    padding: 0 20px;
    padding-top: 80px;
    padding-bottom: 60px;
    display: flex;
    flex-direction: column;
    min-width: 0;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    text-transform: uppercase;
    line-height: 1;
    gap: 30px;
}
.footer__links {
    font-size: 13px;
    color: #838d97;
    text-transform: none;
    gap: 17px;
    display: flex;
    min-width: 0;
    align-items: center;
}
.footer__link:not(:last-child) {
    position: relative;
    padding-right: 16px;
}
.footer__link::after {
    position: absolute;
    content: "";
    width: 2px;
    height: 8px;
    background: #838d97;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
}
.project {
    color: #cedee5;
    font-size: 16px;
    text-transform: uppercase;
    font-family: "AlbertusBold";
}
.watermark {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 9px;
    font-size: 12px;
    cursor: pointer;
    max-width: max-content;
    text-align: left;
    font-family: "ALbertusBold";
}
.watermark-logo {
    transition: all 1s ease;
}
.watermark-developed {
    color: #788189;
    text-transform: none;
    margin-bottom: 3px;
    font-size: 10px;
}
.watermark-studio {
    font-weight: 500;
    color: #7f9ba5;
}
.watermark:hover {
    filter: brightness(130%);
}
.watermark:hover .watermark-logo {
    transform: rotate(720deg);
}
.footer__container a:hover {
    color: #e8e8e8;
}


/* ADAPTIVE */
.burger {
    position: relative;
    width: 30px;
    height: 30px;
    border: none;
    display: none;
    z-index: 1002;
    background-color: transparent;
    cursor: pointer;
}
.burger span {
    position: absolute;
    width: 18px;
    height: 1.5px;
    background-color: #e8e8e8;
    left: 6px;
    transition: transform .5s;
    will-change: transform;
}
.burger span:nth-child(1) {
    transform: translateY(-7.5px);
} 
.burger span:nth-child(3) {
    transform: translateY(7.5px);
} 
.burger.active span:nth-child(1) {
    transform: translateY(0) rotate(45deg);
} 
.burger.active span:nth-child(3) {
    transform: translateY(0) rotate(-45deg);
}
.burger.active span:nth-child(2) {
    display: none;
}
.menu {
    display: none;
    visibility: hidden;
    z-index: 1001;
    min-height: 100vh;
}
.menu__list {
    display: flex;
    align-items: center;
    list-style-type: none;
    padding: 0;
    margin: 0;
}


@media(max-width: 1500px) {
    body {
        font-size: 13.5px;
    }
    
    .header__container {
        padding: 9px 5%;
        font-size: 12px;
    }
    .header__first {
        gap: 37.5px;
    }
    .logo {
        width: 58.5px;
        height: 52.5px;
    }
    .nav__list {
        gap: 55px;
    }
    .header__second {
        gap: 30px;
    }
    .online {
        gap: 9px;
        margin-right: 6px;
    }
    .online img {
        width: 15px;
        height: 15px;
    }
    .swap-lang-wrap {
        gap: 5.25px;
    }
    .swap-lang-item {
        gap: 9px;
    }
    .lang-item-flag {
        width: 24px;
        height: 16.5px;
    }
    .lang-current .lang-item-name {
        font-size: 12px;
    }
    .swap-lang-arrow {
        width: 6px;
        height: 4.5px;
    }
    .lang-list {
        padding: 7.5px;
        gap: 7.5px;
        margin-left: -7.5px;
        margin-right: -7.5px;
    }
    .account__btns {
        gap: 9px;
    }
    .account {
        font-size: 12.75px;
        padding: 15px 27px;
        border-radius: 7.5px;
    }

    section {
       padding: 120px 5%;
    }
    section:first-child {
        padding-top: 67.5px;
    }
    section::before {
        height: 95px;
    }
    section::after {
        height: 70px;
    }
    section:first-child::after {
        height: 95px;
        background-image: url(/assets/images/bg/divider-top.png);
        bottom: -92px;
    }

    section.welcome {
        min-height: 675px;
        padding-top: 70;
        margin-top: 70.5px;
    }
    section.welcome .container {
        padding-right: 44%;
        padding-bottom: 2%;
    }
    .welcome__logo {
        padding-bottom: 20px;
        width: 471px;
        height: 192px;
    }
    .section-title {
        font-size: 45px;
    }
    section.welcome .section-title {
        font-size: 37.5px;
    }
    .section-subtitle {
        font-size: 27px;
    }
    .section-desc {
        font-size: 15px;
        padding-top: 18.75px;
        padding-bottom: 30px;
        max-width: 420px;
    }
    section.welcome .section-desc {
        max-width: 420px;
    }
    .btn_big {
        height: 88.5px;
        padding: 7.5px 15px;
        font-size: 19.5px;
    }

    section.updates .section-desc {
        max-width: 620px;
    }
    .updates__blocks, .updates__block {
        gap: 18px;
    }
    .updates__blocks {
        height: 322.5px;
    }
    .update__item {
        padding: 22.5px 30px;
    }
    .update__item-date {
        font-size: 12px;
    }
    
    .feature-list {
        gap: 110px;
    }
    .feature {
        gap: 45px;
    }
    .feature-title {
        font-size: 33px;
        margin-top: 4.5px;
        margin-bottom: 11.24px;
    }
    .btn {
        height: 43.5px;
        padding: 7.5px 40px;
        font-size: 12.75px;
        border-radius: 7.5px;
        margin-top: 22.5px;
    }
    .feature-img {
        height: 234px;
        overflow: hidden;
    }
    .feature-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    section.socials .section-desc {
        max-width: 650px;
    }
    .socials__list {
        gap: 28px;
    }
    .social {
        width: 240px;
        height: 103.5px;
        gap: 5.25px;
    }
    .social-logo {
        transform: scale(0.75);
    }

    section.play .section-desc {
        max-width: 410px;  
    }

    .footer__container {
        padding: 0 15px;
        padding-top: 60px;
        padding-bottom: 45px;
        gap: 22.5px;
    }
    .project {
        font-size: 12px;
    }
    .footer__links {
        gap: 12px;
        font-size: 12px;
    }
    .footer__link:not(:last-child) {
        padding-right: 12px;
    }
    .watermark {
        gap: 6.75px;
    }
    .watermark-studio {
        font-size: 10px;
    }
    .watermark-logo {
        width: 34px;
    }
}

@media(max-width: 1100px) {
    body {
        font-size: 12px;
    }

    .header__nav, .online, .account__btns {
        display: none;
    }
    .burger {
        display: block;
        position: relative;
        transition: transform .2s ease;
    }
    .logo:hover {
        transform: none;
    }
    .menu__list {
        display: flex;
        flex-direction: column;
        gap: 0px;
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    .menu__list li:first-of-type {
        border-top: 1px solid #00345c;
    }
    .menu__list li {
        text-align: center;
        font-size: 14px;
        width: 100%;
        border-bottom: 1px solid #00345c;
        padding-left: 5%;
    }
    .menu {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        max-width: 100%;
        height: 100%;
        padding: 70.5px 0;
        transform: translateY(-100%);
        transition: all .5s;
        display: block;
    }
    .logo {
        z-index: 1002;
    }
    .menu.active {
        transform: translateY(0);
        visibility: visible;
        background-color: rgba(0, 0, 0, 0.95);
    }
    .menu__item a {
        font-size: 14px;
        width: calc(100% - 10%);
        height: 100%;
        display: flex;
        padding: 15px 0;
    }
    .menu__list .menu__item:last-child {
        border-top: none;
    }
    .no-scroll {
        overflow: hidden;
    }
    .header__scroll .menu {
        top: -10px;
        padding: 50px 0;
    }
    .menu__item-special {
        padding-top: 20px;
        display: flex;
        min-width: 0;
        justify-content: center;
        align-items: center;
    }
    .menu__item-special .account__btns, .menu__item-special .online {
        display: flex;
    }


    section {
       padding: 80px 5%;
    }
    section:first-child {
        padding-top: 50px;
    }
    section::before {
        height: 71.25px;
    }
    section::after {
        height: 52.5px;
    }
    section:first-child::after {
        height: 71.25px;
        background-image: url(/assets/images/bg/divider-top.png);
        bottom: -68.25px;
    }

    section.welcome {
        padding-left: 5%;
        padding-right: 5%;
        min-height: 675px;
        margin-top: 70.5px;
        padding-top: 0;
        background-position: left;
    }
    section.welcome .container {
        padding-right: 0%;
        padding-bottom: 0%;
    }
    .welcome__logo {
        padding-bottom: 15px;
        width: 335px;
        height: auto;
    }
    .section-title, section.welcome .section-title {
        font-size: 26px;
        text-wrap: balance;
    }
    .section-subtitle {
        font-size: 17px;
        text-wrap: balance;
    }
    .section-desc {
        font-size: 13.5px;
        text-wrap: balance;
    }
    .btn_big {
        height: 70.8px;
        padding: 6px 12px;
        font-size: 15.6px;
    }

    .updates__blocks {
        flex-wrap: wrap;
        height: auto;
    }
    .updates__block {
        width: 100%;
        height: auto;
    }
    .update__item {
        height: 140px;
        padding: 14px 16px;
        text-align: left;
    }
    .update__item.big {
        height: 280px;
    }

    .feature-list {
        gap: 50px;
    }
    .feature {
        flex-direction: column;
        gap: 25px;
    }
    .feature-text, .feature-img {
        width: 100%;
    }
    .feature-text {
        order: 2;
        text-align: center;
        align-items: center;
        text-wrap: balance;
    }
    .socials__list {
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
    }
}


/* ~~~ REGISTER PAGE ~~~ */
.auth-page .header__container, .ma-page .header__container {
    border-bottom: 2px solid #242e3b;
}
.auth-page .footer__container, .ma-page .footer__container {
    border-top: 2px solid #242e3b;
}
.auth-page section.welcome {
    background: url(/assets/images/bg/auth-bg.jpg) top no-repeat;
    background-size: cover;
    margin-top: 0;
    padding-top: 94px;
    min-height: 1250px;
}
.auth-page section::before, .auth-page section::after, 
.ma-page section::before, .ma-page section::after {
    display: none;
}
.auth-page section.welcome .container, .ma-page section.welcome .container {
    padding: 0;
}
.form-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 0;
    background: url(/assets/images/bg/form-bg.jpg) top no-repeat;
    background-size: cover;
    border: 2px inset #2b3955;
    box-shadow: 4px 0 36px rgba(0, 0, 0, 0.6);
    padding: 60px;
    max-width: 752px;
    width: 100%;
}
form.ma {
    display: flex;
    min-width: 0;
    width: 100%;
    flex-direction: column;
    gap: 16px;
}
.registration-disabled {
    display: flex;
    min-width: 0;
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 22px;
    text-align: center;
}
.registration-disabled__icon {
    width: 88px;
    height: 88px;
    object-fit: contain;
    filter: drop-shadow(0 0 24px rgba(98, 190, 255, 0.35));
}
.registration-disabled__title {
    margin-bottom: 0;
}
.registration-disabled__message {
    max-width: 520px;
    margin: 0;
    color: #aebde4;
    font-size: 18px;
    line-height: 1.6;
}
.registration-disabled__discord {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}
.registration-disabled__discord:focus-visible {
    outline: 2px solid #62beff;
    outline-offset: 3px;
}
.form-title {
    font-family: "AlbertusBold";
    font-size: 36px;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 0 0 20px #000;
    line-height: 1;
    margin-bottom: 42px;
}
.form__input {
    height: 76px;
    width: 100%;
    padding: 5px 32px;
    display: flex;
    min-width: 0;
    align-items: center;
    justify-content: center;
    gap: 18px;
    border-radius: 4px;
    background: #0f1b47;
    border: 1px solid #2d5573;
    border-bottom: 1px solid #2c3a56;
}
.form__input input {
    width: 100%;
    height: 100%;
    background: none;
    border: none;
    font-size: 20px;
    color: #fff;
}
.form__input input::placeholder {
    color: #55649c;
    font-size: 20px;
}
.form__input input:focus {
    outline: none;
}
.form__input-icon {
    width: 22px;
    flex-shrink: 0;
}
.form__input-desc {
    font-size: 15px;
    color: #212c60;
    line-height: 1.5;
    text-align: left;
    margin-top: 6px;
}
.captcha img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.captcha {
    border-top: none;
}
.form__input-expanded .form__input {
    border: none;
}
.form__input-expanded {
    border: 1px solid #2d5573;
    border-bottom: 1px solid #2c3a56;
    border-radius: 4px;
}
.captcha {
    height: 76px;
    overflow: hidden;
}
.captcha-info {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    height: 32px;
}
.captcha-timer {
    display: flex;
    min-width: 0;
    justify-content: center;
    align-items: center;
    background: #132156;
    border-radius: 4px;
    font-size: 16px;
    line-height: 1;
    color: #3a6db8;
    width: 76px;
    padding: 3px 6px;
    height: 100%;
}
.captcha-refresh {
    display: flex;
    min-width: 0;
    justify-content: center;
    align-items: center;
    width: 42px;
    background: #132156;
    height: 100%;
    cursor: pointer;
    border: none;
    transition: all .2s ease;
    outline: none;
}
.captcha-refresh:hover {
    filter: brightness(120%);
}
.form__checkbox {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
    font-size: 16px;
    color: #55649c;
    cursor: pointer;
    user-select: none;
    line-height: 1;

}
.form__checkbox input[type="checkbox"] {
    display: none;
}
.checkbox__box {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    border: 1.5px solid #1e5080;
    border-radius: 4px;
    background: rgba(10, 30, 80, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s, border-color .2s;
    margin-right: 5px;
}
.form__checkbox input[type="checkbox"]:checked ~ .checkbox__box {
    background: #1a5fc8;
    border-color: #3a90d0;
}
.checkbox__box::after {
    content: "";
    width: 8px;
    height: 4px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(-45deg) translateX(1px);
    opacity: 0;
    transition: opacity .2s;
}
.form__checkbox input[type="checkbox"]:checked ~ .checkbox__box::after {
    opacity: 1;
}
.form__checkbox a {
    color: #3a6db8;
    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-skip-ink: none;
}
.form__checkbox a:hover {
    color: #62beff;
}
.form-btn {
    background: url(/assets/images/btns/blue.png) center no-repeat;
    background-size: cover;
    border: none;
    cursor: pointer;
    font-size: 17px;
    text-transform: uppercase;
    font-family: "AlbertusBold";
    line-height: 1;
    color: #e8e8e8;
    height: 70px;
    border-radius: 4px;
    margin-top: 25px;
    transition: all .2s ease;
    outline: none;
}
.form-btn:hover {
    filter: brightness(120%);
}
.auth-switch {
    font-size: 15px;
    color: #fff;
}
.auth-switch__link {
    color: #62beff;
    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-skip-ink: none;
}
.auth-switch__link:hover {
    filter: brightness(120%);
}
.forgot-psw:hover {
    filter: brightness(120%);
}

@media(max-height: 1249px) {
    .auth-page section.welcome {
        min-height: 800px;
    }
    .form-wrapper {
        box-shadow: 4px 0 23px rgba(0, 0, 0, 0.6);
        padding: 40px;
        max-width: 540px;
    }
    form.ma {
        gap: 10px;
    }
    .registration-disabled {
        gap: 14px;
    }
    .registration-disabled__icon {
        width: 64px;
        height: 64px;
    }
    .registration-disabled__title {
        margin-bottom: 0;
    }
    .registration-disabled__message {
        font-size: 14px;
    }
    .form-title {
        margin-bottom: 27px;
        font-size: 23px;
    }
    .form__input {
        height: 49px;
        padding: 3px 20px;
        gap: 12px;
    }
    .form__input-icon {
        width: 14px;
    }
    .form__input input, .form__input input::placeholder {
        font-size: 14px;
    }
    .form__input-desc {
        font-size: 12px;
        margin-top: 4px;
    }
    .captcha {
        height: 49px;
    }
    .captcha-info {
        height: 20px;
        gap: 5px;
    }
    .captcha-timer {
        width: 52px;
        padding: 2px 4px;
        font-size: 13px;
    }
    .captcha-refresh {
        width: 26px;
    }
    .captcha-refresh img {
        width: 10px;
    }
    .form__checkbox {
        font-size: 12px;
        gap: 3.5px;
        margin-right: 3.5px;
        flex-wrap: nowrap;
        align-items: normal;
        text-align: left;
    }
    .checkbox__box {
        width: 13px;
        height: 13px;
    }
    .checkbox__box::after {
        width: 6px;
        height: 3px;
        border-left: 1px solid #fff;
        border-bottom: 1px solid #fff;
    }
    .form-btn {
        font-size: 14px;
        height: 45px;
        margin-top: 16px;
    }
    .registration-disabled__discord {
        margin-top: 8px;
    }
    .auth-switch {
        font-size: 12px;
    }
}

@media (max-width: 1500px) {
    .auth-page section.welcome {
        padding-top: 72.5px;
    }
}

@media(max-width: 610px), (max-height: 800px) {
    .form-wrapper {
        padding: 30px;
    }
    .form-title {
        font-size: 20px;
        margin-bottom: 16px;
    }
    form.ma {
        gap: 6px;
    }
    .registration-disabled__icon {
        width: 56px;
        height: 56px;
    }
    .registration-disabled__message {
        font-size: 13px;
    }
    .form__input {
        height: 40px;
        padding: 3px 10px;
        gap: 8px;
    }
    .form__input input {
        font-size: 12px;
    }
    .form__input-icon {
        width: 11px;
    }
    .captcha {
        height: 40px;
    }
    .captcha-timer {
        font-size: 12px;
        width: 48px;
    }
    .captcha-refresh {
        width: 20px;
    }
    .captcha-refresh img {
        width: 9px;
    }
    .form__checkbox {
        align-items: normal;
    }
}

/* ~~~ MA PAGES ~~~ */
.ma-page section.welcome {
    background: url(/assets/images/bg/auth-bg.jpg) top no-repeat;
    background-size: cover;
    height: auto;
}
.ma-page section.welcome .container {
    flex-direction: row;
    align-items: stretch;
    justify-content: center;
    padding: 10em 12em;
    gap: 1.25em;
}
.sidebar-wrap {
    max-width: 428px;
    width: 100%;
    /* flex-shrink: 0; */
}
.sidebar-wrap .sidebar {
    position: sticky;
    top: calc(94px + 10em);
    height: 100%;
    height: calc(100dvh - 10em);
    max-height: 982px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #1a2a5d transparent;
}
.sidebar {
    width: 100%;
    padding: 44px;
    background: #071131;
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 32px;
    border: 2px solid #2c3955;
    box-shadow: 0 4px 18px #000;
}
.sidebar-block.balance {
    margin-bottom: 12px;
}
.sidebar-block {
    display: flex;
    min-width: 0;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    flex-direction: column;
}
.sidebar__title {
    font-family: "AlbertusBold";
    font-size: 14px;
    color: #fff;
    text-transform: uppercase;
    text-shadow: 6px 0 10px #000;
    border-radius: 4px;
    margin-bottom: 12px;
}
.sidebar__list {
    display: flex;
    min-width: 0;
    width: 100%;
    flex-direction: column;
    border: 1px solid #152657;
    gap: 0;
}
.sidebar-block.balance .sidebar__list {
    gap: 6px;
    border: none;
}
.sidebar__el {
    padding: 10px 24px;
    display: flex;
    min-width: 0;
    align-items: center;
    width: 100%;
    gap: 20px;
    font-size: 15px;
    color: #55649c;
    background: transparent;
    height: 56px;
    transition: all .2s ease;
}
.sidebar__el:not(.active):hover {
    filter: brightness(120%);
    background: rgba(18, 32, 74, 0.2);
}
.sidebar__el-icon {
    width: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 0;
}
.sidebar__el-name {
    line-height: 1;
}
.icon-blue img {
    filter: brightness(0) saturate(100%) invert(39%) sepia(18%) saturate(1164%) hue-rotate(189deg) brightness(88%) contrast(85%);
}
.sidebar__el-count {
    margin-left: auto;
    font-size: 18px;
}
.sidebar-block.balance .sidebar__el {
    height: 52px;
    border-radius: 4px;
    border: 1px solid #17405e;
    color: #fff;
}
.sidebar__el.active {
    color: #fff;
    background: #12204a;
}
.sidebar__el.active .icon-blue img {
    filter: none;
}
.ma-toggle-btn.is-active .icon-blue img {
    filter: none;
}
.ma__main {
    padding: 44px;
    background: #071131;
    border: 2px solid #2c3955;
    display: flex;
    align-items: flex-start;
    gap: 44px;
    box-shadow: 0 4px 18px #000;
    max-width: 1500px;
    width: 100%;
    /* height: max-content; */
}
.ma__main-block {
    text-align: left;
}
.ma__main-block:nth-child(1) {
    flex-grow: 1;
    min-width: 0;
}
.main-head  {
    margin-bottom: 24px;
}
.main-title {
    font-family: "AlbertusBold";
    line-height: 1;
    font-size: 18px;
    text-transform: uppercase;
    color: #fff;
}
.main-desc {
    font-size: 15px;
    color: #55649c;
    margin-top: 5px;
}
.ma-section {
    margin-bottom: 48px;
}
.ma__main--topup .ma-section {
    margin-bottom: 24px;
}
.ma-label {
    font-family: "AlbertusBold";
    font-size: 14px;
    color: #fff;
    line-height: 1;
    margin-bottom: 12px;
    text-transform: uppercase;
}
.ma__main--topup .ma-label {
    font-size: 15px;
    margin-bottom: 8px;
}
.ma-desc {
    font-size: 12px;
    color: #222d64;
    margin-top: 4px;
}
.ma-field {
    display: flex;
    min-width: 0;
    width: 100%;
    height: 48px;
    padding: 8px 24px;
    align-items: center;
    gap: 16px;
    background: #0f1b47;
    border: 1px solid transparent;
    border-radius: 4px;
    color: #55649c;
    transition: all .2s ease;
}
.ma-field:focus-within {
    border-color: #2a7fff;
}
.ma-field input,
.ma-field textarea,
.ma-field select {
    background: none;
    border: none;
    outline: none;
    color: #55649c;
    font-size: 15px;
    font-family: inherit;
    min-width: 0;
    width: 100%;
    height: 100%;
}
.ma-field input::placeholder {
    font-size: 15px;
}
.ma-field input[type="number"] {
    appearance: textfield;
    -moz-appearance: textfield;
}
.ma-field input[type="number"]::-webkit-outer-spin-button,
.ma-field input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.ma-field__icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}
.ma-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    width: 100%;
    justify-content: center;
    align-items: center;
}
@media (max-width: 540px) {
    .ma-grid-2 { 
        grid-template-columns: 1fr; 
    }
}
.ma-grid-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
    width: 100%;
    justify-content: center;
    align-items: center;
}
@media (max-width: 640px) {
    .ma-grid-3 { 
        grid-template-columns: 1fr 1fr; 
    }
}
.ma-toggle-group {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    min-width: 0;
    justify-content: center;
    align-items: center;
    width: 100%;
}
.ma-toggle-btn {
    height: 48px;
    flex: 1;
    min-width: fit-content;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 8px;
    background: #0b173c;
    border: 1px solid #172656;
    border-radius: 4px;
    color: #55649c;
    cursor: pointer;
    font-size: 14px;
    transition: all .2s ease;
}
.ma-toggle-btn:not(.is-active):hover {
    filter: brightness(120%);
}
.ma-toggle-btn.is-active {
    background: #0d1c4e;
    border-color: #62beff;
    color: #fff;
}
.ma-toggle-group#bonus-tiers .ma-toggle-btn {
    height: 58px;
}
.ma-toggle-btn--sm {
    padding: 8px 14px;
    flex-direction: column;
    gap: 2px;
}
.ma-toggle-btn--sm .ma-toggle-btn__top {
    font-size: 16px;
    color: #fff;
    line-height: 1;
}
.ma-toggle-btn--sm .ma-toggle-btn__sub {
    font-size: 14px;
    color: rgba(85, 100, 156, 0.5);
    margin-top: 2px;
    line-height: 1;
}
.ma-toggle-btn--sm.is-active .ma-toggle-btn__sub {
    color: rgba(85, 100, 156, 1); 
}
.ma-banner {
    display: flex;
    min-width: 0;
    width: 100%;
    align-items: center;
    gap: 20px;
    background: linear-gradient(to right, #193369, #102256);
    border: 1px solid #395fb2;
    border-radius: 4px;
    padding: 6px 12px;
    transition: all .2s ease;
    min-height: 56px;
    margin-top: 10px;
}
.ma-banner__body {
    display: flex;
    flex-direction: column;
    min-width: 0;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    height: 100%;
}
.ma-badge {
    flex-shrink: 0;
    display: flex;
    min-width: 0;
    align-items: center;
    justify-content: center;
    gap: 7px;
    height: 32px;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 16px;
    color: #fff;
    line-height: 1;
    white-space: nowrap;
    border: 2px solid #2f4f9a;
    background: rgba(98, 190, 255, 0.1);
}
.ma-banner .ma-badge {
    width: 100px;
}
.ma-badge__icon {
    display: block;
    width: 14px;
}
.fd-old-wrap {
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    color: #575d97;
    white-space: nowrap;
}
.fd-old-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: inherit;
    background: linear-gradient(
        to top left,
        transparent calc(50% - 1px),
        #5e78bf calc(50% - 1px),
        #5e78bf calc(50% + 1px),
        transparent calc(50% + 1px)
    );
}
.fd-old-wrap .ma-badge__icon {
    display: block;
    width: 12px;
}
.ma-banner__title { 
    font-size: 14px;
    line-height: 1;
    color: #fff;
}
.ma-banner__sub { 
    font-size: 12px;
    color: #55649c;
    line-height: 1;
    margin-top: 2px;
}
.ma-card {
    display: flex;
    min-width: 0;
    width: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
}
.ma-summary__row, .ma-summary__foot-item {
    display: flex;
    min-width: 0;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    padding: 5px 24px;
    border: 1px solid #1a2a5d;
    background: #0b173c;
    height: 42px;   
    border-radius: 4px;
    padding-right: 6px;
}
.ma-summary__row--accent {
    background: linear-gradient(to right, #193369, #102256);
    border: 1px solid #395fb2;
}
.ma-summary__label, .ma-summary__foot-item-label {
    font-size: 14px;
    color: #55649c;
    display: flex;
    align-items: center;
    gap: 16px;
    line-height: 1;
}
.ma-summary__row--accent .ma-summary__label {
    color: #fff;
}
.ma-summary__val {
    font-size: 14px;
    color: #fff;
    display: flex;
    min-width: 0;
    align-items: center;
    text-transform: uppercase;
    white-space: nowrap;
    border-radius: 4px;
    border: 2px solid #1a2a5d;
    background: transparent;
    height: 30px;
    padding: 6px 12px;
}
.ma-summary__val img {
    width: 14px;
    margin-right: 10px;
}
.ma-summary__row--accent .ma-summary__val {
    border: 2px solid #2f4f9a;
    background: rgba(98, 190, 255, 0.1);
} 
.ma-summary__foot {
    gap: 4px;
}
.ma-summary__foot-item-label {
    color: #fff;
}
.ma-summaty__foot-item-val {
    display: flex;
    min-width: 0;
    justify-content: center;
    align-items: center;
    font-size: 15px;
    color: #fff;
    padding: 4px 16px;
    gap: 4px;
    border-radius: 4px;
    border: 2px solid #162554;
    line-height: 1;
    height: 30px;
}
.ma-btn {
    font-family: "ALbertusBold";
    display: flex;
    min-width: 0;
    width: 100%;
    align-items: center;
    justify-content: center;
    height: 56px;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 16px;
    color: #fff;
    line-height: 1;
    text-transform: uppercase;
    cursor: pointer;
    transition: all .2s;
    border: 1px solid transparent;
    white-space: nowrap;
    background: url(/assets/images/btns/blue.png) center no-repeat;
    background-size: cover;
    transition: all .2s ease;
}
.ma-btn:active {
    transform: scale(.99);
}
.ma-btn:hover {
    filter: brightness(120%);
}
.ma__main-block:nth-child(2) {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    margin-left: 44px;
    padding: 44px;
    border-radius: 4px;
    background: #07102d;
    border: 1px solid #111d44;
    max-width: 580px;
    width: 100%;
    gap: 26px;
    height: 100%;
    flex-shrink: 1;
}
.ma__main-block:nth-child(2)::after {
    position: absolute;
    content: "";
    display: block;
    height: 100%;
    width: 1px;
    background: #111d44;
    left: -43.5px;
    top: 0;
}
.ma__side {
    display: flex;
    flex-direction: column;
    min-width: 0;
    width: 100%;
}
.ma__side:not(:last-child) {
    padding-bottom: 26px;
    position: relative;
}
.ma__side:not(:last-child)::after {
    position: absolute;
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: #111d44;
    bottom: 0;
    left: 0;
}
.ma__side-head {
    display: flex;
    min-width: 0;
    align-items: center;
    font-family: "AlbertusBold";
    font-size: 14px;
    line-height: 1;
    text-transform: uppercase;
    gap: 9px;
    margin-bottom: 10px;
}
.ma__side-label {
    color: #fff;
}
.ma__side-icon img {
    width: 16px;
}
.ma__table {
    display: flex;
    flex-direction: column;
    min-width: 0;
    width: 100%;
    gap: 4px;
}
.tr {
    display: flex;
    align-items: center;
    min-width: 0;
    width: 100%;
    padding: 6px;
    padding-right: 16px;
    gap: 12px;
    background: linear-gradient(to right, #0f1c43, #091332);
    border-radius: 4px;
    border: 1px solid #15234f;
}
.ma__table.raiting-table .tr {
    padding-right: 32px;
}
.td {
    font-size: 14px;
    color: #55649c;
    line-height: 1;
}
.td.place {
    font-family: "AlbertusBold";
    border: 1px solid #1a295c;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    min-width: 0;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
}
.td.sum {
    margin-left: auto;
}
.td.time {
    font-size: 12px;
    color: #273766;
}
.tr.first {
    background: linear-gradient(to right, #32343a, #10182d);
    border-color: #4e4b44;
}
.tr.first .td {
   color: #ffd991; 
}
.tr.first .td.place {
    border-color: #ffd991;
}
.tr.second {
    background: linear-gradient(to right, #31394d, #101932);
    border-color: #424b5f;
}
.tr.second .td {
   color: #b2b6bb; 
}
.tr.second .td.place {
    border-color: #b2b6bb;
}
.tr.third {
    background: linear-gradient(to right, #363443, #11182f);
    border-color: #4e454d;
}
.tr.third .td {
   color: #dcae89; 
}
.tr.third .td.place {
    border-color: #dcae89;
}
.ma__side-right {
    color: #273766;
    margin-left: auto;
}

@media(max-width: 2200px), (max-height: 1380px) {
    .ma-page section.welcome .container {
        padding: 3em 6em;
    }
    .sidebar-wrap .sidebar {
        top: calc(94px + 3em);
        height: calc(100dvh - 3em - 96px);
    }
}

@media(max-width: 1920px) {
    .sidebar-wrap {
        max-width: 342.4px;
        width: 100%;
        gap: 25px;
        flex-shrink: 0;
    }
    .sidebar {
        padding: 35px;
        gap: 17px;
    }
    .sidebar-wrap .sidebar {
        max-height: 769px;
    }
    .sidebar-block.balance {
        margin-bottom: 9px;
    }
    .sidebar__title {
        font-size: 12px;
        margin-bottom: 9px;
    }
    .sidebar__el {
        padding: 8px 19px;
        gap: 16px;
        font-size: 13px;
        height: 44px;
    }
    .sidebar__el-icon {
        width: 16px;
    }
    .sidebar__el-count {
        font-size: 14px;
    }
    .ma__main {
        padding: 35px;
        gap: 35px;
        max-width: 1200px;
    }
    .main-head {
        margin-bottom: 18px;
    }
    .main-title {
        font-size: 14px;
    }
    .main-desc {
        font-size: 13px;
        margin-top: 3px;
    }
    .ma-section {
        margin-bottom: 38px;
    }
    .ma__main--topup .ma-section {
        margin-bottom: 18px;
    }
    .ma-label {
        font-size: 12px;
        margin-bottom: 9px;
    }
    .ma__main--topup .ma-label {
        font-size: 13px;
        margin-bottom: 6px;
    }
    .ma-toggle-group {
        gap: 8px;
    }
    .ma-toggle-btn {
        height: 38px;
        gap: 8px;
        padding: 8px 8px;
        font-size: 12px;
    }
    .ma-toggle-btn__icon {
        width: 14px;
    }
    .ma-field {
        height: 38px;
        padding: 6px 19px;
        gap: 6px;
    }
    .ma-grid-2 {
        gap: 8px;
    }
    .ma-field img {
        scale: 0.8;
    }
    .ma-field input, .ma-field textarea, .ma-field select, .ma-field input::placeholder {
        font-size: 13px;
    }
    .ma-toggle-group#bonus-tiers .ma-toggle-btn {
        height: 46px;
    }
    .ma-toggle-btn--sm {
        gap: 2px;
        padding: 6px 11px;
    }
    .ma-toggle-btn--sm .ma-toggle-btn__top {
        font-size: 13px;
    }
    .ma-toggle-btn--sm .ma-toggle-btn__sub {
        font-size: 12px;
        margin-top: 0px;
    }
    .ma-banner {
        gap: 16px;
        margin-top: 8px;
        min-height: 44px;
        padding: 4px 9px;
    }
    .ma-banner .ma-badge {
        width: 80px;
    }
    .ma-badge {
        gap: 5px;
        height: 25px;
        padding: 2px 6px;
        font-size: 13px;
    }
    .ma-banner__title {
        font-size: 13px;
    }
    .ma-banner__title {
        font-size: 12px;
    }
    .fd-old-wrap {
        gap: 4px;
        font-size: 12px;
    }
    .fd-old-wrap .ma-badge__icon {
        width: 9px;
    }
    .ma-badge__icon {
        width: 9px;
    }
    .ma-summary__row, .ma-summary__foot-item {
        padding: 4px 19px;
        height: 33px;
        padding-right: 4px;
    }
    .ma-summary__label, .ma-summary__foot-item-label {
        gap: 13px;
    }
    .ma-summary__val {
        font-size: 12px;
        height: 24px;
        padding: 4px 9px;
    }
    .ma-summary__val img {
        width: 11px;
        margin-right: 8px;
    }
    .ma-summary__label, .ma-summary__foot-item-label {
        font-size: 12px;
    }
    .ma-summaty__foot-item-val {
        font-size: 13px;
        padding: 3px 13px;
        gap: 3px;
        height: 24px;
    }
    .ma-btn {
        height: 45px;
        padding: 6px 13px;
        font-size: 13px;
    }
    .ma__main-block:nth-child(2) {
        margin-left: 35px;
        padding: 35px;
        max-width: 460px;
        gap: 20px;
    }
    .ma__main-block:nth-child(2)::after {
        left: -34.5px;
    }
    .ma__side:not(:last-child) {
        padding-bottom: 20px;
    }
    .ma__side-head {
        font-size: 12px;
        gap: 3px;
        margin-bottom: 8px;
    }
    .ma__side-icon img {
        width: 13px;
    }
    .ma__table {
        gap: 7px;
    }
    .tr {
        padding: 4px;
        padding-right: 12px;
        gap: 9px;
    }
    .ma__table.raiting-table .tr {
        padding-right: 25px;
    }
    .td {
        font-size: 12px;
    }
    .td.place {
        width: 19px;
        height: 19px;
    }
    .sidebar-block.balance .sidebar__list {
        gap: 4px;
    }
    .sidebar-block.balance .sidebar__el {
        height: 41px;
    }
}


/* ~~~ HISTORY PAGE ~~~ */
.ma__main-block--full {
    width: 100%;
}
.ma-table-wrap {
    display: flex;
    flex-direction: column;
    min-width: 0;
    width: 100%;
}
.ma-table-head {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    align-items: center;
    padding: 6px 32px;
    margin-bottom: 6px;
    background: #0b173c;
    min-height: 54px;
    gap: 20px;
}
.ma-th {
    font-size: 14px;
    color: #fff;
    line-height: 1;
    text-align: center;
}
.ma-th:nth-child(1), .ma-th:nth-child(2){
    text-align: left;
}
.ma-table-body {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.ma-tr {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    align-items: center;
    gap: 20px;
    padding: 6px 32px;
    background: #0b173c;
    border-radius: 4px;
    min-height: 54px;
}
.ma-table-wrap__wrap {
    width: 100%;
}
.history-table .ma-tr, .history-table .ma-table-head {
    grid-template-columns: 1.5fr 1.5fr 1.5fr 2fr 1fr;
}
.ma-tr:nth-child(odd) {
    background: #101e49;
}
.ma-td {
    font-size: 14px;
    color: #55649c;
    line-height: 1;
    text-align: center;
}
.ma-td:last-child {
    display: flex;
    align-items: center;
}
.ma-td img {
    width: 14px;
}
.ma-td:nth-child(1), .ma-td:nth-child(2) {
    text-align: left;
}
.ma-td:last-child, .ma-th:last-child {
    margin-left: auto;
    text-align: right;
}
.ma-th:last-child {
    min-width: 80px;
    text-align: center;
}
.ma-td:last-child {
    width: var(--last-col-width);
    gap: 7px;
    justify-content: center;
    align-items: center;
}
.history-status--pending {
    color: #f5e666;
}
.history-status--confirmed {
    color: #00d824;
}
.history-status--cancelled {
    color: #f92b2b;
}
.history-table .ma-td:last-child, .history-table .ma-th:last-child {
    text-align: center;
}
.history-table .ma-td:last-child {
    padding-right: 0;
    justify-content: center;
}
.ma-message {
    font-size: 14px;
    color: #55649c;
    background: #0b173c;
    text-align: left;
    width: 100%;
    min-height: 40px;
    padding: 6px 25px;
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 12px;
    border-radius: 4px;
    margin: 6px 0;
}
.ma-message__icon {
    width: 14px;
    height: 14px;
    display: flex;
    min-width: 0;
    justify-content: center;
    align-items: center;
}
.empty-state {
    min-height: 54px;
}

@media (max-width: 1920px) {
    .ma-table-head {
        padding: 4px 25px;
        margin-bottom: 4px;
        min-height: 42px;
    }
    .ma-th {
        font-size: 12px;
    }
    .ma-table-body {
        gap: 4px;
    }
    .ma-tr {
        padding: 4px 25px;
        min-height: 42px;
    }
    .ma-td {
        font-size: 12px;
    }
    .ma-td img {
        width: 12px;
    }
    .ma-td:last-child {
        gap: 5px;
    }
    .ma-message {
        font-size: 12px;
        min-height: 32px;
        padding: 4px 20px;
        margin: 4px 0;
        gap: 9px;
    }
    .ma-message__icon {
        width: 12px;
        height: 12px;
    }
    .empty-state {
        min-height: 42px;
    }
}

/* ~~~ VOTE PAGE ~~~ */
.ma-banner.large {
    padding: 16px 20px;
}
.ma-banner__icon {
    flex-shrink: 0;
    width: 30px;
}
.ma-banner__icon img {
    width: 100%;
}
.ma-banner.large .ma-banner__title {
    font-size: 18px;
}
.ma-banner.large .ma-banner__sub {
    margin-top: 5px;
    font-size: 14px;
}
.ma-btn--small {
    height: 44px;
    font-size: 14px;
    width: auto;
    min-width: 190px;
    background: url(/assets/images/btns/blue-small.png) center no-repeat;
    background-size: cover;
    flex-shrink: 0;
}
.vote-stats {
    margin: 48px 0;
    gap: 14px;
}
.vote-stat {
    display: flex;
    min-width: 0;
    justify-content: flex-start;
    align-items: center;
    border-radius: 4px;
    border: 1px solid #395fb2;
    padding: 23px 20px;
    padding-right: 26px;
    line-height: 1;
}
.vote-stat__icon img {
    width: 20px;
}
.vote-stat__text {
    margin-left: 18px;
}
.vote-stat__val {
    margin-left: auto;
}

@media(max-width: 1920px) {
    .ma-banner.large {
        padding: 12px 16px;
    }
    .ma-banner__icon {
        width: 24px;
    }
    .ma-banner.large .ma-banner__title {
        font-size: 14px;
    }
    .ma-banner.large .ma-banner__sub {
        margin-top: 4px;
        font-size: 12px;
    }
    .ma-btn--small {
        height: 35px;
        font-size: 12px;
        min-width: 152px;
    }
    .vote-stats {
        margin: 38px 0;
        gap: 10px;
    }
    .vote-stat {
        padding: 18px 16px;
        padding-right: 20px;
        font-size: 14px;
    }
    .vote-stat__icon img {
        width: 16px;
    }
    .vote-stat__text {
        margin-left: 14px;
    }
}

/* ~~~ LOYALITY PAGE ~~~ */
.xp-rate {
    display: flex;
    min-width: 0;
    justify-content: center;
    align-items: center;
    gap: 14px;
    height: 48px;
    border-radius: 4px;
    background: #0b173c;
    border: 1px solid #1a2a5d;
}
.xp-rate__icon img {
    width: 18px;
}
.progress-card {
    background: #0b173c;
    border: 1px solid #1a2a5d;
    border-radius: 4px;
    padding: 16px;
    padding-right: 26px;
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 24px;
    position: relative;
    overflow: hidden;
}
.level-badge {
    flex-shrink: 0;
    width: 108px;
    height: 67px;
    border-radius: 4px;
    border: 1px solid #62beff;
    background: radial-gradient(circle, #0f1f52, #091644);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    position: relative;
    line-height: 1;
}
.level-value {
    font-size: 24px;
    line-height: 1;
    color: #fff;
}
.level-text {
    font-size: 14px;
    color: #55649c;
}
.progress-body {
    flex: 1;
    min-width: 0;
}
.xp-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 12px;
    line-height: 1;
}
.xp-values {
    display: flex;
    align-items: baseline;
    gap: 8px;
    color: #fff;
}
.xp-max {
    color: #55649c;
}
.xp-percent {
    color: #fff;
}
.bar-track {
    height: 4px;
    border-radius: 2px;
    background: #1d3065;
    position: relative;
    margin-bottom: 10px;
}
.bar-fill {
    height: 100%;
    width: 50%;
    border-radius: 2px;
    background: #5db4f4;
    position: relative;
    animation: fillIn 1.2s cubic-bezier(0.4, 0, 0.2, 1) both;
    filter: drop-shadow(0 0 5px #41b0ff);
}
.xp-left {
    font-size: 14px;
    color: #4a588b;
}
@keyframes fillIn {
    from { width: 0; opacity: 0.4; }
    to   { width: 50%; opacity: 1; }
}
.ma__side-right span {
    color: #fff;
}
.ma__ach-wrap {
    position: relative;
    padding-bottom: 22px;
}
.ma__achievements-row {
    display: flex;
    gap: 6px;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.ma__achievements-row::-webkit-scrollbar { display: none; }
.ma__ach-item {
    flex: 0 0 92px;
    height: 113px;
    border: 1px solid transparent;
    border-radius: 4px;
    background: #091228;
    display: flex;
    min-width: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    position: relative;
    transition: all .2s ease;
    cursor: pointer;
    background: #0b173c;
    padding: 6px;
    transition: all .2s ease;
}
.ma__ach-item:not(.unlocked):hover {
    border-color: rgba(0,198,255,.3);
    filter: brightness(110%);
}
.ma__ach-item.unlocked {
    gap: 9px;
    border-color: #62beff;
    background: radial-gradient(circle, #102256, #091644);
}
.ma__ach-item.unlocked .ma__ach-name  {
    font-size: 11px;
    color: #fff;
}
.ma__ach-item.locked {cursor: default;}
.ma__ach-check {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 12px;
    height: 12px;
    display: flex;
    min-width: 0;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
.ma__ach-icon img {
    width: 17px;
}
.ma__ach-name {
    font-size: 10px;
    color: #1b2752;
    text-align: center;
    line-height: 1.1;
}
.ma__ach-lock img {
    width: 11px;
}
.ma__scroll-track {
    position: absolute;
    background: #0c173c;
    border-radius: 2px;
    pointer-events: none;
}
.ma__scroll-thumb {
    position: absolute;
    background: #00c6ff;
    border-radius: 2px;
    pointer-events: none;
    transition: opacity .25s;
}
.ma__scroll-track.h {
    width: 100%;
    bottom: 0ch;
    left: 0px;
    height: 6px;
}
.ma__scroll-thumb.h {
    bottom: 2px;
    left: 0;
    height: 2px;
}
.ma__rewards-wrap {
    position: relative;
}
.ma__scroll-track.v {
    top: 0;
    right: -13px;
    width: 6px;
    height: 100%;
}
.ma__scroll-thumb.v {
    top: 0;
    right: -11px;
    width: 2px;
}
.ma__rewards-list {
    display: flex;
    min-width: 0;
    flex-direction: column;
    max-height: 590px;
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    gap: 6px;
}
.ma__rewards-list::-webkit-scrollbar { display: none; }
.ma__reward-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 10px;
    padding-left: 12px;
    border: 1px solid transparent;
    border-radius: 4px;
    transition: all .2s ease;
    background: #081232;
}
.ma__reward-item:not(.active):hover {
    filter: brightness(110%);
}
.ma__reward-item.active {
    background: #0b173c;
    border-color: #1a2a5d;
    cursor: pointer;
}
.ma__reward-lvl {
    width: 42px;
    height: 42px;
    border-radius: 4px;
    border: 1px solid #0d193e;
    background: #091228;
    display: flex;
    min-width: 0;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #1b2752;
}
.ma__reward-item.active .ma__reward-lvl {
    border-color: #62beff;
    color: #fff;
    background: radial-gradient(circle, #0a1847, #091544);
}
.ma__reward-info {
    flex: 1;
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 6px;
    line-height: 1;
    min-width: 0;
}
.ma__reward-name {
    font-size: 15px;
    color: #1b2752;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.ma__reward-item.active .ma__reward-name { color: #fff; }
.ma__reward-status {
    font-size: 14px;
}
.ma__reward-status.available { color: #01cb26; }
.ma__reward-status.xp        { color: #131e45; }
.ma__reward-thumb {
    width: 42px;
    height: 42px;
    border-radius: 4px;
    overflow: hidden;
    background: #1a2748;
    opacity: 0.05;
}
.ma__reward-thumb img { width: 100%; height: 100%; object-fit: cover; }
.ma__reward-item.active .ma__reward-thumb {
    opacity: 1;
}

@media(max-width: 1920px) {
    .ma-grid-3 {
        gap: 8px;
    }
    .xp-rate {
        gap: 11px;
        height: 38px;
    }
    .xp-rate__icon img {
        width: 14px;
    }
    .xp-rate__val {
        font-size: 14px;
    }
    .progress-card {
        padding: 12px;
        padding-right: 20px;
        gap: 19px;
    }
    .level-badge {
        width: 86px;
        height: 54px;
        gap: 3px;
    }
    .level-value {
        font-size: 19px;
    }
    .level-text {
        font-size: 12px;
    }
    .xp-row {
        margin-bottom: 10px;
        font-size: 14px;
        gap: 6px;
    }
    .bar-track {
        margin-bottom: 8px;
    }
    .xp-left {
        font-size: 12px;
    }
    .ma__ach-wrap {
        padding-bottom: 18px;
    }
    .ma__achievements-row {
        gap: 5px;
    }
    .ma__ach-item {
        flex: 0 0 74px;
        height: 90px;
        gap: 5.5px;
        padding: 5px;
    }
    .ma__ach-item.unlocked {
        gap: 7px;
    }
    .ma__ach-check {
        top: 5px;
        right: 5px;
        width: 9px;
        height: 9px;
    }
    .ma__ach-icon img {
        width: 13px;
    }
    .ma__ach-lock img {
        width: 9px;
    }
    .ma__rewards-list {
        max-height: 472px;
        gap: 5px;
    }
    .ma__reward-item {
        gap: 12px;
        padding: 8px;
        padding-left: 9px;
    }
    .ma__reward-lvl {
        width: 33px;
        height: 33px;
        font-size: 13px;
    }
    .ma__reward-info {
        font-size: 14px;
        gap: 5px;
    }
    .ma__reward-name {
        font-size: 12px;
    }
    .ma__reward-status {
        font-size: 12px;
    }
    .ma__reward-thumb {
        width: 33px;
        height: 33px;
    }
}


/* ~~~ ACCOUNT PAGE ~~~ */
.ma-grid-4 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    min-width: 0;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}
.acc-stat {
    padding: 12px 24px;
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 26px;
    border-radius: 4px;
    border: 1px solid #1a2a5d;
    background: #0b173c;
    height: 76px;
}
.acc-stats__icon img {
    width: 21px;
}
.acc-stats__info {
    line-height: 1;
    text-align: left;
}
.acc-stats__label {
    font-size: 14px;
    color: #4a588b;
}
.acc-stats__text {
    margin-top: 8px;
    color: #fff;
    display: flex;
    min-width: 0;
    gap: 8px;
    align-items: flex-end;
}
.acc-stats__text img {
    width: 15px;
}
.ma-form {
    border-radius: 4px;
    border: 1px solid #1a2a5d;
    background: #0b173c;
    padding: 28px;
}
.ma-form__inputs {
    display: flex;
    flex-direction: column;
    min-width: 0;
    width: 100%;
    gap: 10px;
}
.ma-form__input {
    border-radius: 4px;
    background: #15224d;
    padding: 8px 24px;
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 18px;
    height: 52px;
}
.ma-form__input input {
    background: none;
    width: 100%;
    height: 100%;
    outline: none;
    background: transparent;
    border: none;
    font-size: 15px;
    color: #fff;
    padding: 0;
}
.ma-form__input-icon {
    flex-shrink: 0;
}
.ma-form__input-icon img {
    width: 14px;
}
.ma-form__input input::placeholder {
    color: #55649c;
}
.ma-form__password-toggle {
    padding: 4px;
    border: 0;
    background: transparent;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s ease;
}
.ma-form__password-toggle img {
    width: 16px;
}
.ma-form__password-toggle.active {
    filter: brightness(120%);
}
.ma-form .form-btn {
    width: 100%;
    background-image: url(/assets/images/btns/btn-ma.png);
    height: 52px;
    font-size: 14px;
}
.form-btn {
    transition: all .2s ease;
}
.form-btn:active {
    transform: scale(.99);
}
.form-btn:hover {
    filter: brightness(120%);
}
.referral-stats {
    gap: 9px;
}
.referral-stat {
    display: flex;
    min-width: 0;
    gap: 16px;
    font-size: 15px;
    color: #fff;
    border-radius: 4px;
    border: 1px solid #395fb2;
    padding: 10px 20px;
    height: 52px;
    align-items: center;
    line-height: 1;
}
.referral-stat__icon {
    width: 19px;
    display: flex;
    min-width: 0;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}
.referral-stat__label {
    flex: 1;
}
.ma__side-field__wrap {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 8px;
    height: 52px;
}
.ma__side-field {
    display: flex;
    min-width: 0;
    align-items: center;
    padding: 6px 20px;
    height: 100%;
    width: 100%;
    gap: 16px;
    border-radius: 4px;
    background: #0b173c;
    font-size: 15px;
    color: #55649c;
}
.ma__side-field__icon {
    flex-shrink: 0;
}
.ma__side-field__icon img {
    width: 16px;
}
.ma__side-field__button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    margin: 0;
    width: 52px;
    height: 100%;
    border-radius: 4px;
    background: #0b1949;
    display: flex;
    min-width: 0;
    justify-content: center;
    align-items: center;
    transition: all .2s ease;
    flex-shrink: 0;
}
.ma__side-field__button:hover {
    filter: brightness(120%);
}
.ma__side-field__button:active {
    transform: scale(0.95);
}
.ma__side-field__button img {
    width: 15px;
}
.ma__side-field__button.large {
    width: 126px;
    color: #62beff;
    font-size: 15px;
}
.ma__side-field input {
    outline: none;
    background: none;
    border: none;
    height: 100%;
    width: 100%;
    color: #fff;
}
.ma__side-field input::placeholder {
    color: #55649c;
}

@media(max-width: 1920px) {
    .acc-stats {
        gap: 9px;
    }
    .acc-stat {
        padding: 9px 19px;
        gap: 20px;
        height: 60px;
    }
    .acc-stats__icon img {
        width: 17px;
    }
    .acc-stats__label {
        font-size: 12px;
    }
    .acc-stats__text {
        margin-top: 6px;
        gap: 6px;
        font-size: 14px;
    }
    .acc-stats__text img {
        width: 12px;
    }
    .ma-form {
        padding: 22px;
    }
    .ma-form__inputs {
        font-size: 8px;
        gap: 8px;
    }
    .ma-form__input {
        gap: 13px;
        height: 42px;
        padding: 6px 19px;
    }
    .ma-form__input-icon img {
        width: 11px;
    }
    .ma-form__input input {
        font-size: 13px;
    }
    .ma-form__password-toggle img {
        width: 13px;
    }
    .ma-form .form-btn {
        font-size: 12px;
        height: 42px;
        margin-top: 20px;
    }
    .referral-stats {
        gap: 7px;
    }
    .referral-stat {
        font-size: 13px;
        padding: 8px 16px;
        height: 42px;
        gap: 12px;
    }
    .referral-stat__icon {
        transform: scale(0.8);
    }
    .ma__side-field__wrap {
        gap: 6px;
        height: 42px;
    }
    .ma__side-field {
        padding: 5px 16px;
        gap: 13px;
        font-size: 13px;
    }
    .ma__side-field__icon img {
        width: 13px;
    }
    .ma__side-field__button {
        width: 42px;
    }
    .ma__side-field__button img {
        width: 13px;
    }
    .ma__side-field__button.large {
        font-size: 13px;
    }
}


/* ~~~ SECURITY PAGE ~~~ */
.ma__block:nth-child(2) {
    margin-bottom: 24px;
}
.ma__block-content {
    border-radius: 4px;
    background: #0b173c;
    padding: 24px;
}
.ma__block-label {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: #fff;
    line-height: 1;
    margin-bottom: 8px;
}
.ma__block-desc {
    font-size: 14px;
    color: #55649c;
}
.ma__block-label__icon {
    color: #ff3245;
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}
.ma__block:nth-child(3) .ma__block-content:not(:first-child) {
    margin-top: 48px;
    position: relative;
}
.ma__block:nth-child(3) .ma__block-content:not(:first-child)::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    background: #111d44;
    left: 0;
    top: -23.5px;
}
.ma__block-text {
    font-size: 12px;
    color: #55649c;
    margin-bottom: 16px;
}
.ma__block-field__wrap {
    display: flex;
    min-width: 0;
    gap: 8px;
    height: 46px;
    align-items: center;
}
.ma__block-field {
    padding: 8px 16px;
    display: flex;
    min-width: 0;
    align-items: center;
    border-radius: 4px;
    background: #101e49;
    gap: 18px;
    height: 100%;
    width: 100%;
}
.ma__block-field__icon {
    flex-shrink: 0;
}
.ma__block-field__icon img {
    width: 16px;
}
.ma__block-field__val {
    font-size: 14px;
    color: #55649c;
    line-height: 1;
}
.ma__block-field__button {
    width: 46px;
    height: 46px;
    flex-shrink: 0;
    display: flex;
    min-width: 0;
    align-items: center;
    justify-content: center;
    transition: all .2s ease;
    background: #0e1e56;
    border-radius: 4px;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 0;
}
.ma__block-field__button img {
    width: 16px;
}
.ma__block-field__button:hover {
    filter: brightness(120%);
}
.ma__block-field__button:active {
    transform: scale(0.95);
}
.ma__block-apps {
    display: grid;
    min-width: 0;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
    width: 100%;
}
.ma__block-app {
    display: flex;
    min-width: 0;
    align-items: center;
    justify-content: center;
    padding: 6px 10px;
    gap: 7px;
    border-radius: 4px;
    height: 46px;
    background: #0f1e51;
    border: none;
    outline: none;
    cursor: pointer;
    color: #62beff;
    font-size: 12px;
    transition: all .2s ease;
}
.ma__block-app:hover {
    filter: brightness(120%);
}
.ma__block-app:active {
    transform: scale(0.95);
}
.ma__block-field__wraps {
    display: flex;
    min-width: 0;
    width: 100%;
    flex-direction: column;
    gap: 10px;
}

@media(max-width: 1920px) {
    .ma__block:nth-child(2) {
        margin-bottom: 19px;
    }
    .ma__block-content {
        padding: 19px;
    }
    .ma__block-label {
        gap: 8px;
        font-size: 13px;
    }
    .ma__block-label__icon {
        width: 11px;
        height: 11px;
    }
    .ma__block-desc {
        font-size: 12px;
    }
    .ma__block:nth-child(3) .ma__block-content:not(:first-child) {
        margin-top: 38px;
    }
    .ma__block:nth-child(3) .ma__block-content:not(:first-child)::after {
        top: -18.5;
    }
    .ma__block-field__wrap {
        height: 36px;
        gap: 6px;
    }
    .ma__block-field {
        padding: 6.5px 13px;
        gap: 14px;
    }
    .ma__block-field__icon img {
        width: 13px;
    }
    .ma__block-field__val {
        font-size: 12px;
    }
    .ma__block-field__button {
        width: 36px;
        height: 36px;
    }
    .ma__block-field__button img {
        width: 13px;
    }
    .ma__block-apps {
        gap: 7px;
    }
    .ma__block-app {
        gap: 5px;
        padding: 5px 8px;
        height: 36px;
    }
    .ma__block-field__wraps {
        gap: 8px;
    }

}


/* ~~~ STREAMER PAGE ~~~ */
.ma-form__input-desc {
    font-size: 14px;
    color: #55649c;
    margin-top: 3px;
}
.ma-form .form__checkbox {
    font-size: 14px;
}
.ma-form__input-wrap:not(:last-of-type) {
    margin-bottom: 6px;
}
.ma-form .form__checkbox {
    margin-top: 20px;
}
.ma-form .form__checkbox a {
    color: #62beff;
    text-decoration: none;
}
.ma-form .form__checkbox a:hover {
    filter: brightness(120%);
    color: #62beff;
}
.streamer-stats {
    display: flex;
    flex-direction: column;
    min-width: 0;
    align-items: center;
    width: 100%;
    gap: 14px;
}
.streamer-stat {
    display: flex;
    min-width: 0;
    align-items: center;
    width: 100%;
    height: 68px;
    padding: 10px 20px;
    gap: 16px;
    border-radius: 4px;
    border: 1px solid #395fb2;
    background: #0b173c;
    color: #fff;
}
.streamer-stat__label {
    flex: 1;
}
.streamer-stat__icon img {
    width: 18px;
}
.ma-form__input--select {
    cursor: pointer;
    position: relative;
    user-select: none;
}
.ma-form__input--select .ma-select__value {
    flex: 1;
    color: #55649c;
    font-size: 15px;
    line-height: 1;
    transition: all .2s ease;
}
.ma-form__input--select.has-value .ma-select__value {
    color: #fff;
}
.ma-form__input--select .ma-select__arrow {
    flex-shrink: 0;
    margin-left: auto;
    transition: all .2s ease;
}
.ma-form__input--select.open .ma-select__arrow {
    transform: rotate(180deg);
}
.ma-form__input--select.open .ma-select__arrow path {
    stroke: #62beff;
}
.ma-form__input--select .ma-select__dropdown {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    background: #15224d;
    border-radius: 4px;
    border: 1px solid #1e3070;
    overflow: hidden;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .5);
}
.ma-form__input--select.open .ma-select__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.ma-form__input--select .ma-select__option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 24px;
    color: #55649c;
    font-size: 15px;
    transition: all .2s ease;
    cursor: pointer;
}
.ma-form__input--select .ma-select__option:not(:last-child) {
    border-bottom: 1px solid #182046;
}
.ma-form__input--select .ma-select__option:hover {
    background: #172352;
    color: #cedee5;
}
.ma-form__input--select .ma-select__option.selected {
    color: #62beff;
    background: #142050;
}
.ma-select__opt-icon {
    flex-shrink: 0;
    display: block;
}


@media(max-width: 1920px) {
    .ma-form__input-desc {
        font-size: 12px;
        margin-top: 2px;
    }
    .ma-form .form__checkbox {
        font-size: 12px;
    }
    .ma-form__input-wrap:not(:last-of-type) {
        margin-bottom: 5px;
    }
    .ma-form .form__checkbox {
        margin-top: 16px;
    }
    .streamer-stats {
        gap: 11px;
    }
    .streamer-stat {
        height: 54px;
        padding: 8px 16px;
        gap: 13px;
        font-size: 14px;
    }
    .streamer-stat__label {
        flex: 1;
    }
    .streamer-stat__icon img {
        width: 14px;
    }
    .form__checkbox {
        gap: 4px;
    }
    .checkbox__box {
        width: 16px;
        height: 16px;
        margin-right: 4px;
    }
    .checkbox__box::after {
        width: 6px;
        height: 3px;
    }
    .ma-form__input--select .ma-select__value {
        font-size: 13px;
    }
    .ma-form__input--select .ma-select__option {
        padding: 9px 19px;
        font-size: 13px;
        gap: 10px;
    }
}


/* ~~~ PROMOCODES PAGE ~~~ */
.ma__side-field__wraps {
    display: flex;
    min-width: 0;
    flex-direction: column;
    width: 100%;
    gap: 10px;
}
.ma__side-field input {
    padding: 0;
}
.ma-side__btn {
    border: none;
    outline: none;
    cursor: pointer;
    background: url(/assets/images/btns/blue-ma-small.png) center no-repeat;
    background-size: cover;
    font-family: "AlbertusBold";
    font-size: 14px;
    line-height: 1;
    color: #fff;
    justify-content: center;
    align-items: center;
    height: 52px;
    margin-top: 25px;
    text-transform: uppercase;
    transition: all .2s ease;
}
.ma-side__btn:hover {
    filter: brightness(120%);
}
.ma-side__btn:active {
    transform: scale(0.99);
}
.ma__side-field input {
    font-size: 15px;
}
.ma__side-field--select {
    cursor: pointer;
    position: relative;
    user-select: none;
}
.ma__select-value {
    flex: 1;
    color: #55649c;
    font-size: 15px;
    line-height: 1;
    transition: all .2s ease;
}
.ma__side-field--select.has-value .ma__select-value {
    color: #fff;
}
.ma__select-arrow {
    flex-shrink: 0;
    margin-left: auto;
    transition: all .2s ease;
}
.ma__side-field--select.open .ma__select-arrow {
    transform: rotate(180deg);
}
.ma__side-field--select.open .ma__select-arrow path {
    stroke: #62beff;
}
.ma__select-dropdown {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    background: #0b173c;
    border-radius: 4px;
    border: 1px solid #1a2d6b;
    overflow: hidden;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: all .2s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .45);
}
.ma__side-field--select.open .ma__select-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.ma__select-option {
    padding: 11px 20px;
    color: #55649c;
    font-size: 15px;
    transition: all .2s ease,;
    cursor: pointer;
}
.ma__select-option:not(:last-child) {
    border-bottom: 1px solid #111e4a;
}
.ma__select-option:hover {
    background: #101f52;
    color: #cedee5;
}

.ma__select-option.selected {
    color: #62beff;
    background: #0e1c47;
}



@media(max-width: 1920px) {
    .ma__side-field__wraps  {
        gap: 8px;
    }
    .ma-side__btn {
        font-size: 12px;
        height: 42px;
        margin-top: 20px;
    }
    .ma__side-field input {
        font-size: 13px;
    }
    .ma__select-value {
        font-size: 13px;
    }
    .ma__select-option {
        padding: 9px 16px;
        font-size: 13px;
    }
}


/* @media (max-width: 900px) {
    .ma-table-head {
        display: none;
    }
    .ma-tr {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
        gap: 6px;
        padding: 10px 16px;
    }
    .ma-td--sum {
        text-align: left;
    }
} */

/* Sidebar toggle button — скрыт на широких экранах */
.sidebar-toggle {
    display: none;
}

@media(max-width: 1800px) {
    .ma-page section.welcome .container {
        padding: 3em;
    }
}

@media(max-width: 1700px) {
    .ma-page section.welcome .container {
        padding: 3em;
    }
    .ma__main-block:nth-child(2) {
        max-width: 360px;
    }
    .referral-stats {
        display: flex;
        min-width: 0;
        flex-direction: column;
    }
    .referral-stat {
        width: 100%;
    }
    .ma-summary__foot-item {
        flex-direction: column;
        height: auto;
        gap: 7px;
        padding: 7px 10px;
    }
}


@media (max-width: 1400px) {
    .sidebar-toggle {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 8px;
        position: fixed;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        z-index: 901;
        writing-mode: vertical-rl;
        background: #071131;
        border: 2px solid #2c3955;
        border-left: none;
        border-radius: 0 6px 6px 0;
        padding: 16px 8px;
        cursor: pointer;
        font-family: "AlbertusBold";
        font-size: 12px;
        text-transform: uppercase;
        color: #cedee5;
        line-height: 1;
        letter-spacing: 0.05em;
        box-shadow: 3px 0 12px rgba(0,0,0,.6);
        transition: background .2s ease, left .35s cubic-bezier(.4,0,.2,1);
    }
    .sidebar-toggle:hover {
        background: #0d1c4a;
        color: #fff;
    }
    .sidebar-toggle svg {
        flex-shrink: 0;
    }

    .sidebar-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,.55);
        z-index: 899;
        opacity: 0;
        transition: opacity .35s ease;
        cursor: pointer;
    }
    .sidebar-overlay.visible {
        display: block;
        opacity: 1;
    }

    .sidebar-wrap {
        position: fixed;
        top: 0;
        left: 0;
        height: 100%;
        width: min(300px, 86vw);
        z-index: 900;
        transform: translateX(-110%);
        transition: transform .35s cubic-bezier(.4,0,.2,1);
    }
    .sidebar-wrap.sidebar-open {
        transform: translateX(0);
    }
    .sidebar-wrap .sidebar {
        position: relative;
        top: 0;
        height: 100%;
        max-height: 100%;
        padding-top: 94px;
        border-radius: 0;
        overflow-y: auto;
        scrollbar-width: thin;
        scrollbar-color: #1a2a5d transparent;
    }

    .ma-page section.welcome .container {
        flex-direction: column;
        padding: 2em;
    }
    .ma__main {
        width: 100%;
        max-width: 100%;
    }
}

@media(max-width: 1100px) {
    .ma-page section.welcome {
        padding: 0;
    }
    .ma-page section.welcome {
        min-height: calc(100dvh - 72px);
    }
    .form__checkbox {
        align-items: flex-end;
    }
}

@media(max-width: 940px) {
    .ma__main {
        flex-direction: column;
        gap: 0;
    }  
    .ma__main-block {
        width: 100%;
    }
    .ma__main-block:nth-child(2) {
        max-width: unset;
        margin-left: 0;
    }
    .ma__main-block:nth-child(2)::after {
        /* left: 0;
        top: -38px;
        width: 100%;
        height: 1px; */
        display: none;
    }
    .vote-stats {
        display: flex;
        flex-wrap: wrap;
    }
    .vote-stat {
        min-width: 300px;
        height: 54px;
    }
}
@media(max-width: 800px) {
    .ma-table-wrap__wrap {
        width: 100%;
        overflow-x: auto;
        scrollbar-color: #1a2a5d transparent;
    }
    .history-table {
        min-width: 685px;
    }
}
@media(max-width: 560px) {
    .ma__main {
        padding: 10px;
    }
    .ma-page section.welcome .container {
        padding: 1em;
    }
    .ma__main-block:nth-child(2) {
        padding: 15px;
    }
    .ma-banner {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        gap: 10px;
    }
    .ma-banner__body {
        align-items: center;
        gap: 5px;
    }
    .fd-old-wrap {
        order: 4;
    }
    .vote-stat {
        min-width: inherit;
        width: 100%;
    }
    .ma-table-head, .ma-tr {
        grid-template-columns: 1fr 1fr 1fr;
    }
    .acc-stats {
        display: flex;
        flex-direction: column;
    }
    .acc-stat {
        width: 100%;
    }
    .ma__side-field__button.large {
        width: 80px;
    }
    .ma-table-wrap:not(.history-table) {
        min-width: 440px;
    }
    .ma-form {
        padding: 12px;
    }
}

/* SCROLL REVEAL */
.reveal,
.reveal_stagger > * {
    opacity: 0;
    transform: translateY(40px);
}
@keyframes revealUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes revealUp2 {
    from {
        opacity: 0;
        transform: translate(var(--x, 0), 40px);
    }
    to {
        opacity: 1;
        transform: translate(var(--x, 0), 0);
    }
}
.about__features.reveal_stagger_visible > * {
    animation: revealUp2 0.7s cubic-bezier(.2, .65, .25, 1) forwards;
}
.reveal_visible {
    animation: revealUp 0.8s cubic-bezier(.2, .65, .25, 1) forwards;
}
.reveal_stagger_visible > * {
    animation: revealUp 0.7s cubic-bezier(.2, .65, .25, 1) forwards;
}
.reveal_stagger > *:nth-child(1)  { animation-delay: 0.00s; }
.reveal_stagger > *:nth-child(2)  { animation-delay: 0.12s; }
.reveal_stagger > *:nth-child(3)  { animation-delay: 0.24s; }
.reveal_stagger > *:nth-child(4)  { animation-delay: 0.36s; }
.reveal_stagger > *:nth-child(5)  { animation-delay: 0.48s; }
.reveal_stagger > *:nth-child(6)  { animation-delay: 0.60s; }
.reveal_stagger > *:nth-child(7)  { animation-delay: 0.72s; }
.reveal_stagger > *:nth-child(8)  { animation-delay: 0.84s; }
.reveal_stagger > *:nth-child(9)  { animation-delay: 0.96s; }
.reveal_stagger > *:nth-child(10) { animation-delay: 1.08s; }
.reveal_stagger > *:nth-child(11) { animation-delay: 1.20s; }
.reveal_stagger > *:nth-child(12) { animation-delay: 1.32s; }
.reveal_stagger > *:nth-child(13) { animation-delay: 1.44s; }
.reveal_stagger > *:nth-child(14) { animation-delay: 1.56s; }
.reveal_stagger > *:nth-child(15) { animation-delay: 1.68s; }
.reveal_stagger > *:nth-child(16) { animation-delay: 1.80s; }
.reveal_stagger > *:nth-child(17) { animation-delay: 1.92s; }
.reveal_stagger > *:nth-child(18) { animation-delay: 2.04s; }
.reveal_stagger > *:nth-child(19) { animation-delay: 2.16s; }
.reveal_stagger > *:nth-child(20) { animation-delay: 2.28s; }

/* ACCOUNT DROPDOWN */
.ma__account-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 32px;
    cursor: pointer;
    user-select: none;
    padding: 24px 32px;
    background: transparent;
    border: 2px solid #131922;
    transition: all .2s ease;
    border-radius: 4px;
}
.ma__account {
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 4px;
}
.ma__account-wrapper:hover,
.ma__account-wrapper.open {
    background: rgba(98, 190, 255, 0.08);
    border-color: rgba(98, 190, 255, 0.2);
}
.ma__account-icon {
    width: 16px;
    flex-shrink: 0;
}
.ma__account-icon img {
    width: 100%;
}
.ma__account-name {
    color: #fff;
    font-size: 18px;
    white-space: nowrap;
    line-height: 1;
    text-transform: none;
    font-family: "Manrope";
}
.ma__account-arrow {
    width: 10px;
    height: 6px;
    transition: all .2s ease;
    flex-shrink: 0;
}
.ma__account-arrow img {
    width: 100%;
}
.ma__account-arrow img {
    width: 10px;
    opacity: 1;
    transition: opacity .2s ease;
}
.ma__account-wrapper.open .ma__account-arrow {
    transform: rotate(180deg);
}
.ma__account-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 200px;
    background: #071131;
    border: 1px solid #1a2d6b;
    border-radius: 4px;
    overflow: hidden;
    z-index: 1100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all .2s ease;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(98,190,255,0.04);
    backdrop-filter: blur(12px);
}
.ma__account-wrapper.open .ma__account-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.ma__dropdown-list {
    padding: 6px 0;
}
.ma__dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 11px 18px;
    color: #8a9bb8;
    font-size: 14px;
    font-family: inherit;
    text-align: left;
    line-height: inherit;
    background: none;
    border: none;
    appearance: none;
    -webkit-appearance: none;
    transition: all .2s ease;
    cursor: pointer;
    text-decoration: none;
}
.ma__dropdown-item:hover {
    background: rgba(98,190,255,0.07);
    color: #e8e8e8;
}
.ma__dropdown-item-icon {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}
.ma__dropdown-item-icon img {
    width: 100%;
}
.ma__dropdown-divider {
    height: 1px;
    background: #111e4a;
    margin: 4px 0;
}
.ma__dropdown-item.logout {
    color: #e05c5c;
}
.ma__dropdown-item.logout:hover {
    background: rgba(224, 92, 92, 0.08);
    color: #ff7070;
}
@media(max-width: 1920px) {
    .ma__account-wrapper {
        gap: 25px;
        padding: 19px 25px;
    }
    .ma__account {
        gap: 16px;
    }
    .ma__account-icon {
        width: 13px;
    }
    .ma__account-name {
        font-size: 14px;
    }
    .ma__account-arrow {
        width: 8px;
        height: 5px;
    }
    .ma__dropdown-item {
        gap: 9px;
        padding: 9px 14px;
        font-size: 12px;
    }
    .ma__dropdown-item-icon, .ma__dropdown-item-icon svg {
        width: 11px;
        height: 11px;
    }
    .mobile__langs {
        gap: 15px;
    }
    .mobile__langs .swap-lang-item {
        width: max-content;;
    }
    .ma-page .swap-lang-wrap {
        display: none;
    }
}
@media(max-width: 560px) {
    .ma__account-wrapper {
        gap: 16px;
        padding: 14px;
    }
    .section-title {
        font-size: 20px;
    }
}

section.text {
    padding-bottom: 100px;
    padding-top: calc(100px + 140px);
    background-size: cover;
    border-radius: 0 0 60px 60px;
    z-index: 3;
    padding-bottom: 130px;
}
section.text {
    margin-top: -50px;
    background-size: cover;
    border-radius: 0 0 60px 60px;
    padding-top: calc(160px + 50px);
    z-index: 2;
}
section.text .container {
    text-align: left;
}
section.text .section-desc {
    max-width: 1710px;
}
section.text::after, section.text::before {
    display: none;
}
