@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Noto+Sans:400,700,900|Noto+Sans+JP:400,700,900|Noto+Sans+KR:400,700,900|Noto+Sans+TC:400,700,900&display=swap");
h2 {
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  margin: 0;
}

section {
  width: 100%;
}

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

.link-block {
  display: inline-block;
}

.white-round-border {
  border: 1px solid #ffffff;
  border-radius: 16px;
}

.round-border-btn {
  border: 1px solid #ffffff;
  border-radius: 18px;
  font-size: 14px;
  padding: 4px 20px;
}

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

.game__tag {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  padding: 2px 10px;
  border: 1px solid #ffffff;
  border-radius: 4px;
  margin-right: 10px;
}
.game__tag--type {
  border-color: #65d1ff;
  color: #65d1ff;
}
.game__tag--lang {
  border-color: #8260d2;
  color: #8260d2;
}
.game__tag--test {
  border-color: #a3c338;
  color: #a3c338;
}

.form__btn {
  height: 48px;
  border-radius: 30px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.5px;
  background-color: #ff61b6;
  color: #ffffff;
}
.form__btn:hover {
  background-color: #ff49ab;
}

.sectionHeader {
  width: 100%;
  display: block;
  margin-bottom: 20px;
}
.sectionHeader h2 {
  display: inline-block;
  margin-right: 20px;
}

.noscroll {
  overflow: hidden;
}

@media screen and (max-width: 1299px) {
  .mobile {
    display: block !important;
  }

  .pc {
    display: none !important;
  }
}
#nav {
  width: 100%;
  height: 80px;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #1d2630;
  transition: height 0.3s ease-in;
  z-index: 30;
}
@media (max-width: 1299px) {
  #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: 1299px) {
  #navbar {
    width: 100%;
    padding: 0 15px;
  }
}

@media (max-width: 1299px) {
  .nav--scroll #nav {
    height: 58px;
  }
  .nav--scroll #navbar__brand {
    width: 120px;
    height: 28px;
    padding-top: 0;
  }
}
#navbar__brand {
  width: 165px;
}
@media (max-width: 1299px) {
  #navbar__brand {
    width: 120px;
    z-index: 40;
  }
}
#navbar__brand img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  object-fit: contain;
}
#navbar__brand img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
@media (max-width: 1299px) {
  #navbar__brand img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: left;
  }
  #navbar__brand img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: left;
  }
}

.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__account.loggedIn .nav__welcome {
  display: none;
}
#nav__account.loggedIn .nav__user {
  display: block;
}
#nav__account.loggedOut .nav__welcome {
  display: block;
}
#nav__account.loggedOut .nav__user {
  display: none;
}

#nav__profile {
  color: #ffffff;
  font-size: 12px;
  text-align: right;
}

.nav__user span:last-of-type {
  color: #b3b3b3;
}
.nav__user div {
  color: #ef9705;
  margin-top: 3px;
}

.nav__welcome a {
  transition: all 0.1s ease-in-out;
  position: relative;
  color: #ff61b6;
  font-weight: 700;
  margin-left: 4px;
}
.nav__welcome a:before, .nav__welcome a:after {
  content: "";
  width: 0px;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  margin: 5px 0 0;
  transition: all 0.1s ease-in-out;
  transition-duration: 0.75s;
  opacity: 0;
  background-color: #ff61b6;
}
.nav__welcome a:hover:before, .nav__welcome a:hover:after {
  width: 100%;
  opacity: 1;
}

#nav__coin {
  display: inline-block;
  width: 7px;
  height: 11px;
  margin-right: 5px;
  background: url("../images/common_sprites.png") -10px -10px no-repeat;
}

#nav__profileAvatar {
  width: 32px;
  height: 32px;
  border: 2px solid #ffffff;
  border-radius: 100%;
  background-color: #a5a8ac;
  text-align: center;
  margin-left: 10px;
  overflow: hidden;
  position: relative;
}
@media (max-width: 1299px) {
  #nav__profileAvatar {
    width: 27px;
    height: 27px;
  }
}
#nav__profileAvatar i {
  vertical-align: bottom;
}
@media (max-width: 1299px) {
  #nav__profileAvatar i {
    vertical-align: unset;
  }
}
#nav__profileAvatar i:before {
  color: #4a5159;
  font-size: 14px;
}
@media (max-width: 1299px) {
  #nav__profileAvatar i:before {
    font-size: 12px;
  }
}
#nav__profileAvatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 100%;
  position: absolute;
  top: 0;
  right: 0;
}
#nav__profileAvatar img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
#nav__profileAvatar:hover {
  background-color: #dbdcde;
}
#nav__profileAvatar:hover i:before {
  color: #6e747a;
}

#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: 1299px) {
  #nav__langSelector {
    margin: 0 12px;
  }
}
#nav__langSelector.active #nav__langMenu {
  opacity: 1;
  height: fit-content;
}

#nav__langMenu {
  width: 110px;
  height: 0;
  opacity: 0;
  position: absolute;
  top: 53px;
  right: 0;
  overflow: hidden;
}
@media (max-width: 1299px) {
  #nav__langMenu {
    width: 113px;
    top: 43px;
    right: 0;
  }
}
#nav__langMenu li {
  display: block;
  width: 100%;
  height: 50px;
  background: #1d2630f2;
  border-bottom: 1px solid #9a9fa54d;
  color: #ffffff;
  font-size: 14px;
  padding: 14px 0 0 34px;
  position: relative;
}
@media (max-width: 1299px) {
  #nav__langMenu li {
    padding: 9px 0 0 34px;
  }
}
#nav__langMenu li:last-child {
  border: 0;
}
#nav__langMenu li:before, #nav__langMenu li:after {
  content: "";
  border-radius: 100%;
  position: absolute;
}
#nav__langMenu li:before {
  width: 9px;
  height: 9px;
  border: 1.5px solid #ffffff;
  top: 19px;
  left: 17px;
}
@media (max-width: 1299px) {
  #nav__langMenu li:before {
    top: 14px;
    left: 15px;
  }
}
#nav__langMenu li:after {
  width: 8px;
  height: 8px;
  background-color: #ffffff;
  top: 21px;
  left: 19px;
}
@media (max-width: 1299px) {
  #nav__langMenu li:after {
    top: 16px;
    left: 17px;
  }
}
#nav__langMenu li:hover:before, #nav__langMenu li.active:before {
  border-color: #ff61b6;
}
#nav__langMenu li:hover:after, #nav__langMenu li.active:after {
  background-color: #ff61b6;
}

.nav__fbPage {
  font-size: 30px;
}
.nav__fbPage i:before {
  color: #3578f7;
}

#nav__mode {
  color: #ffffff;
  font-size: 12px;
  position: fixed;
  right: 30px;
  text-align: center;
}
@media (max-width: 1299px) {
  #nav__mode {
    right: auto;
    left: 138px;
    text-align: center;
  }
}
#nav__mode div {
  transform: scale(0.8);
}
@media (max-width: 1299px) {
  #nav__mode div {
    margin-left: -8px;
  }
}
@media screen and (max-width: 1449px) {
  #nav__mode {
    right: auto;
    left: calc((100% - 1200px) / 2 + 180px);
    text-align: left;
  }
}

.nav__modeSlider,
.nav__safeMode {
  width: 58px;
  height: 22px;
  background-color: transparent;
  border: 1px solid #ff61b6;
  border-radius: 20px;
  cursor: pointer;
  display: block;
  transition: all 0.4s ease-in;
  margin: 3px auto 0;
  position: relative;
}
@media (max-width: 1299px) {
  .nav__modeSlider,
.nav__safeMode {
    width: 42px;
    height: 17px;
    margin: 2px 0 0;
  }
}
.nav__modeSlider:before,
.nav__safeMode:before {
  position: absolute;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #ff61b6;
  font-size: 16px;
  bottom: 2px;
  transition: all 0.4s ease-in;
  content: "\f186";
  left: 3px;
}
@media (max-width: 1299px) {
  .nav__modeSlider:before,
.nav__safeMode:before {
    font-size: 12px;
    bottom: 1px;
    left: 2px;
  }
}
.nav__modeSlider.checked,
.nav__safeMode.checked {
  border-color: #65d1ff;
}
.nav__modeSlider.checked:before,
.nav__safeMode.checked:before {
  content: "\f111";
  color: #65d1ff;
  transform: translateX(34px);
}
@media (max-width: 1299px) {
  .nav__modeSlider.checked:before,
.nav__safeMode.checked:before {
    transform: translateX(24px);
  }
}

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

h2 {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  margin: 0;
}

section {
  width: 100%;
}

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

.link-block {
  display: inline-block;
}

.white-round-border {
  border: 1px solid #fff;
  border-radius: 16px;
}

.round-border-btn {
  border: 1px solid #fff;
  border-radius: 18px;
  font-size: 14px;
  padding: 4px 20px;
}

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

.game__tag {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  padding: 2px 10px;
  border: 1px solid #fff;
  border-radius: 4px;
  margin: 2px 10px 2px 0;
}

.game__tag--type {
  border-color: #65d1ff;
  color: #65d1ff;
}

.game__tag--lang {
  border-color: #8260d2;
  color: #8260d2;
}

.game__tag--test {
  border-color: #a3c338;
  color: #a3c338;
}

.form__btn {
  height: 48px;
  border-radius: 30px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.5px;
  background-color: #ff61b6;
  color: #fff;
}

.form__btn:hover {
  background-color: #ff49ab;
}

.sectionHeader {
  width: 100%;
  display: block;
  margin-bottom: 20px;
}

.sectionHeader h2 {
  display: inline-block;
  margin-right: 20px;
}

.noscroll {
  overflow: hidden;
}

.more-btn {
  border: 1px solid #fff;
  border-radius: 18px;
  display: inline-block;
  font-size: 14px;
  padding: 4px 22px;
}

.more-btn:hover {
  background-color: #fff;
  color: #1d2630;
}

.more-btn i {
  font-size: 9px;
  transform: rotate(90deg);
  margin-right: 3px;
}

@media screen and (max-width: 1299px) {
  .more-btn {
    font-size: 12px;
    padding: 4px 16px;
  }

  .more-btn i {
    font-size: 8px;
  }
}
body,
html {
  padding: 0;
  margin: 0;
}

body {
  --bg: #1d2630;
  --color: #fff;
  --line-color: #333b44;
  --border-color: #dfdfdf;
  width: 100%;
  height: 100vh;
  background-color: #1b021d;
  font-family: Noto Sans, sans-serif;
  font-size: 16px;
  overflow-x: hidden;
}

body * {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

body input {
  border: 0;
  box-shadow: none;
  outline: none;
}

body a {
  color: #fff;
  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;
}

body.hide-iframe iframe {
  z-index: -1 !important;
  opacity: 0;
}

.mobile {
  display: none !important;
}

.container {
  width: 1200px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  font-size: 12px;
  left: 0;
}

.breadcrumb span:nth-child(2n) {
  color: #fff;
  margin: 0 12px;
}

.breadcrumb span a {
  transition: all 0.1s ease-in-out;
  position: relative;
}

.breadcrumb span a:after,
.breadcrumb span a:before {
  content: "";
  width: 0;
  height: 1px;
  position: absolute;
  bottom: -2px;
  left: 0;
  margin: 5px 0 0;
  transition: all 0.1s ease-in-out;
  transition-duration: 0.75s;
  opacity: 0;
  background-color: #fff;
}

.breadcrumb span a:hover:after,
.breadcrumb span a:hover:before {
  width: 100%;
  opacity: 1;
}

.breadcrumb span:last-child a {
  color: #ff61b6;
  font-weight: 700;
  transition: all 0.1s ease-in-out;
  position: relative;
  max-width: 300px;
  display: inline-block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  vertical-align: middle;
}

.breadcrumb span:last-child a:after,
.breadcrumb span:last-child a:before {
  content: "";
  width: 0;
  height: 1px;
  position: absolute;
  bottom: -2px;
  left: 0;
  margin: 5px 0 0;
  transition: all 0.1s ease-in-out;
  transition-duration: 0.75s;
  opacity: 0;
  background-color: #ff61b6;
}

.breadcrumb span:last-child a:hover:after,
.breadcrumb span:last-child a:hover:before {
  width: 100%;
  opacity: 1;
}

.moreLink {
  cursor: pointer;
  font-size: 12px;
  transition: all 0.1s ease-in-out;
  position: relative;
}

.moreLink:after,
.moreLink:before {
  content: "";
  width: 0;
  height: 1px;
  position: absolute;
  bottom: -2px;
  left: 0;
  margin: 5px 0 0;
  transition: all 0.1s ease-in-out;
  transition-duration: 0.75s;
  opacity: 0;
  background-color: #ff61b6;
}

.moreLink:hover:after,
.moreLink:hover:before {
  width: 100%;
  opacity: 1;
}

.moreLink i:before {
  margin-left: 6px;
}

.moreLink,
.moreLink > i:before {
  color: #ff61b6;
}

.news__list {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  min-height: 430px;
  padding: 24px 24px 30px;
  position: relative;
}

.news__list h2 {
  border-bottom: 1px solid #333b44;
  padding-bottom: 16px;
  margin-bottom: 20px;
}

.news__list .home__moreLink {
  position: absolute;
  right: 24px;
  /* bottom: 24px */
}

.news {
  color: #fff;
}

.news h4 {
  color: #ff61b6;
  font-size: 10px;
}

.news p {
  font-size: 14px;
  margin: 0;
}

.news:last-of-type {
  padding-bottom: 40px;
}

.events {
  position: relative;
}

.events .moreLink {
  position: absolute;
  right: 0;
  top: 6px;
}

.event {
  width: 100%;
  height: 108px;
  margin-bottom: 10px;
  border-radius: 16px;
  overflow: hidden;
}

.event img,
.event img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

@media screen and (max-width: 1299px) {
  .event {
    width: 205px;
    height: 85px;
    margin-right: 20px;
  }
}
#nav__copyright {
  position: absolute;
  top: 470px;
  left: 20px;
  font-size: 12px;
  color: #6d6d6d;
}

#footer {
  width: 100%;
  /* background-color: #1d2630; */
}

#footerbar {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  width: 1200px;
  padding: 30px 0;
  margin: 0 auto;
}

#footer img {
  width: 233px;
  margin-bottom: 20px;
}

#footer p {
  width: 520px;
  color: #fff;
  font-size: 12px;
  line-height: 22px;
  margin: 0;
}

#footer__registerForm {
  width: 275px;
  color: #fff;
}

#footer__registerForm h5 {
  font-size: 14px;
  margin: 0 0 14px;
}

#footer__registerForm form {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
}

#footer__registerForm input {
  height: 26px;
  border: 1px solid #b3b3b3;
  font-size: 12px;
  letter-spacing: 0.5px;
  width: 180px;
  background-color: #2e363f;
  border-top-left-radius: 16px;
  border-bottom-left-radius: 16px;
  color: #fff;
  padding: 0 12px;
}

#footer__registerForm input::-moz-placeholder {
  letter-spacing: 1px;
}

#footer__registerForm input:-ms-input-placeholder {
  letter-spacing: 1px;
}

#footer__registerForm input::placeholder {
  letter-spacing: 1px;
}

#subscribe-btn {
  height: 26px;
  border: 1px solid #8260d2;
  font-size: 12px;
  letter-spacing: 0.5px;
  width: 95px;
  background-color: #8260d2;
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
  color: #1d2630;
  font-weight: 500;
  margin-left: -5px;
}

#subscribe-btn:hover {
  color: #fff;
}

#footer__copyright,
#footer__links,
#footer__links a {
  font-size: 12px;
  color: #6d6d6d !important;
}

#footer__copyright {
  width: 315px !important;
}

#footer__copyright,
#footer__links {
  display: inline-block;
}

#footer__links span {
  margin: 0 12px;
}

#footer__links a {
  transition: all 0.1s ease-in-out;
  position: relative;
}

#footer__links a:after,
#footer__links a:before {
  content: "";
  width: 0;
  height: 1px;
  position: absolute;
  bottom: -2px;
  left: 0;
  margin: 5px 0 0;
  transition: all 0.1s ease-in-out;
  transition-duration: 0.75s;
  opacity: 0;
  background-color: #6d6d6d;
}

#footer__links a:hover:after,
#footer__links a:hover:before {
  width: 100%;
  opacity: 1;
}

#btn__scrollTop {
  right: 20px;
  bottom: 150px;
  background-color: rgba(116, 200, 240, 0.459);
}

#btn__twitter {
  right: 20px;
  bottom: 90px;
  background-color: #1da1f2;
  color: #ffffff;
  font-size: 20px;
}

#btn__scrollTop i:before {
  color: #ffffff;
  font-size: 30px;
}

#btn__scrollTop:hover {
  background-color: rgba(100, 180, 255, 0.7);
  color: #fff;
}

#erolabs-ad {
  display: none;
}

@media screen and (min-width: 992px) {
  #erolabs-ad {
    display: none !important;
  }
}
#ageVerify {
  display: none;
  width: 100%;
  height: 100vh;
  background-color: rgba(14, 7, 7, 0.8);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 70;
  overflow-x: hidden;
  overflow-y: scroll;
}

#ageVerify__container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 750px;
}

#ageVerify__container > p {
  color: #fff;
  font-size: 13px;
  line-height: 20px;
  text-align: justify;
  padding: 10px 30px;
}

#ageVerify__container > div {
  background-color: #24031d;
  border-radius: 15px;
  text-align: center;
  padding: 50px 40px;
}

#ageVerify__container > div img {
  width: 220px;
  margin-bottom: 60px;
}

#ageVerify__container > div h2 {
  color: #fff;
  font-size: 24px;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

#ageVerify__container > div p {
  color: #ff61b6;
  font-size: 18px;
  line-height: 36px;
  padding: 0 20px;
  margin-bottom: 50px;
}

#ageVerify__container > div button {
  width: 150px;
  height: 62px;
  border: 1px solid;
  border-radius: 40px;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  margin: 8px;
}

#ageVerify__container > div button:first-of-type {
  background-color: transparent;
  border-color: #fff;
}

#ageVerify__container > div button:first-of-type:hover {
  background-color: #421537;
}

#ageVerify__container > div button:last-of-type {
  background-color: #ff61b6;
  border-color: #ff61b6;
}

#ageVerify__container > div button:last-of-type:hover {
  background-color: #ff49ab;
  border-color: #ff49ab;
}

@media screen and (max-width: 992px) {
  #ageVerify__container {
    width: 85%;
    max-width: 500px;
    top: 40px;
    transform: unset;
    transform: translateX(-50%);
  }

  #ageVerify__container > p {
    font-size: 12px;
    padding: 0 15px;
    margin-bottom: 20px;
  }

  #ageVerify__container > div {
    padding: 40px 20px;
  }

  #ageVerify__container > div img {
    width: 150px;
    margin-bottom: 30px;
  }

  #ageVerify__container > div h2 {
    font-size: 18px;
  }

  #ageVerify__container > div p {
    font-size: 14px;
    line-height: 22px;
    padding: 0;
    margin-bottom: 25px;
  }

  #ageVerify__container > div button {
    width: 100px;
    height: 50px;
    font-size: 14px;
    margin: 6px;
  }
}
@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;
  }

  .sectionHeader {
    margin-bottom: 15px;
  }

  .news__list {
    min-height: auto;
    border: 0;
    border-radius: 0;
    padding: 10px 0;
  }

  .news__list h2 {
    border-bottom: 0;
    margin: 0;
    padding: 0;
  }

  .news__list .home__moreLink {
    right: 0;
    top: 15px;
    bottom: auto;
  }

  .news {
    width: 100%;
    border-bottom: 1px solid #333b44;
    padding-bottom: 12px;
  }

  .news h4 {
    margin-bottom: 0;
  }

  .news:last-of-type {
    padding-bottom: 12px;
    border: 0;
  }

  .events {
    margin: 0;
  }

  .events .moreLink {
    position: absolute;
    top: 5px;
    right: 0;
  }

  #nav__mode {
    right: auto;
    left: 130px;
    text-align: center;
  }

  #nav__mode div {
    margin: 0;
  }

  .nav__modeSlider,
.nav__safeMode {
    width: 42px;
    height: 17px;
    margin: 2px auto 0;
  }

  .nav__modeSlider:before,
.nav__safeMode:before {
    font-size: 12px;
    bottom: 1px;
    left: 2px;
  }

  .nav__safeMode:before {
    transform: translateX(24px);
  }

  #footer {
    width: 100%;
    padding: 60px 15px 20px;
    position: relative;
    flex-direction: column;
  }
}
@media screen and (max-width: 1299px) and (min-width: 1200px) {
  #footer {
    width: 1200px;
  }
}
@media screen and (max-width: 1299px) {
  #footer p {
    width: 100%;
  }

  #footer__links {
    width: auto;
    position: absolute;
    top: 30px;
    left: 15px;
  }

  #footer__registerForm {
    margin: 35px 0;
    width: 100%;
  }

  #footer__registerForm h5 {
    font-size: 12px;
  }

  #footer__registerForm input {
    width: calc(100% - 95px);
  }

  #nav__menuBar {
    width: 25px;
    height: 19px;
    background: url(../images/common_sprites.png) -10px -44px;
    transform: scale(0.9);
  }

  #nav__menu.nav__menu--close {
    display: none !important;
  }

  #nav__menu.nav__menu--open {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(29, 38, 48, 0.95);
    padding: 58px 20px;
    overflow-y: auto;
  }

  #nav__menu.nav__menu--open .nav__link {
    width: 100%;
    border-top: 2px solid #333b44;
    display: block;
    text-align: center;
    margin: 0;
  }

  #nav__menu.nav__menu--open .nav__link:first-of-type {
    border: 0;
  }

  #nav__menu.nav__menu--open .nav__link i {
    margin-right: 10px;
    transform: rotate(10deg);
  }

  #nav__menu.nav__menu--open .nav__link i:before {
    color: #65d1ff;
    font-size: 24px;
  }

  #nav__menu.nav__menu--open .nav__fbPage {
    position: absolute;
    bottom: 15px;
    right: 60px;
  }

  #nav__menu.nav__menu--open .nav__twitter {
    position: absolute;
    bottom: 20px;
    right: 20px;
    margin: 0;
  }
}
@media screen and (max-width: 1299px) and (orientation: landscape) {
  #nav__menu.nav__menu--open .nav__fbPage,
#nav__menu.nav__menu--open .nav__twitter {
    bottom: auto;
  }

  #nav__menu.nav__menu--open .nav__fbPage {
    margin-top: -6px;
  }
}
@media screen and (max-width: 1299px) {
  .nav__copyright {
    position: absolute;
    width: calc(100% - 120px);
    bottom: 20px;
    left: 20px;
    font-size: 12px;
    color: #6d6d6d;
  }
}
@media screen and (max-width: 1299px) and (orientation: landscape) {
  .nav__copyright {
    bottom: auto;
    margin-top: 15px;
  }
}
@media screen and (max-width: 1299px) {
  #nav__menuCloseBtn {
    position: absolute;
    right: 15px;
    top: 18px;
    width: 24px;
    height: 24px;
    background: url(../images/common_sprites.png) -10px -83px;
    transform: scale(0.9);
  }

  .dropdown__panel {
    width: 100%;
    height: 60px;
    position: fixed;
    top: 57px;
    left: 0;
    padding: 18px 20px;
    border: 0;
    overflow-x: auto;
    overflow-y: hidden;
    display: flex;
    background: #1d2630;
    border-bottom: 2px solid #333b44;
    border-radius: 0;
    z-index: 15;
  }

  .dropdown__selection {
    margin-right: 8px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }

  .dropdown__selection button {
    background: transparent;
    border-radius: 4px;
    border: 1px solid #fff;
    color: #fff;
    font-size: 13px;
    text-align: left;
    padding: 2px 10px;
  }

  .dropdown__selection button i {
    margin-left: 5px;
  }

  .dropdown__selection span {
    text-align: left;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    margin-top: 2px;
  }

  .dropdown__selection ul {
    display: none;
  }

  .dropdown__selection.active button {
    border-color: #ff61b6;
  }

  .dropdown__selection.active button i,
.dropdown__selection.active button span {
    color: #ff61b6;
  }

  .dropdown__selection.active button i {
    transform: rotate(180deg);
  }

  .dropdown__selection.active ul {
    display: block;
    width: 100%;
    position: fixed;
    left: 0;
    top: 101px;
    background-color: #1d2630;
    padding: 0 20px;
  }

  .dropdown__selection.active ul:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(29, 38, 48, 0.8);
    z-index: 10;
  }

  .dropdown__selection.active li {
    list-style: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px 10px;
    font-size: 12px;
    z-index: 15;
    position: relative;
  }

  .dropdown__selection.active li:last-child {
    border: 0;
  }
}
@media screen and (max-width: 1299px) and (max-width: 991px) {
  #erolabs-ad {
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    height: 82px;
    background-color: #1d2630;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 60;
    padding: 0 15px;
  }

  #erolabs-ad img {
    width: 50px;
    height: 50px;
    margin: 0 10px;
  }

  #erolabs-ad section {
    width: calc(100% - 190px);
  }

  #erolabs-ad section h2 {
    height: 20px;
    font-size: 14px;
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  #erolabs-ad section p {
    max-height: 35px;
    overflow: hidden;
    font-size: 12px;
    color: #9a9fa5;
    margin: 0;
  }

  #erolabs-ad-close-btn {
    width: 24px;
    height: 24px;
    background: url(../images/common_sprites.png) -10px -83px;
    transform: scale(0.9);
    transform: scale(0.8);
  }

  #erolabs-ad-download {
    background-color: #ff61b6;
    border-radius: 20px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    padding: 7px 15px;
    position: absolute;
    right: 10px;
  }

  #erolabs-ad.en #erolabs-ad-download,
#erolabs-ad.ja #erolabs-ad-download {
    font-size: 12px;
    padding: 7px 10px;
  }
}
@media screen and (min-width: 768px) {
  #dbcheck,
#dbcheck_false,
#loginfalse {
    margin: 0 auto;
    width: 600px;
    text-align: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 101;
    position: fixed;
    border-radius: 20px;
    display: none;
    background-color: #1d2630;
    padding: 15px 150px;
  }

  #dbcheck_content img {
    margin-top: 10px;
  }

  .db_header h1 {
    color: #ffffff;
  }

  .db_body {
    color: #ff61b6;
  }
}
@media screen and (max-width: 768px) {
  /*922以下(含)*/
  #dbcheck,
#dbcheck_false,
#loginfalse {
    margin: 0 auto;
    width: 80%;
    text-align: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 101;
    position: fixed;
    border-radius: 20px;
    display: none;
    background-color: #1d2630;
    padding: 15px 20px;
  }

  #dbcheck_content img {
    margin: 10px auto 0 auto;
    width: 80%;
  }

  .db_header h1 {
    color: #ffffff;
    font-size: 26px;
  }

  .db_body {
    color: #ff61b6;
    font-size: 16px;
  }
}
#db_bgc {
  top: 0;
  left: 0;
  width: 100%;
  min-height: 100%;
  opacity: 0.5;
  display: none;
  background-color: black;
  z-index: 100;
  position: fixed;
}

.db_footer button {
  width: 150px;
  height: 50px;
  background-color: #ff61b6;
  border-radius: 25px;
  color: white;
  font-size: 18px;
  font-weight: 800;
  line-height: 15px;
  margin: 10px 0;
}

/*-----------section1----------*/
html,
body {
  height: auto;
}

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

#sec1 {
  width: 100vw;
  height: 1080px;
  position: relative;
  overflow: hidden;
  background: url("../images/top_character--bg.jpg") top center no-repeat;
  background-size: cover;
}

.top_logo {
  position: absolute;
  height: 300px;
  width: 300px;
  top: 5%;
  left: 13%;
  margin-left: -50px;
  z-index: 1;
}

.top_logo img {
  width: 100%;
}

.top_left {
  position: absolute;
  width: 1459px;
  height: auto;
  top: 0%;
  left: 50%;
  margin-left: -960px;
  display: block;
  z-index: 1;
}

.top_right {
  position: absolute;
  width: 871px;
  height: auto;
  left: 50%;
  top: 4%;
  margin-left: -50px;
  display: block;
  z-index: 0;
}

.top_character_m {
  display: none;
}

.top_character img {
  width: 100%;
}

.top_main {
  position: absolute;
  display: flex;
  justify-content: space-around;
  align-items: center;
  top: 55%;
  width: 100%;
  z-index: 1;
}

.top_content {
  width: 32%;
}

.top_content img {
  width: 100%;
}

.top_button {
  width: 700px;
  height: 120px;
}

.bottom_top {
  width: 49%;
  height: 100px;
  margin: 0.5%;
  float: left;
}

@media screen and (max-width: 1023px) {
  #sec1 {
    height: 1280px;
  }

  .top_logo {
    top: 20px;
  }

  .top_left {
    margin-left: -888px;
  }

  .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%;
  }
}
@media screen and (max-width: 768px) {
  .top_main {
    top: 60%;
  }

  #sec1 {
    height: auto;
    min-height: auto;
  }

  .top_character_m {
    display: block;
    width: 100%;
  }

  .top_character_m--bg {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }

  .top_character_m img {
    width: 100%;
  }

  .top_left,
.top_right {
    display: none;
  }

  .top_logo {
    height: auto;
    width: 100%;
    top: 3%;
    left: 60%;
    margin-left: -20px;
  }

  .top_logo img {
    width: 40%;
  }
}
/*------------sec2-----------*/
#sec2 {
  width: 100vw;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.game_Introduction_pic {
  margin-top: 100px;
  position: absolute;
  z-index: -1;
}

.game_left {
  position: absolute;
  left: -280px;
}

.game_right {
  position: absolute;
  right: -1500px;
  top: 230px;
}

.game_Introduction {
  padding-top: 100px;
  width: 100%;
}

.Game_Introduction_main {
  width: 100%;
  height: auto;
  text-align: center;
}

.Game_Introduction_main img {
  width: 80%;
  margin: 0 auto;
}

.down_btn_ft {
  margin: 100px 0 400px 0;
  width: 100%;
  padding: 0 15%;
  top: 45%;
}

.bottom_footer {
  width: 49%;
  height: 100px;
  margin: 0.5%;
  float: left;
}

@media screen and (max-width: 1300px) {
  .game_Introduction_pic {
    margin-top: 0;
    width: 100%;
  }

  .game_left {
    width: 40%;
    left: -10%;
  }

  .game_right {
    width: 40%;
    left: 70%;
  }

  .down_btn_ft {
    margin: 50px 0 250px 0;
    padding: 0 2%;
  }
}
@media screen and (max-width: 992px) {
  #sec1 {
    height: 120vw;
    min-height: 1450px;
  }

  .game_Introduction_pic {
    margin-top: 0;
    width: 100%;
  }

  .game_left {
    width: 105%;
    left: -10%;
  }

  .game_right {
    width: 55%;
    left: 60%;
    top: 30px;
  }

  .Game_Introduction_main img {
    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: 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: 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 screen and (max-width: 1299px) {
  .container--game {
    padding-top: 70px;
  }

  #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;
  }

  .game__tags {
    margin-bottom: 20px;
  }

  .game__tags .game__tag {
    margin-right: 5px;
  }

  #game__info {
    margin: 15px auto 30px;
    flex-direction: column;
  }

  #game__intro {
    width: 100%;
    padding: 0;
  }

  .game__introContent {
    width: 100%;
    min-height: auto;
    display: block;
    padding: 15px 0;
    visibility: visible !important;
  }

  .game__introContent h2 {
    margin-bottom: 8px;
  }

  .game__introContent p {
    margin: 0;
  }

  .game__snsBtns {
    display: flex !important;
    margin-bottom: 20px;
  }

  .game__snsBtn {
    width: 35px;
    height: 35px;
  }

  .game__snsBtn:first-of-type i {
    font-size: 20px;
    margin-top: 10px;
  }

  .game__snsBtn:last-of-type i {
    font-size: 24px;
    margin-top: 10px;
  }

  #game__updateList {
    width: 100%;
    margin-top: 15px;
  }
}
/*----------bt_zh-----------*/
.bt1_zh {
  height: 100px;
  background: url(../images/button/button_zh_01.png) no-repeat center;
  background-size: contain;
  cursor: pointer;
  transition: all 0.3s ease 0s;
}

.bt1_zh:hover {
  height: 105px;
  background-size: contain;
  cursor: pointer;
  opacity: 0.7;
  transform: scale(1.05);
}

.bt2_zh {
  height: 100px;
  background: url(../images/button/button_zh_02.png) no-repeat center;
  background-size: contain;
  cursor: pointer;
  transition: all 0.3s ease 0s;
}

.bt2_zh:hover {
  height: 105px;
  background-size: contain;
  cursor: pointer;
  opacity: 0.7;
  transform: scale(1.05);
}

/*----------bt_cn-----------*/
.bt1_cn {
  height: 100px;
  background: url(../images/button/button_cn_01.png) no-repeat center;
  background-size: contain;
  cursor: pointer;
  transition: all 0.3s ease 0s;
}

.bt1_cn:hover {
  height: 105px;
  background-size: contain;
  cursor: pointer;
  opacity: 0.7;
  transform: scale(1.05);
}

.bt2_cn {
  height: 100px;
  background: url(../images/button/button_cn_02.png) no-repeat center;
  background-size: contain;
  cursor: pointer;
  transition: all 0.3s ease 0s;
}

.bt2_cn:hover {
  height: 105px;
  background-size: contain;
  cursor: pointer;
  opacity: 0.7;
  transform: scale(1.05);
}

/*----------bt_en-----------*/
.bt1_en {
  height: 100px;
  background: url(../images/button/button_en_01.png) no-repeat center;
  background-size: contain;
  cursor: pointer;
  transition: all 0.3s ease 0s;
}

.bt1_en:hover {
  height: 105px;
  background-size: contain;
  cursor: pointer;
  opacity: 0.7;
  transform: scale(1.05);
}

.bt2_en {
  height: 100px;
  background: url(../images/button/button_en_02.png) no-repeat center;
  background-size: contain;
  cursor: pointer;
  transition: all 0.3s ease 0s;
}

.bt2_en:hover {
  height: 105px;
  background-size: contain;
  cursor: pointer;
  opacity: 0.7;
  transform: scale(1.05);
}

/*----------bt_ja-----------*/
.bt1_ja {
  height: 100px;
  background: url(../images/button/button_ja_01.png) no-repeat center;
  background-size: contain;
  cursor: pointer;
  transition: all 0.3s ease 0s;
}

.bt1_ja:hover {
  height: 105px;
  background-size: contain;
  cursor: pointer;
  opacity: 0.7;
  transform: scale(1.05);
}

.bt2_ja {
  height: 100px;
  background: url(../images/button/button_ja_02.png) no-repeat center;
  background-size: contain;
  cursor: pointer;
  transition: all 0.3s ease 0s;
}

.bt2_ja:hover {
  height: 105px;
  background-size: contain;
  cursor: pointer;
  opacity: 0.7;
  transform: scale(1.05);
}

/*----------bt_kr-----------*/
.bt1_ko {
  height: 100px;
  background: url(../images/button/button_kr_01.png) no-repeat center;
  background-size: contain;
  cursor: pointer;
  transition: all 0.3s ease 0s;
}

.bt1_ko:hover {
  height: 105px;
  background-size: contain;
  cursor: pointer;
  opacity: 0.7;
  transform: scale(1.05);
}

.bt2_ko {
  height: 100px;
  background: url(../images/button/button_kr_02.png) no-repeat center;
  background-size: contain;
  cursor: pointer;
  transition: all 0.3s ease 0s;
}

.bt2_ko:hover {
  height: 105px;
  background-size: contain;
  cursor: pointer;
  opacity: 0.7;
  transform: scale(1.05);
}

video {
  opacity: 1;
  transition: all 0.2s ease-in-out;
}

img {
  opacity: 1;
  transition: all 0.2s ease-in-out;
}

.lazyImg {
  opacity: 0;
}

.lazy {
  opacity: 0;
}

#confetti {
  position: fixed;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
  top: 0;
}

.dot1 {
  background: url("../images/common/dot1.png") center no-repeat;
  width: 40px;
  height: 40px;
  background-size: contain;
  position: absolute;
}

.dot2 {
  background: url("../images/common/dot2.png") center no-repeat;
  width: 20px;
  height: 20px;
  background-size: contain;
  position: absolute;
}

.dot3 {
  background: url("../images/common/dot3.png") center no-repeat;
  width: 20px;
  height: 20px;
  background-size: contain;
  position: absolute;
}

@media screen and (max-width: 768px) {
  #sec1 {
    height: auto;
    min-height: auto;
  }
}