* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    height: auto;
}

h2 {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin: 0
}

section {
    width: 100%
}

.display-flex {
    display: flex;
    flex-wrap: wrap
}

.fixed-btn {
    position: fixed;
    width: 40px;
    height: 40px;
    border-radius: 20%
}

body {
    --bg: #1d2630;
    --color: #fff;
    --line-color: #333b44;
    --border-color: #dfdfdf;
    width: 100%;
    height: 100vh;
    background-color: rgb(27, 2, 29);
    font-family: Noto Sans, sans-serif;
    font-size: 16px;
    overflow-x: hidden;
}

body a {
    cursor: pointer
}

body a,
body a:active,
body a:focus,
body a:hover {
    text-decoration: none
}

body button {
    border: 0;
    box-shadow: none;
    cursor: pointer
}

body button,
body button:active,
body button:focus,
body button:hover {
    outline: none
}

body p {
    word-break: break-word
}

body li {
    list-style: none
}

video {
    cursor: pointer;
}

.mobile {
    display: none!important
}

#nav {
    width: 100%;
    height: 80px;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgb(31, 86, 131);
    transition: height .3s ease-in;
    z-index: 30
}

#navbar {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 1200px;
    height: 100%;
    margin: 0 auto
}

#navbar__brand {
    width: 165px;
    height: 40px
}

#navbar__brand img {
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-fit: contain;
    object-fit: contain
}

#navbar__brand img,
#navbar__brand img img {
    width: 100%;
    height: 100%;
    -o-object-position: center;
    object-position: center
}

#navbar__brand img img {
    -o-object-fit: cover;
    object-fit: cover
}

.nav__link {
    font-size: 18px;
    font-weight: 700;
    line-height: 80px;
    margin: 0 30px;
    color: #fff
}

.nav__link:first-of-type.active,
.nav__link:first-of-type:hover {
    color: #ff61b6
}

.nav__link:nth-of-type(2).active,
.nav__link:nth-of-type(2):hover {
    color: #8260d2
}

.nav__link:nth-of-type(3).active,
.nav__link:nth-of-type(3):hover {
    color: #65d1ff
}

#nav__account {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center
}

#nav__profile {
    color: #fff;
    font-size: 12px;
    text-align: right
}

#nav__langSelector {
    width: 28px;
    height: 28px;
    background-image: url(../images/common_sprites.png);
    background-position: -10px -174px;
    margin: 2px 18px 0;
    cursor: pointer;
    position: relative
}

#nav__langSelector.active #nav__langMenu {
    display: block
}

#nav__langMenu {
    display: none;
    width: 110px;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    position: absolute;
    top: 53px;
    right: 0;
    overflow: hidden
}

#nav__langMenu li {
    display: block;
    width: 100%;
    height: 50px;
    background: rgb(31, 86, 131);
    border-bottom: 1px solid rgba(154, 159, 165, .30196078431372547);
    color: #fff;
    font-size: 14px;
    padding: 15px 0 0 37px;
    position: relative
}

#nav__langMenu li:last-child {
    border: 0
}

#nav__langMenu li:after,
#nav__langMenu li:before {
    content: "";
    border-radius: 100%;
    position: absolute
}

#nav__langMenu li:before {
    width: 9px;
    height: 9px;
    border: 1.5px solid #fff;
    top: 19px;
    left: 17px
}

#nav__langMenu li:after {
    width: 8px;
    height: 8px;
    background-color: #fff;
    top: 21px;
    left: 19px
}

#nav__langMenu li.active:before,
#nav__langMenu li:hover:before {
    border-color: #ff61b6
}

#nav__langMenu li.active:after,
#nav__langMenu li:hover:after {
    background-color: #ff61b6
}

.nav--scroll #nav {
    height: 58px
}

.nav--scroll #navbar__brand {
    width: 140px;
    height: 32px
}

.nav--scroll #home__banner {
    margin-top: 58px
}

.nav--scroll #nav__langMenu {
    top: 42px
}

#btn__scrollTop {
    right: 20px;
    bottom: 150px;
    background-color: rgba(31, 86, 131, 0.5);
}

#btn__twitter {
    right: 20px;
    bottom: 90px;
    background-color: rgb(31, 86, 131);
    color: #ffffff;
    font-size: 20px;
}

#btn__scrollTop i:before {
    color: #ffffff;
    font-size: 30px
}

#btn__scrollTop:hover {
    background-color: rgb(31, 86, 131);
    color: #fff
}

.dis_none {
    display: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto
}

@media screen and (max-width:1299px) {
    .mobile {
        display: block!important
    }
    .pc {
        display: none!important
    }
    h2 {
        font-size: 16px
    }
    .container {
        width: 100%;
        padding: 25px 15px 30px
    }
    #nav {
        height: 58px
    }
    #navbar {
        width: 100%;
        padding: 0 15px
    }
    #navbar__brand {
        width: 120px;
        height: 28px;
        z-index: 40
    }
    #navbar__brand img,
    #navbar__brand img img {
        width: 100%;
        height: 100%;
        -o-object-fit: contain;
        object-fit: contain;
        -o-object-position: left;
        object-position: left
    }
    #nav__langSelector {
        margin: 0 12px
    }
    #nav__langMenu {
        width: 98px;
        top: 46px;
        right: 0
    }
    #nav__langMenu a:before,
    #nav__langMenu li:before {
        top: 14px;
        left: 15px
    }
    #nav__langMenu a:after,
    #nav__langMenu li:after {
        top: 16px;
        left: 17px
    }
}


/*-----------section1----------*/

#game {
    background: url("../images/top_bg.jpg")no-repeat top center / cover;
    min-height: 100px;
    height: auto;
}

#sec1 {
    width: 100vw;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.top_logo {
    position: absolute;
    height: 300px;
    width: 300px;
    top: 12%;
    left: 50%;
    margin-left: -80px;
}

.top_logo img {
    width: 100%;
}

.top_left {
    position: absolute;
    width: 800px;
    height: auto;
    top: 8%;
    left: 50%;
    margin-left: -780px;
    display: block;
}

.top_right {
    position: absolute;
    width: 650px;
    height: auto;
    top: 12%;
    left: 50%;
    margin-left: 100px;
    display: block;
}

.top_character_m {
    display: none;
}

.top_character img {
    width: 100%;
}

.top_main {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 65%;
    width: 100%;
}

.top_content {
    width: 60%;
    display: flex;
    justify-content: center;
}

.top_content img {
    width: 80%;
}

.top_button {
    width: 40%;
}

.tp_button {
    margin-left: 100px;
    width: 100%;
    height: 100px;
    display: flex;
    justify-content: center;
}

.tp_button a {
    height: 100%;
    width: 40%;
    margin: 0 6%;
    max-width: 260px;
}

.down_btn_ft {
    display: flex;
    justify-content: center;
}

.down_btn_ft a {
    max-width: 260px;
    width: 40%;
    height: 100px;
    margin: 5% 10% 130px 10%;
    z-index: 10;
}

@media screen and (max-width:1400px) {
    .tp_button a,
    .down_btn_ft a {
        width: 46%;
    }
}

@media screen and (max-width:1200px) {
    .top_left {
        margin-left: -700px;
    }
    .top_right {
        margin-left: 0px;
    }
}

@media screen and (max-width:1023px) {
    .top_left {
        margin-left: -650px;
    }
    .top_right {
        margin-left: -100px;
    }
    .top_main {
        flex-wrap: wrap-reverse;
        top: 55%;
    }
    .top_content {
        width: 80%;
    }
    .top_content img {
        width: 100%;
    }
    .top_button {
        width: 90%;
    }
    .tp_button {
        margin-left: 0px;
    }
    .tp_button a,
    .down_btn_ft a {
        width: 26%;
    }
}

@media screen and (max-width:768px) {
    .top_main {
        top: 65%;
    }
    .top_character_m {
        display: block;
        width: 100%;
    }
    .top_character_m img {
        width: 100%;
    }
    .top_left,
    .top_right {
        display: none;
    }
    .top_content {
        width: 100%;
    }
    .top_logo {
        height: auto;
        width: 100%;
        top: 12%;
        left: 50%;
        margin-left: 15px;
    }
    .top_logo img {
        width: 40%;
    }
    .tp_button a,
    .down_btn_ft a {
        width: 50%;
    }
}


/*------------sec2-----------*/

#sec2 {
    width: 100vw;
    position: relative;
    overflow: hidden;
    background-color: #ffffff8f;
    box-shadow: 0px -10px 15px #ffffff8f;
}

.game_Introduction_pic {
    margin-top: 100px;
    position: relative;
    z-index: 1;
}

.game_left {
    position: absolute;
    left: -170px;
}

.game_right {
    position: absolute;
    right: -170px;
}

.game_Introduction {
    width: 90%;
    margin: 0 auto 100px auto;
}

.Game_Introduction_main {
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 2;
}

.Game_Introduction_main img {
    width: 80%;
}

@media screen and (max-width: 1300px) {
    .down_btn_ft {
        margin: 0;
        padding: 0 2%;
    }
}

@media screen and (max-width:992px) {
    .game_Introduction_pic {
        margin-top: 0;
        width: 100%;
    }
    .game_Introduction {
        width: 90%;
        margin: 0 auto;
    }
    .game_left {
        width: 50%;
        left: -15%;
        top: -10px;
    }
    .game_right {
        width: 52%;
        left: 68%;
        top: 15px;
    }
    .Game_Introduction_main img {
        width: 100%;
    }
    .down_btn_ft a {
        margin: 0;
    }
}


/*----slide------*/

.slider {
    padding-top: 30px;
}

#game__slide {
    width: 100%;
    height: 480px;
    position: relative;
    margin: 150px 0 20px 0;
}

#game__slide .slick-list,
#game__slide .slick-track {
    width: 970px!important;
    height: 100%;
    position: absolute!important;
    left: calc(100% - 970px);
    top: 0;
    transform: none!important
}

#game__slide picture,
#game__slide video {
    border-radius: 16px;
    opacity: 0
}

#game__slide picture img,
#game__slide video img {
    width: 100%;
    height: 100%;
    border-radius: 16px;
}

#game__slide picture.slick-current,
#game__slide video.slick-current {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 865px!important;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    z-index: 15;
    opacity: 1;
    transition-property: opacity, z-index;
    transition-duration: .7s;
    transition-timing-function: ease-in
}

#game__slide picture.slick-siblings,
#game__slide video.slick-siblings {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 821.75px!important;
    height: 95%;
    opacity: .2;
    z-index: 10;
    transition-property: opacity, z-index;
    transition-duration: .2s;
    transition-timing-function: ease-in
}

#game__slide picture.slick-siblings--prev,
#game__slide video.slick-siblings--prev {
    left: 0
}

#game__slide picture.slick-siblings--next,
#game__slide video.slick-siblings--next {
    right: 0
}

#game__slide picture:focus,
#game__slide video:focus {
    outline: 0
}

#game__slide .slick-arrow {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    background-color: #c4c6c7;
    font-size: 0;
    top: 35px;
    z-index: 15;
    position: absolute;
    top: 50%;
    transform: translateY(-50%)
}

#game__slide .slick-arrow:after {
    content: "";
    width: 12px;
    height: 12px;
    border: solid #1b232c;
    border-width: 5px 5px 0 0;
    border-radius: 4px;
    z-index: 15;
    position: absolute;
    top: 15px
}

#game__slide .slick-arrow:hover {
    opacity: .9
}

#game__slide .slick-prev {
    left: calc(100% - 982px);
    opacity: .7
}

#game__slide .slick-next {
    right: -10px;
    opacity: .7
}

.slick-dots {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: calc(100% - 970px);
    position: absolute;
    top: 0;
    left: 0;
    padding: 0;
    margin: 0
}

.slick-dots button {
    font-size: 0;
    background-color: transparent
}

.game__thumbnail {
    width: 160px!important;
    height: 88px;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 16px;
    margin: 0 15px 4.5px 0;
    opacity: .6!important;
    cursor: pointer
}

.slick-active .game__thumbnail {
    opacity: 1!important
}

.slick-prev {
    left: -55px
}

.slick-prev:after {
    transform: rotate(225deg);
    left: 17px
}

.slick-next {
    right: -50px
}

.slick-next:after {
    transform: rotate(45deg);
    left: 11px
}

.slick-slide:active,
.slick-slide:focus,
.slick-slide:hover {
    border: 0;
    outline: none
}

@media screen and (max-width: 1299px) {
    #game__previewList {
        display: flex !important;
        width: 100%;
        height: 165px;
        overflow-x: auto;
        overflow-y: hidden;
        margin: 15px 0;
    }
    #game__previewList img,
    #game__previewList video {
        width: 295px;
        height: 165px;
        border-radius: 16px;
        margin-right: 15px;
    }
}


/*----------bt_zh-----------*/

.bt1_zh {
    background: url(../images/button/button_zh_01.png)no-repeat center / contain;
    transition: all .2s ease-in-out;
}

.bt1_zh:hover {
    background: url(../images/button/button_zh_hover_01.png)no-repeat center / contain;
    transform: scale(1.1);
}

.bt2_zh {
    background: url(../images/button/button_zh_01.png)no-repeat center / contain;
    transition: all .2s ease-in-out;
}

.bt2_zh:hover {
    background: url(../images/button/button_zh_hover_01.png)no-repeat center / contain;
    transform: scale(1.1);
}


/*----------bt_cn-----------*/

.bt1_cn {
    background: url(../images/button/button_cn_01.png)no-repeat center / contain;
    transition: all .2s ease-in-out;
}

.bt1_cn:hover {
    background: url(../images/button/button_cn_hover_01.png)no-repeat center / contain;
    transform: scale(1.1);
}

.bt2_cn {
    background: url(../images/button/button_cn_01.png)no-repeat center / contain;
    transition: all .2s ease-in-out;
}

.bt2_cn:hover {
    background: url(../images/button/button_cn_hover_01.png)no-repeat center / contain;
    transform: scale(1.1);
}


/*----------bt_en-----------*/

.bt1_en {
    background: url(../images/button/button_en_01.png)no-repeat center center / contain;
    transition: all .2s ease-in-out;
}

.bt1_en:hover {
    background: url(../images/button/button_en_hover_01.png)no-repeat center / contain;
    transform: scale(1.1);
}

.bt2_en {
    background: url(../images/button/button_en_01.png)no-repeat center / contain;
    transition: all .2s ease-in-out;
}

.bt2_en:hover {
    background: url(../images/button/button_en_hover_01.png)no-repeat center / contain;
    transform: scale(1.1);
}


/*----------bt_ja-----------*/

.bt1_ja {
    background: url(../images/button/button_ja_01.png)no-repeat center / contain;
    transition: all .2s ease-in-out;
}

.bt1_ja:hover {
    background: url(../images/button/button_ja_hover_01.png)no-repeat center / contain;
    transform: scale(1.1);
}

.bt2_ja {
    background: url(../images/button/button_ja_01.png)no-repeat center / contain;
    transition: all .2s ease-in-out;
}

.bt2_ja:hover {
    background: url(../images/button/button_ja_hover_01.png)no-repeat center / contain;
    transform: scale(1.1);
}


/*----------bt_kr-----------*/

.bt1_ko {
    background: url(../images/button/button_kr_01.png)no-repeat center / contain;
    transition: all .2s ease-in-out;
}

.bt1_ko:hover {
    background: url(../images/button/button_kr_hover_01.png)no-repeat center / contain;
    transform: scale(1.1);
}

.bt2_ko {
    background: url(../images/button/button_kr_01.png)no-repeat center / contain;
    transition: all .2s ease-in-out;
}

.bt2_ko:hover {
    background: url(../images/button/button_kr_hover_01.png)no-repeat center / contain;
    transform: scale(1.1);
}

body::-webkit-scrollbar,
#game__previewList::-webkit-scrollbar {
    width: 6px;
    height: 4px;
}

body::-webkit-scrollbar-thumb,
#game__previewList::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0);
    background: #ffffff;
}

body::-webkit-scrollbar-track,
#game__previewList::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.055);
    border-radius: 0;
    background: rgb(31, 86, 131);
}