* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: auto;
}

body {
  --bg: #1d2630;
  --color: $whitecolor;
  --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 * {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}
body a {
  color: #ffffff;
  cursor: pointer;
  text-decoration: none;
}
body a:active, body a:focus, body a:hover {
  text-decoration: none;
}
body button {
  border: 0;
  box-shadow: none;
  cursor: pointer;
  outline: none;
}
body button:active, body button:focus, body button:hover {
  outline: none;
}
body p {
  word-break: break-word;
}
body li {
  list-style: none;
}
body .hide-iframe iframe {
  z-index: -1 !important;
  opacity: 0;
}

h2 {
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  margin: 0;
}
@media (max-width: 1200px) {
  h2 {
    font-size: 16px;
  }
}

section {
  width: 100%;
}

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

.fixed-btn {
  position: fixed;
  width: 40px;
  height: 40px;
  border-radius: 20%;
}

@media (max-width: 1200px) {
  .pc {
    display: none !important;
  }
}

.mobile {
  display: none !important;
}
@media (max-width: 1200px) {
  .mobile {
    display: block !important;
  }
}

.container {
  width: 1200px;
  margin: 0 auto;
}
@media (max-width: 1200px) {
  .container {
    width: 100%;
    padding: 25px 15px 30px;
  }
}

#btn__scrollTop {
  right: 20px;
  bottom: 150px;
  background-color: rgba(82, 0, 48, 0.5);
}
#btn__scrollTop i:before {
  color: #ffffff;
  font-size: 30px;
}
#btn__scrollTop i:hover {
  background-color: rgb(82, 0, 48);
  color: #ffffff;
}

#btn__twitter {
  right: 20px;
  bottom: 90px;
  background-color: rgb(82, 0, 48);
  color: #ffffff;
  font-size: 20px;
}

.nav--scroll #nav {
  height: 58px;
}
.nav--scroll #navbar__brand {
  width: 140px;
  height: 32px;
}
@media (max-width: 1200px) {
  .nav--scroll #navbar__brand {
    width: 120px;
    height: 28px;
    padding-top: 0;
  }
}
.nav--scroll #nav__langMenu {
  top: 42px;
}

#nav {
  width: 100%;
  height: 80px;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgb(82, 0, 48);
  transition: height 0.3s ease-in;
  z-index: 30;
}
@media (max-width: 1200px) {
  #nav {
    height: 58px;
  }
}

#navbar {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 1200px;
  height: 100%;
  margin: 0 auto;
}
@media (max-width: 1200px) {
  #navbar {
    width: 100%;
    padding: 0 15px;
  }
}

#navbar__brand {
  width: 165px;
  height: 40px;
}
@media (max-width: 1200px) {
  #navbar__brand {
    width: 120px;
    height: 28px;
    z-index: 40;
  }
}

.nav__link {
  font-size: 18px;
  font-weight: 700;
  line-height: 80px;
  margin: 0 30px;
  color: #ffffff;
}
.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: #ffffff;
  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;
}
@media (max-width: 1200px) {
  #nav__langSelector {
    margin: 0 12px;
  }
}

#nav__langSelector.active #nav__langMenu {
  display: block;
}

#nav__langMenu {
  display: none;
  width: 110px;
  height: fit-content;
  position: absolute;
  top: 53px;
  right: 0;
  overflow: hidden;
}
@media (max-width: 1200px) {
  #nav__langMenu {
    width: 98px;
    top: 42px;
    right: 0;
  }
  #nav__langMenu a:before {
    top: 14px;
    left: 15px;
  }
  #nav__langMenu a:after {
    top: 16px;
    left: 17px;
  }
}
#nav__langMenu li {
  display: block;
  width: 100%;
  height: 50px;
  background: rgb(82, 0, 48);
  border-bottom: 1px solid rgba(154, 159, 165, 0.3);
  color: #ffffff;
  font-size: 14px;
  padding: 15px 0 0 37px;
  position: relative;
}
#nav__langMenu li:last-child {
  border: 0;
}
#nav__langMenu li:after {
  content: "";
  border-radius: 100%;
  position: absolute;
  width: 8px;
  height: 8px;
  background-color: #ffffff;
  top: 21px;
  left: 19px;
}
@media (max-width: 1200px) {
  #nav__langMenu li:after {
    top: 16px;
    left: 17px;
  }
}
#nav__langMenu li:before {
  content: "";
  border-radius: 100%;
  position: absolute;
  width: 9px;
  height: 9px;
  border: 1.5px solid #ffffff;
  top: 19px;
  left: 17px;
}
@media (max-width: 1200px) {
  #nav__langMenu li:before {
    top: 14px;
    left: 15px;
  }
}
#nav__langMenu li:hover:before {
  border-color: #ff61b6;
}
#nav__langMenu li:hover:after {
  background-color: #ff61b6;
}
#nav__langMenu li.active:before {
  border-color: #ff61b6;
}
#nav__langMenu li.active:after {
  background-color: #ff61b6;
}

/*-----------section1----------*/
#game {
  background: url("../images/top_bg.jpg") top center no-repeat;
  background-size: cover;
  min-height: 1000px;
  height: auto;
}

#sec1 {
  width: 100vw;
  height: 100vh;
  position: relative;
  overflow: hidden;
}
#sec1 .top_logo {
  position: absolute;
  height: 300px;
  width: 300px;
  top: 8%;
  left: 50%;
  margin-left: -95px;
}
@media (max-width: 768px) {
  #sec1 .top_logo {
    height: auto;
    width: 100%;
    top: 5%;
    left: 50%;
    margin-left: -10px;
  }
}
#sec1 .top_logo img {
  width: 100%;
}
@media (max-width: 768px) {
  #sec1 .top_logo img {
    width: 40%;
  }
}
#sec1 .top_left {
  position: absolute;
  width: 850px;
  height: auto;
  top: 3%;
  left: 50%;
  margin-left: -850px;
  display: block;
}
@media (max-width: 1400px) {
  #sec1 .top_left {
    margin-left: -710px;
  }
}
@media (max-width: 768px) {
  #sec1 .top_left {
    display: none;
  }
}
#sec1 .top_right {
  position: absolute;
  width: 850px;
  height: auto;
  top: 8%;
  left: 50%;
  margin-left: -50px;
  display: block;
}
@media (max-width: 1400px) {
  #sec1 .top_right {
    margin-left: -80px;
  }
}
@media (max-width: 768px) {
  #sec1 .top_right {
    display: none;
  }
}
#sec1 .top_character_m {
  display: none;
}
@media (max-width: 768px) {
  #sec1 .top_character_m {
    display: block;
    width: 100%;
  }
}
@media (max-width: 768px) {
  #sec1 .top_character_m img {
    width: 100%;
  }
}
#sec1 .top_character img {
  width: 100%;
}
#sec1 .top_main {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 65%;
  width: 100%;
}
@media (max-width: 1024px) {
  #sec1 .top_main {
    flex-wrap: wrap-reverse;
    top: 55%;
  }
}
@media (max-width: 768px) {
  #sec1 .top_main {
    top: 65%;
  }
}

.top_content {
  width: 50%;
}
@media (max-width: 1024px) {
  .top_content {
    width: 100%;
  }
}
.top_content img {
  width: 100%;
}
@media (max-width: 1024px) {
  .top_content img {
    width: 100%;
  }
}

.top_button {
  width: 700px;
  height: 120px;
}
@media (max-width: 1024px) {
  .top_button {
    width: 90%;
  }
}
.top_button .tp_button {
  margin-left: 60px;
  width: 100%;
  height: 100px;
  display: flex;
  justify-content: center;
}
@media (max-width: 1200px) {
  .top_button .tp_button .tp_button {
    margin-left: 0px;
  }
}
@media (max-width: 1024px) {
  .top_button .tp_button {
    margin-left: 0px;
  }
}
.top_button .tp_button a {
  height: 100%;
  width: 50%;
  margin: 0;
  max-width: 260px;
}

.down_btn {
  position: relative;
  margin: 80px 0;
  width: 100%;
  z-index: 10;
}
.down_btn .down_btn_ft {
  display: flex;
  justify-content: space-around;
  height: 100px;
}
.down_btn .down_btn_ft a {
  height: 100%;
  width: 50%;
  margin: 0;
  max-width: 260px;
}

@media (max-width: 1200px) {
  .tp_button a,
.down_btn_ft a {
    width: 46%;
  }
}
@media (max-width: 1024px) {
  .tp_button a,
.down_btn_ft a {
    width: 26%;
  }
}
@media (max-width: 768px) {
  .tp_button a,
.down_btn_ft a {
    width: 50%;
  }
}

/*------------sec2-----------*/
#sec2 {
  width: 100vw;
  position: relative;
  overflow: hidden;
}
#sec2:after {
  content: "";
  width: 1180px;
  display: block;
  position: absolute;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(255, 255, 255, 0.5);
  border-top: 2px solid #ffffff;
  border-left: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  box-sizing: border-box;
  z-index: -5;
}
#sec2 .game_Introduction_pic {
  margin-top: 100px;
  position: absolute;
  z-index: -1;
}
@media (max-width: 1200px) {
  #sec2 .game_Introduction_pic {
    margin-top: 0;
    width: 100%;
  }
}
@media (max-width: 996px) {
  #sec2 .game_Introduction_pic {
    margin-top: 0;
    width: 100%;
  }
}
#sec2 .game_left {
  position: absolute;
  left: -280px;
}
@media (max-width: 1200px) {
  #sec2 .game_left {
    width: 40%;
    left: -10%;
  }
}
@media (max-width: 996px) {
  #sec2 .game_left {
    width: 55%;
    left: -20%;
  }
}
#sec2 .game_right {
  position: absolute;
  right: -1400px;
}
@media (max-width: 1200px) {
  #sec2 .game_right {
    width: 40%;
    left: 70%;
  }
}
@media (max-width: 996px) {
  #sec2 .game_right {
    width: 55%;
    left: 60%;
    top: 30px;
  }
}
#sec2 .game_Introduction {
  padding-top: 100px;
  width: 100%;
}
@media (max-width: 996px) {
  #sec2 .game_Introduction {
    padding-top: 50px;
  }
}
#sec2 .Game_Introduction_main {
  width: 100%;
  height: auto;
  text-align: center;
}
#sec2 .Game_Introduction_main img {
  width: 80%;
}
@media (max-width: 996px) {
  #sec2 .Game_Introduction_main {
    width: 100%;
  }
}

/*----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: 0.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: 0.2;
  z-index: 10;
  transition-property: opacity, z-index;
  transition-duration: 0.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: 0.9;
}

#game__slide .slick-prev {
  left: calc(100% - 982px);
  opacity: 0.7;
}

#game__slide .slick-next {
  right: -10px;
  opacity: 0.7;
}

.slick-dots {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  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: 0.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 (max-width: 1200px) {
  .container--game {
    padding-top: 70px;
  }
}

@media (max-width: 1200px) {
  #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 0.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_02.png) no-repeat center/contain;
  transition: all 0.2s ease-in-out;
}
.bt2_zh:hover {
  background: url(../images/button/button_zh_hover_02.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 0.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_02.png) no-repeat center/contain;
  transition: all 0.2s ease-in-out;
}
.bt2_cn:hover {
  background: url(../images/button/button_cn_hover_02.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 0.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_02.png) no-repeat center/contain;
  transition: all 0.2s ease-in-out;
}
.bt2_en:hover {
  background: url(../images/button/button_en_hover_02.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 0.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_02.png) no-repeat center/contain;
  transition: all 0.2s ease-in-out;
}
.bt2_ja:hover {
  background: url(../images/button/button_ja_hover_02.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 0.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_02.png) no-repeat center/contain;
  transition: all 0.2s ease-in-out;
}
.bt2_ko:hover {
  background: url(../images/button/button_kr_hover_02.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(82, 0, 48);
}