:root {
    --color-body-background: #0C2142;
    --font-size: 24px;
    --color: #80A3CC;
    --color-light: #D7ECFF;
    --color-selection: #B8D6F8;
    --color-hover: #BFFFC6;
    --color-link: #62D0FF;
    --color-footer: #486082;
    --margin: 50px;
    --radius: 0;
    --color-white: #fff;
    --color-black: #000;
    --color-half-black: rgba(0,0,0,.5);
    --color-light-black: rgba(0,0,0,.7);
}

body {
    background-color: var(--color-body-background);
    font-family: 'PT Sans', sans-serif;
    font-size: var(--font-size);
    color: var(--color);
    line-height: normal;
}

a {
    color: var(--color-link);
    text-decoration: none;
    transition: color .3s;
}

a[href]:hover {
    color: var(--color-hover);
}

input, textarea {
    -webkit-appearance: unset;
    -webkit-box-shadow: none;
    background: 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    color: var(--color);
    outline: none;
}

.icon {
    mask-size: cover;
    mask-repeat: no-repeat;
    -webkit-mask-size: cover;
    -webkit-mask-repeat: no-repeat;
    display: inline-block;
    background: var(--color-link);
    transition: background .3s;
}

.icon_place {
    margin-right: 5px;
    width: 21px;
    height: 21px;
    mask-image: url(../images/icoOM03.svg);
    -webkit-mask-image: url(../images/icoOM03.svg);
}

.icon_more {
    margin-left: 13px;
    width: 34px;
    height: 34px;
    mask-image: url(../images/icoOM02.svg);
    -webkit-mask-image: url(../images/icoOM02.svg);
}

a:hover > .icon {
    background: var(--color-hover);
}

.page_background {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    min-height: 940px;
    height: 100%;
    overflow: hidden;
}

.page_background.animate {
    opacity: 0;
    transition: 1s;
}

.page_background.animate.active {
    opacity: 1;
}

.page_background img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    min-width: 100%;
    min-height: 100%;
    height: auto;
    width: auto;
}

.page_background_gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    min-height: 100%;
    background: linear-gradient(0deg, var(--color-body-background) 50%, transparent 100%);
}

.wrap {
    margin: 0 auto;
    max-width: 1500px;
    position: relative;
}

.wrap_mini {
    margin: 0 auto;
    max-width: 1250px;
}

.header {
    height: 80px;
    background: linear-gradient(180deg, #142643 0%, rgba(20, 38, 67, 0.2) 100%);
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 100;
}

.header + * {
    margin-top: 80px;
}

.header .wrap {
    height: 80px;
    display: flex;
    align-items: center;
}

.header_logo {
    margin-right: auto;
    width: 266px;
    transition: opacity .3s;
}

.header_logo.animate {
    opacity: 0;
}

.header_logo.animate.show {
    opacity: 1;
}

.header_logo img {
    display: block;
    width: 100%;
}

.header_menu {
    display: flex;
}

.header_menu_item {
    color: var(--color-hover);
    margin-right: var(--margin);
    font-size: 20px;
    line-height: 240%;
    text-decoration: none;
    user-select: none;
    cursor: default;
    position: relative;
    transition: color .3s;
}

.header_menu_item[href] {
    color: var(--color-link);
    cursor: pointer;
}

.header_menu_item.active,
.header_menu_item.current,
.header_menu_item[href].active,
.header_menu_item[href].current,
.header_menu_item[href]:hover {
    color: var(--color-hover);
}

.footer {
    margin-top: 165px;
    position: relative;
}

.footer_logo {
    width: 100%;
    max-width: 313px;
}

.footer p {
    margin: .5em 0;
    color: var(--color-footer);
}

.footer a {
    margin-right: 35px;
    color: var(--color-link);
    text-decoration: underline;
}

.footer a:hover {

}

.footer_address {
    color: var(--color-selection);
}

.footer .wrap {
    position: relative;
}

.footer_cols {
    display: flex;
}

.footer .wrap:before {
    content: '';
    background: var(--color-link);
    height: 1px;
    opacity: .2;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
}

.footer_col {

}

.footer_col:last-child {
    margin-left: auto;
}

.footer_row_center,
.footer_row {
    margin: 80px 0px 80px 167px;
}

.footer_row_center {
    margin-top: 0;
    text-align: center;
}

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

.page_block.animate {
    opacity: .1;
    transition: .4s;
    transform: translateY(40px);
}

.page_block.animate.active {
    opacity: 1;
    transform: translateY(0);
}

.main_welcome {
    margin-bottom: 110px;
    /*min-height: 1240px;*/
}

.main_welcome_text {
    padding-top: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.main_welcome_logo {
    max-width: 626px;
	margin-top: 50px;
    margin-bottom: 150px;
}

.main_welcome_logo img {
    width: 100%;
    display: block;
}

.main_welcome_title {
    max-width: 880px;
    text-align: center;
    color: var(--color-selection);
    font-size: 34px;
    font-weight: 400;
    line-height: normal;
}

.main_welcome_more {
    color: var(--color-link);
    font-size: 22px;
    font-weight: 700;
    line-height: 34px;
    display: flex;
    justify-content: center;
}

.main_welcome_more img {
    margin-left: 13px;
}

.main_welcome_value {
    margin-top: 125px;
    background: linear-gradient(180deg, #C6ABFF 0%, #60A5FF 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 72px;
    font-weight: 400;
    display: flex;
    justify-content: center;
    white-space: nowrap;
}

.main_welcome_value img {
    margin-right: 22px;
}

.main_welcome_blocks {
    display: flex;
}

.main_welcome_block {
    margin-left: 27px;
    padding: 0 50px;
    min-width: calc((100% / 3) - 18px);
    max-width: 500px;
    min-height: 400px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    box-sizing: border-box;
    background-repeat: no-repeat;
    background-position: center top;
    position: relative;
    overflow: hidden;
}

.main_welcome_block:first-child {
    margin-left: 0;
}

.main_welcome_block.animate {
    opacity: 0;
    transform: translateY(50px);
    transition: .5s ease-out;
}

.main_welcome_block.animate.active {
    opacity: 1;
    transform: translateY(0);
}

.main_welcome_block.animate:nth-child(1) {
    transition-delay: .1s;
}

.main_welcome_block.animate:nth-child(2) {
    transition-delay: .2s;
}

.main_welcome_block.animate:nth-child(3) {
    transition-delay: .3s;
}

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

.main_welcome_block p {
    position: relative;
}

.main_welcome_block strong {
    color: var(--color-selection);
}

/*.main_welcome_block:nth-child(1){
    background-image: url(../images/bg_block01.png);
    @supports (background-image: url(../images/bg_block01.webp)) {
        background-image: url(../images/bg_block01.webp)
    }
}

.main_welcome_block:nth-child(2){
    background-image: url(../images/bg_block02.png);
    @supports (background-image: url(../images/bg_block02.webp)) {
        background-image: url(../images/bg_block02.webp)
    }
}

.main_welcome_block:nth-child(3){
    background-image: url(../images/bg_block03.png);
    @supports (background-image: url(../images/bg_block03.webp)) {
        background-image: url(../images/bg_block03.webp)
    }
}*/

.main_game {
    background-repeat: no-repeat;
    background-position: center;
    background-image: url(../images/bgOM02.jpg);

    @supports (background-image: url(../images/bgOM02.webp)) {
        background-image: url(../images/bgOM02.webp)
    }
}

.main_game_coming_soon {
    margin: 0 auto;
    max-width: 439px;
}

.main_game_coming_soon img {
    width: 100%;
    display: block;
}

.main_game_content {
    padding-top: 65px;
    max-width: 900px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.main_game_logo {
    max-width: 455px;
}

.main_game_logo img {
    width: 100%;
    display: block;
}

.main_game h2 {
    font-size: 34px;
    font-weight: 400;
}

.main_game h2 span {
    color: var(--color-selection);
}

.main_game_picture1 {
    max-width: 620px;
}

.main_game_picture1.animate {
    transition-duration: .5s;
    transition-delay: .2s;
    transform: translateX(-20px);
    opacity: 0;
}

.main_game_picture1.animate.active {
    transform: translateX(0);
    opacity: 1;
}

.main_game_picture2 {
    margin: -180px auto 60px;
    max-width: 392px;
}

.main_game_picture2.animate {
    transition-duration: .5s;
    transition-delay: .2s;
    transform: translateX(20px);
    opacity: 0;
}

.main_game_picture2.animate.active {
    transform: translateX(0);
    opacity: 1;
}

.main_game_picture1 img,
.main_game_picture2 img {
    width: 100%;
    display: block;
}

.main_game_more {
    color: var(--color-link);
    font-size: 22px;
    font-weight: 700;
    line-height: 34px;
    display: flex;
    justify-content: center;
}

.main_game_more img {
    margin-left: 13px;
}

.page_title {
    padding: 86px 0 15px;
    text-align: center;
}

.page_title h1 {
    margin: 0;
    color: var(--color-selection);
    font-size: calc(var(--font-size) * 3);
    font-weight: 400;
    line-height: normal;
}

.page_inner {
    padding: calc(var(--margin) * 2) calc(var(--margin) * 2.2);
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(23, 52, 98, .4) 0%, rgba(12, 33, 66, 0) 100%);
}

.page_inner > * {
    margin-top: 0;
}

.page_about {

}

.page_about h3:first-child {
    margin-top: 0;
}

.page_about h3 {
    margin-top: 60px;
    margin-bottom: 0;
    font-size: calc(var(--font-size) + 14px);
    font-weight: 400;
    line-height: normal;
    color: var(--color-selection)
}

.page_about p {
    margin: 0 0 1em;
    font-size: calc(var(--font-size) + 4px);
}

.page_about {

}

.page_about_images {
    margin-top: 200px;
    min-height: 800px;
    position: relative;
}

.page_about_image {
    position: absolute;
}

.page_about_image img {
    width: 100%;
    border-radius: 50px;
}

.page_about_image1 {
    left: calc((var(--margin) * 2) * -1);
    top: 0;
    width: 684px;
    opacity: .5;
}

.page_about_image2 {
    right: calc((var(--margin) * 2) * -1);
    top: 120px;
    width: 684px;
    opacity: .5;
}

.page_about_image3 {
    margin: 0 auto;
    width: 914px;
    left: 0;
    right: 0;
    bottom: 0;
}

.page_about_image.animate {
    opacity: 0;
    transition-duration: .5s;
}

.page_about_image1.animate {
    transform: translateX(-30px);
    transition-delay: .1s;
}

.page_about_image2.animate {
    transform: translateX(30px);
    transition-delay: .2s;
}

.page_about_image3.animate {
    transform: translateY(30px);
    transition-delay: .3s;
}

.page_about_image.animate.active {
    opacity: 1;
    transform: translate(0);
}

.page_about_image1.animate.active,
.page_about_image2.animate.active {
    opacity: .5;
}

.page_text {

}

.page_text a {
    color: inherit;
    text-decoration: underline;
}

.page_text h3 {
    margin: 1.5em 0 .8em;
    font-weight: 400;
    color: var(--color-selection);
}

.page_text .date {
    font-size: .8em;
}

.page_contacts {

}

.page_contacts_col {

}

.page_contacts_col:nth-child(1) {
    padding-left: 38px;
}

.page_contacts_col:nth-child(2) {
    margin-left: auto;
}

.page_contacts_col:nth-child(2) img {
    margin-top: -30px;
    display: block;
}

.page_contacts_row {
    margin-bottom: 47px;
    position: relative;
}

.page_contacts h3 {
    margin: 0;
    font-size: calc(var(--font-size) * 1.8);
    font-weight: 400;
    color: var(--color-selection);
}

.page_contacts h4 {
    margin: 0;
    font-size: calc(var(--font-size) * 1.5);
    font-weight: 400;
    color: var(--color-selection);
}

.page_contacts p {
    margin: 0;
}

.page_contacts_icon {
    left: -70px;
    position: absolute;
}

.page_contacts .page_inner {
    display: flex;
}

.game_welcome {
    padding-bottom: 350px;
    position: relative;
}

.game_logo {
    margin: 75px 0 60px;
    max-width: 432px;
}

.game_logo img {
    width: 100%;
}

.game_welcome h1 {
    margin: 57px 0;
    max-width: 583px;
    font-size: calc(var(--font-size) * 1.5);
    font-weight: 400;
    line-height: calc(var(--font-size) * 1.7);
    color: var(--color-selection);
}

.game_welcome h1 span {
    color: var(--color-light);
}

.game_welcome p {
    max-width: 950px;
    font-size: calc(var(--font-size) + 2);
}

.game_welcome p span {
    color: var(--color-selection);
}

.game_welcome:before {
    content: '';
    left: 0;
    right: 0;
    bottom: 0;
    position: absolute;
    height: 250px;
    /*background: linear-gradient(0deg, var(--color-body-background) 0%, transparent 100%);*/
    background: linear-gradient(0deg, rgba(12, 33, 66, .7) 0%, transparent 100%);
}

.game_features {
    margin: -50px 0 0;
    position: relative;
    /*background: linear-gradient(0deg, var(--color-body-background) 0%, rgba(12, 33, 66, .7) 100%);*/
    /*background: var(--color-body-background);*/
}

.game_features .page_title {
    padding-top: 0;
}

.game_features .page_title.animate {
    transition: .5s .2s;
    opacity: 0;
    transform: translateY(30px);
}

.game_features .page_title.animate.active {
    transform: translateY(0);
    opacity: 1;
}

.game_features_background {
    margin-top: 30px;
    text-align: center;
    transform: rotate(-2deg);
}

.game_features_background.animate {
    transition: .5s .3s;
    opacity: 0;
    transform: translateY(50px);
}

.game_features_background.animate.active {
    transform: translateY(0);
    opacity: 1;
}

.game_features .page_inner {
    margin-top: -350px;
    background: linear-gradient(180deg, rgba(23, 52, 98, .8) 0%, rgba(12, 33, 66, 0.00) 100%);
}

.game_text_block {
    display: flex;
    position: relative;
}

.game_text_icon {
    padding-right: 20px;
}

.game_text_icon img {
    width: 75px;
}

.game_text {

}

.game_text h3 {
    margin: 0;
    font-size: calc(var(--font-size) * 1.5);
    font-weight: 400;
    color: var(--color-selection);
}

.game_text p {
    margin: .8em 0;
    font-size: calc(var(--font-size) + 2);
}

.game_text span {
    color: var(--color-selection);
}

.game_text_block1 {
    max-width: 85%;
}

.game_text_block2 {
    margin: 130px 0;
    height: 335px;
    position: relative;
    display: flex;
    align-items: center;

}

.game_text_block2 .game_text_block {
    width: 65%;
    z-index: 1;
}

.game_text_block2_image {
    width: 50%;
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
}

.game_text_block2_image.animate {
    transform: translate(50px, -50%);
    transition-duration: .5s;
    transition-delay: .5s;
    opacity: 0;
}

.game_text_block2_image.animate.active {
    transform: translate(0, -50%);
    opacity: 1;
}

.game_image_blocks {
    height: 780px;
    position: relative;
}

.game_image_blocks .game_text_block {
    margin: 25px 0 15px;
}

.game_text_block3 {
    max-width: 696px;
    position: absolute;
    left: calc(var(--margin) * -1);
    z-index: 2;
}

.game_text_block4 {
    max-width: 600px;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: 320px;
    z-index: 1;
    display: flex;
    flex-direction: column-reverse;
}

.game_text_block5 {
    max-width: 600px;
    position: absolute;
    right: calc(var(--margin) * -1);
    top: 150px;
}

.game_text_block3.animate,
.game_text_block4.animate,
.game_text_block5.animate {
    opacity: 0;
    transition-duration: .5s;
}

.game_text_block3.animate {
    transform: translateX(-50px);
    transition-delay: .1s;
}

.game_text_block4.animate {
    transform: translateY(30px);
    transition-delay: .2s;
}

.game_text_block5.animate {
    transform: translateX(50px);
    transition-delay: .3s;
}

.game_text_block3.animate.active,
.game_text_block4.animate.active,
.game_text_block5.animate.active {
    transform: translate(0);
    opacity: 1;
}

.game_text_block3_image img,
.game_text_block4_image img,
.game_text_block5_image img {
    max-width: 100%;
    border-radius: 50px;
    border: 4px solid #224D71;
    display: block;
}

.game_image_blocks .game_text {
    line-height: 140%;
}

.game_image_blocks .game_text p {
    margin: 0;
}

.game_features_pvp {
    margin-bottom: 70px;
    height: 500px;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url(../images/bgOM10.png);

    @supports (background-image: url(../images/bgOM10.webp)) {
        background-image: url(../images/bgOM10.webp)
    }

    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
    padding-top: 40px;
}

.game_features_pvp.animate {
    opacity: 0;
    transform: translateY(30px);
    transition: .5s;
}

.game_features_pvp.animate.active {
    opacity: 1;
    transform: translateY(0);
}

.game_features_pvp_image {
    max-width: 350px;
}

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

.game_features_pvp p {
    margin: 0;
    max-width: 775px;
    color: var(--color-selection);
    font-size: calc(var(--font-size) * 1.6);
    font-weight: 400;
    line-height: normal;
    text-align: center;
}

.game_features_pvp span {
    color: var(--color-light);
}

.game_text_block6 {
    max-width: 85%;
}

.game_text_block7 {
    max-width: 85%;
}

.game_features_screens {
    margin: 70px 0 240px;
    display: flex;
    gap: 50px;
    max-width: 100%;
    justify-content: center;
}

.game_features_screens img {
    border-radius: 50px;
    border: 4px solid #224D71;
    display: block;
}

.game_features_screens.animate picture {
    opacity: 0;
    transition-duration: .5s;
    transition-delay: .2s;
}

.game_features_screens.animate picture:nth-child(1) {
    transform: translateX(-50px);
}

.game_features_screens.animate picture:nth-child(2) {
    transform: translateX(50px);
}

.game_features_screens.animate.active picture {
    opacity: 1;
    transform: translate(0);
}

.game_features_loot {
    background-repeat: no-repeat;
    background-position: center 16%;
    background-image: url(../images/bgOM08.jpg);

    @supports (background-image: url(../images/bgOM08.webp)) {
        background-image: url(../images/bgOM08.webp)
    }
}

.game_features_loot_image {
    margin-bottom: 70px;
    text-align: center;
}

.game_features_loot_image img {
    max-width: 100%;
    border-radius: 50px;
    border: 4px solid #224D71;
}

.game_features_loot_image.animate {
    opacity: 0;
    transition: .5s;
    transform: translateY(50px);
}

.game_features_loot_image.animate.active {
    opacity: 1;
    transform: translateY(0);
}

.game_text_block7 {
    margin-bottom: 666px;
}

.game_text_block7 .game_text p {
    margin: 1.5em 0;
}

.game_text_block8 {
    margin: 0 auto 200px;
    max-width: 1030px;
}

.game_text_block8 p {
    margin: 0;
}

.game_coming_soon {
    margin: 0 auto 47px;
    max-width: 720px;
}

.game_coming_soon img {
    width: 100%;
    display: block;
}

.game_links {
    display: flex;
    gap: 47px;
    justify-content: center;
}

.game_link {
    opacity: .25;
}

.game_link[href] {
    opacity: 1;
}

.footer_social_icon_row {
	display: flex;
}
	
.footer_social_icons {
	margin: 0 auto 20px;
}

@media (hover: hover) {

}

@media screen
{
	.footer_social_icon_row {
		display: inline-flex;
	}
}

@media screen and (max-width: 1600px) {
    .wrap {
        margin: 0 30px;
    }

    .footer_row_center,
    .footer_row {
        margin: 80px 80px;
    }

    .footer_row_center {
        margin-top: 0;
    }

    .page_about_image1 {
        width: 600px;
    }

    .page_about_image2 {
        width: 580px;
    }
}

@media screen and (max-width: 1280px) {
    :root {
        --font-size: 16px;
        --margin: 20px;
    }

    .header {
        position: fixed;
        z-index: 1;
        width: 100vw;
        height: 57px;
        transition: opacity .4s;
    }

    .header_logo {
        max-width: 110px;
        max-height: 38.84px;
    }

    .header_logo img {
        width: 100%;
    }

    .header_menu_trigger {
        min-width: 30px;
        width: 30px;
        height: 26px;
        transform: rotate(0deg);
        transition: .3s ease-in-out;
        cursor: pointer;
        z-index: 4;
        position: fixed;
        right: 20px;
        top: 18px;
    }

    .header_menu_trigger span {
        display: block;
        position: absolute;
        height: 3px;
        width: 100%;
        background: var(--color);
        border-radius: 2px;
        opacity: 1;
        left: 0;
        transform: rotate(0deg);
        transition: .25s ease-in-out;
        pointer-events: none;
    }

    .header_menu_trigger span:nth-child(1) {
        top: 0;
        transform-origin: left center;
    }

    .header_menu_trigger span:nth-child(2) {
        top: 10px;
        transform-origin: left center;
    }

    .header_menu_trigger span:nth-child(3) {
        top: 20px;
        transform-origin: left center;
    }

    .show_menu .header_menu_trigger span {
        pointer-events: auto;
        background: var(--color-hover);
    }

    .show_menu .header_menu_trigger span:nth-child(1) {
        transform: rotate(45deg);
        top: 0;
        left: 4px;
    }

    .show_menu .header_menu_trigger span:nth-child(2) {
        width: 0;
        opacity: 0;
    }

    .show_menu .header_menu_trigger span:nth-child(3) {
        transform: rotate(-45deg);
        top: 21px;
        left: 4px;
    }

    .header .wrap {
        height: 57px;
    }

    .header_menu {
        margin: 0;
        padding: 0 30px;
        width: 100vw;
        height: 100dvh;
        left: -30px;
        top: 57px;
        position: fixed;
        /*background: rgba(20, 38, 67, 0.96);*/
        transition: transform .3s, opacity .3s;
        box-sizing: border-box;
        opacity: 0;
        /*transform: translateY(-20px);*/
        pointer-events: none;
        display: block;
        z-index: 3;
        overflow: auto;
    }

    .show_menu .header_menu {
        opacity: 1;
        pointer-events: auto;
        /*transform: translateY(0);*/
        position: absolute;
        /*backdrop-filter: blur(5px);*/
        background: rgba(20, 38, 67, .9);
    }

    .show_menu .header {
        background: rgba(20, 38, 67, .9);
        /*backdrop-filter: blur(5px);*/
    }

    .header_menu_item {
        display: block;
        margin: 0;
        padding: 0;
        min-height: 60px;
        line-height: 60px;
        font-size: 19px;
        font-weight: 600;
    }

    .main_welcome_block {
        padding: 25px;
        min-height: auto;
    }

    .main_game {
        background-position: 60% center;
    }

    .page_about_image img {
        border-radius: 20px;
    }

    .page_about_images {
        min-height: auto;
        margin-top: 100px;
    }

    .page_about_image1,
    .page_about_image2,
    .page_about_image3 {
        margin: 0 0 30px;
        position: static;
        width: auto;
        opacity: 1;
    }

    .game_welcome {
        padding-bottom: 120px;
    }

    .game_welcome:before {
        display: none;
    }

    .game_welcome .wrap {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .game_welcome h1 {
        max-width: 100%;
    }

    .game_text_block1 {
        margin-bottom: 30px;
        max-width: 100%;
    }

    .game_text_block2 {
        height: auto;
        margin: 0;
        flex-direction: column;
    }

    .game_text_block2 .game_text_block {
        position: static;
        width: 100%;
    }

    .game_text_block2_image {
        width: 100%;
        transform: none;
        position: static;
        text-align: center;
    }

    .game_text_block2_image img {
        max-width: 100%;
    }

    .game_text_block2_image.animate {
        transform: translate(50px, 0);
    }

    .game_text_block2_image.animate.active {
        transform: translate(0);
    }

    .game_image_blocks {
        height: auto;
    }

    .game_image_blocks .game_text_block {
        align-items: center;
    }

    .game_text_block3 {
        max-width: 100%;
        position: static;
    }

    .game_text_block4 {
        max-width: 100%;
        position: static;
        display: block;
    }

    .game_text_block5 {
        max-width: 100%;
        position: static;
    }

    .game_text_block6,
    .game_text_block7 {
        max-width: 100%;
    }

    .game_text_block3_image,
    .game_text_block4_image,
    .game_text_block5_image {
        text-align: center;
    }

    .game_text_block3_image img,
    .game_text_block4_image img,
    .game_text_block5_image img {
        display: inline-block;
    }

    .game_features_pvp {
        padding: 0;
        justify-content: center;
    }

    .game_links {
        gap: 2%;
    }

    .game_link img {
        width: 100%;
    }
}

@media screen and (max-width: 1000px) {
    .page_contacts .page_inner {
        display: block;
    }

    .page_contacts_col:nth-child(2) {
        text-align: center;
    }

    .page_contacts_col:nth-child(2) img {
        max-width: 100%;
        display: inline-block;
    }

    .footer .wrap {
        text-align: center;
    }

    .footer_cols {
        flex-direction: column;
        justify-content: center;
    }

    .footer_row_center,
    .footer_row {
        margin: 20px 0 20px;
    }

    .footer_col:last-child {
        margin-left: 0;
    }

    .footer a {
        margin: 0 5px;
    }

    .game_features_screens {
        margin: 50px var(--margin) 30px;
        display: block;
        text-align: center;
    }

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

    .game_features_screens img {
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 850px) {
    .main_welcome_value {
        font-size: 50px;
        line-height: 72px;
    }

    .main_welcome_logo {
        margin-bottom: 20%;
    }

    .main_welcome_title {
        font-size: 22px;
    }

    .main_game_picture2 {
        margin-top: 0;
    }

    .main_welcome_blocks {
        flex-direction: column;
    }

    .main_welcome_block {
        width: 100%;
        max-width: 100%;
        margin: 0 0 20px;
    }

    .main_welcome_block img {
        object-fit: contain;
    }

    .page_inner {
        padding: var(--margin);
    }

    .page_contacts_icon {
        width: 30px;
        left: -40px;
        top: 5px;
    }

    .game_text_block7 {
        margin-bottom: 800px;
    }

    .game_text_block8 {
        margin-bottom: 100px;
    }

    .game_text_block8,
    .game_features_loot_image {
        margin-bottom: 40px;
    }

    .game_features_screens img,
    .game_features_loot_image img,
    .game_text_block3_image img, .game_text_block4_image img, .game_text_block5_image img {
        border-radius: 20px;
    }

    .footer {
        margin-top: 100px;
    }
}

@media screen and (max-width: 500px) {
    :root {
        --font-size: 14px;
    }

    .game_text_icon img {
        width: 30px;
    }

    .game_text_icon {
        padding-right: 5px;
    }

    .game_features_pvp {
        margin: 30px 0 50px;
        height: auto;
        background: none;
    }

    .game_features_pvp p {
        font-size: calc(var(--font-size) * 1.5);
    }

    .game_logo {
        margin: 30px 0;
    }

    .game_welcome h1 {
        margin: 0 0 30px;
    }

    .game_features_background {
        display: none;
    }

    .game_features .page_inner {
        margin-top: 0
    }

    .game_text_block7 .game_text p {
        text-shadow: 1px 1px 1px var(--color-body-background);
    }

    .game_features_loot {
        background-position: center 30%;
    }

    .page_background.animate.active,
    .page_background {
        opacity: .5;
    }
}