@charset "UTF-8";
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html * {
  font-family: "Microsoft JhengHei";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

*,
*:after,
*:before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  font-size: 100%;
  background-color: #000;
  color: #373737;
  font-size: 18px;
  font-weight: bold;
}

* {
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-decoration: none;
}

.wrap {
  width: 100%;
  min-width: 1280px;
  margin: 0 auto;
  overflow: hidden;
}

.header {
  width: 100%;
  height: 1080px;
  padding-top: 150px;
  background: url(../images/header-bg.jpg) no-repeat center top;
}

.sec1 {
  width: 100%;
  height: 1080px;
  background: url(../images/sec1-bg.jpg) no-repeat center top;
}

.intro {
  width: 100%;
  height: 1080px;
  background: url(../images/intro-bg.jpg) no-repeat center top;
}

.top-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 100;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.top-menu-left, .top-menu-right {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.top-menu-logo {
  width: 177px;
  height: 69px;
  margin: 0 15px;
  background: url(../images/logo-s.png) no-repeat center top;
}

.top-menu-join-btn {
  width: 252px;
  height: 80px;
  border: 0;
  outline: none;
  cursor: pointer;
  top: 2px;
  background: url(../images/join-btn.jpg) no-repeat center bottom;
  -webkit-animation: brightnessPulse 2s infinite;
          animation: brightnessPulse 2s infinite;
}

@-webkit-keyframes brightnessPulse {
  0% {
    -webkit-filter: brightness(1);
            filter: brightness(1);
  }
  50% {
    -webkit-filter: brightness(1.3);
            filter: brightness(1.3);
  }
  100% {
    -webkit-filter: brightness(1);
            filter: brightness(1);
  }
}

@keyframes brightnessPulse {
  0% {
    -webkit-filter: brightness(1);
            filter: brightness(1);
  }
  50% {
    -webkit-filter: brightness(1.3);
            filter: brightness(1.3);
  }
  100% {
    -webkit-filter: brightness(1);
            filter: brightness(1);
  }
}
.top-menu-join-sec {
  width: 253px;
  height: 194px;
  background: rgba(0, 0, 0, 0.85);
  border-radius: 0 0 0 30px;
  position: absolute;
  top: 80px;
  padding: 20px 0;
}
.top-menu-join-sec a {
  display: block;
  width: 209px;
  margin: 0 auto;
  margin-bottom: 5px;
  -webkit-transition: -webkit-filter 0.3s;
  transition: -webkit-filter 0.3s;
  transition: filter 0.3s;
  transition: filter 0.3s, -webkit-filter 0.3s;
}
.top-menu-join-sec a:hover {
  -webkit-filter: brightness(1.3);
          filter: brightness(1.3);
}

.fade-in {
  opacity: 0;
  -webkit-transition: opacity 1s ease, -webkit-transform 1s ease;
  transition: opacity 1s ease, -webkit-transform 1s ease;
  transition: opacity 1s ease, transform 1s ease;
  transition: opacity 1s ease, transform 1s ease, -webkit-transform 1s ease;
}

.fade-in-down {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: opacity 1s ease, -webkit-transform 1s ease;
  transition: opacity 1s ease, -webkit-transform 1s ease;
  transition: opacity 1s ease, transform 1s ease;
  transition: opacity 1s ease, transform 1s ease, -webkit-transform 1s ease;
}

.fade-in-left {
  opacity: 0;
  -webkit-transform: translateX(-30px);
          transform: translateX(-30px);
  -webkit-transition: opacity 1s ease, -webkit-transform 1s ease;
  transition: opacity 1s ease, -webkit-transform 1s ease;
  transition: opacity 1s ease, transform 1s ease;
  transition: opacity 1s ease, transform 1s ease, -webkit-transform 1s ease;
}

.fade-in-right {
  opacity: 0;
  -webkit-transform: translateX(30px);
          transform: translateX(30px);
  -webkit-transition: opacity 1s ease, -webkit-transform 1s ease;
  transition: opacity 1s ease, -webkit-transform 1s ease;
  transition: opacity 1s ease, transform 1s ease;
  transition: opacity 1s ease, transform 1s ease, -webkit-transform 1s ease;
}

.fade-in.show, .fade-in-left.show, .fade-in-down.show, .fade-in-right.show {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.hidden {
  display: none;
}

#menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#menu a {
  width: 160px;
  display: block;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 80px;
  line-height: 80px;
  text-align: center;
  text-decoration: none;
  color: #fff;
  background: none;
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
}
#menu a::before {
  content: "";
  position: absolute;
  width: 0%;
  height: 100%;
  left: 0;
  bottom: 0;
  background: rgba(222, 193, 131, 0.8);
  opacity: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: -1;
}

#menu a.active, #menu a:hover {
  color: #fff;
}
#menu a.active::before, #menu a:hover::before {
  width: 100%;
  opacity: 1;
  z-index: -1;
}

.social-btns {
  z-index: 100;
  top: 0;
  right: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.social-btns a {
  display: block;
  width: 45px;
  height: 45px;
  margin-right: 10px;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.social-btns a:hover {
  opacity: 0.8;
}

.m-social-btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  margin-top: 20px;
}
.m-social-btns a {
  display: block;
  width: 45px;
  height: 45px;
  padding: 0 !important;
  border-bottom: none !important;
}

.inner {
  width: 1280px;
  height: 100%;
  margin: 0 auto;
  z-index: 20;
}

#particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.header-logo {
  width: 435px;
  height: 189px;
  margin: 0 auto 0 auto;
  background: url(../images/logo-b.png) no-repeat center top;
  opacity: 0;
  -webkit-animation: fadeInUp 0.8s ease-out forwards;
          animation: fadeInUp 0.8s ease-out forwards;
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}

.header-word {
  width: 601px;
  height: 154px;
  margin: 20px auto 0 auto;
  background: url(../images/header-word.png) no-repeat center top;
  opacity: 0;
  -webkit-animation: fadeInUp 0.8s ease-out forwards;
          animation: fadeInUp 0.8s ease-out forwards;
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}

.cb-box {
  width: 610px;
  height: 291px;
  padding: 40px 60px;
  margin: 60px auto 0 auto;
  background: url(../images/header-cb-bg.png) no-repeat center top;
  opacity: 0;
  -webkit-animation: popIn 0.6s ease-out forwards;
          animation: popIn 0.6s ease-out forwards;
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}

.cb-title {
  width: 482px;
  height: 108px;
  margin: 0 auto;
  background: url(../images/header-cb-title.png) no-repeat center top;
}

.cb-download-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 15px;
}
.cb-download-buttons a {
  display: block;
  width: 209px;
  margin: 0 10px;
  -webkit-transition: -webkit-filter 0.3s;
  transition: -webkit-filter 0.3s;
  transition: filter 0.3s;
  transition: filter 0.3s, -webkit-filter 0.3s;
}
.cb-download-buttons a:hover {
  -webkit-filter: brightness(1.3);
          filter: brightness(1.3);
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes popIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes popIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.scroll-line-box {
  margin: 30px auto 0 auto;
  width: 3px;
  height: 105px;
}
.scroll-line-box .scroll-star {
  position: absolute;
  top: -21px;
  left: 50%;
  width: 38px;
  height: 38px;
  background: url(../images/scroll-star.png) no-repeat center center;
  -webkit-animation: starFall 1.8s ease-in-out infinite;
          animation: starFall 1.8s ease-in-out infinite;
}
.scroll-line-box .scroll-line {
  width: 3px;
  height: 105px;
  background: #fff;
  -webkit-box-shadow: 0 0 5px 1px rgb(255, 255, 255);
          box-shadow: 0 0 5px 1px rgb(255, 255, 255);
}

@-webkit-keyframes starFall {
  0% {
    -webkit-transform: translateX(-50%) translateY(0) scale(1.5);
            transform: translateX(-50%) translateY(0) scale(1.5);
    opacity: 1;
  }
  50% {
    opacity: 1; /* 保持亮度 */
  }
  80% {
    -webkit-transform: translateX(-50%) translateY(110px) scale(1);
            transform: translateX(-50%) translateY(110px) scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(-50%) translateY(110px) scale(1);
            transform: translateX(-50%) translateY(110px) scale(1);
    opacity: 0;
  }
}

@keyframes starFall {
  0% {
    -webkit-transform: translateX(-50%) translateY(0) scale(1.5);
            transform: translateX(-50%) translateY(0) scale(1.5);
    opacity: 1;
  }
  50% {
    opacity: 1; /* 保持亮度 */
  }
  80% {
    -webkit-transform: translateX(-50%) translateY(110px) scale(1);
            transform: translateX(-50%) translateY(110px) scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(-50%) translateY(110px) scale(1);
            transform: translateX(-50%) translateY(110px) scale(1);
    opacity: 0;
  }
}
.sec1 {
  padding-top: 90px;
}

.sec1-title {
  text-align: center;
  margin-bottom: 20px;
}

.sec1-tabs {
  margin: 0 auto;
  z-index: 10;
}

.sec1-tab-btn {
  width: 267px;
  height: 92px;
  cursor: pointer;
  outline: none;
  border: none;
  margin: 0 10px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.sec1-tab-btn:before {
  content: "";
  position: absolute;
  top: -24px;
  left: -5px;
  width: 241px;
  height: 126px;
  background: url(../images/sec1-btn-vine.png) no-repeat left top;
  clip-path: inset(0 100% 0 0);
  -webkit-transition: clip-path 0.5s ease-out;
  transition: clip-path 0.5s ease-out;
}
.sec1-tab-btn.active:before {
  clip-path: inset(0 0 0 0);
}

.sec1-tab-btn1 {
  background: url(../images/sec1-btn1.png) no-repeat center top;
  -webkit-transform: translateY(5px);
          transform: translateY(5px);
}

.sec1-tab-btn1.active {
  background: url(../images/sec1-btn1-ac.png) no-repeat center top;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
}

.sec1-tab-btn2 {
  background: url(../images/sec1-btn2.png) no-repeat center top;
  -webkit-transform: translateY(5px);
          transform: translateY(5px);
}

.sec1-tab-btn2.active {
  background: url(../images/sec1-btn2-ac.png) no-repeat center top;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
}

.sec1-tab-btn3 {
  background: url(../images/sec1-btn3.png) no-repeat center top;
  -webkit-transform: translateY(5px);
          transform: translateY(5px);
}

.sec1-tab-btn3.active {
  background: url(../images/sec1-btn3-ac.png) no-repeat center top;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
}

.sec1-tab-btn4 {
  background: url(../images/sec1-btn4.png) no-repeat center top;
  -webkit-transform: translateY(5px);
          transform: translateY(5px);
}

.sec1-tab-btn4.active {
  background: url(../images/sec1-btn4-ac.png) no-repeat center top;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
}

.sec1-tab-contents {
  z-index: 10;
}

.sec1-tab-content {
  width: 940px;
  min-height: 460px;
  display: none;
  margin: 60px auto 0 auto;
  padding: 40px 60px;
  border-radius: 20px;
  background: rgba(48, 43, 58, 0.9);
  color: #fff;
  line-height: 1.8;
  font-size: 16px;
  border: 4px solid #7f4d1e;
  -webkit-box-shadow: 0 0 0 4px #160e0b, 0 0 13px 3px #ecb9ff;
          box-shadow: 0 0 0 4px #160e0b, 0 0 13px 3px #ecb9ff;
}

.sec1-tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: -4px;
}

.sec1-tab-content.active {
  display: block;
}

.sec1-event-info ol > li {
  margin-left: 1em;
}

.sec1-pic {
  position: absolute;
  width: 916px;
  height: 697px;
  background: url(../images/sec1-pic.png) no-repeat center top;
  z-index: 5;
  top: 180px;
  left: -420px;
}

.sec1-notice-btn {
  width: 260px;
  height: 70px;
  background: #694115;
  border-radius: 20px;
  border: 4px solid #7f4d1e;
  -webkit-box-shadow: 0 0 0px 4px #160e0b;
          box-shadow: 0 0 0px 4px #160e0b;
  font-size: 22px;
  font-weight: 900;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #d7cbbe;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  margin: 50px auto 0 auto;
  outline: none;
  cursor: pointer;
  z-index: 20;
}
.sec1-notice-btn img {
  margin-right: 5px;
}
.sec1-notice-btn:hover {
  background: #724719;
}

.subtitle {
  width: 100%;
  height: 62px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 20px;
}

.subtitle-m {
  display: none;
}

.sec2 {
  padding-top: 80px;
}

.sec2-title {
  text-align: center;
  margin-bottom: 20px;
}

.game-intro {
  width: 606px;
  height: 784px;
  margin: 0 auto;
}

.game-intro-frame {
  position: absolute;
  top: 0;
  left: 0;
  width: 606px;
  height: 784px;
  z-index: 10;
  pointer-events: none;
  background: url(../images/intro-frame.png) no-repeat center top;
}

.intro-pic {
  position: absolute;
  bottom: -23px;
  right: -210px;
  width: 562px;
  height: 463px;
  background: url(../images/intro-pic1.png) no-repeat center top;
}

.eggs {
  -webkit-animation: float 3s ease-in-out infinite;
          animation: float 3s ease-in-out infinite;
}

.egg-green {
  width: 143px;
  height: 156px;
  background: url(../images/intro-egg-g.png) no-repeat center top;
  position: absolute;
  top: 54px;
  left: 180px;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}

.egg-blue {
  width: 170px;
  height: 188px;
  background: url(../images/intro-egg-b.png) no-repeat center top;
  position: absolute;
  top: 115px;
  right: -30px;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

.egg-red {
  width: 243px;
  height: 280px;
  background: url(../images/intro-egg-r.png) no-repeat center top;
  position: absolute;
  bottom: 220px;
  left: -60px;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}

@-webkit-keyframes float {
  0%, 100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  50% {
    -webkit-transform: translateY(-8px);
            transform: translateY(-8px);
  }
}

@keyframes float {
  0%, 100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  50% {
    -webkit-transform: translateY(-8px);
            transform: translateY(-8px);
  }
}
.swiper {
  position: absolute;
  top: 50px;
  width: 506px;
  height: 675px;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.swiper-button-next {
  right: -150px !important;
  width: 105px;
  height: 71px;
  background: url(../images/intro-next.png) no-repeat center top;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  display: none;
}

.swiper-button-next {
  width: 117px !important;
  height: 83px !important;
  right: -116px !important;
  background: url("../images/intro-next.png") center no-repeat;
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.swiper-button-next:hover {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.swiper-button-prev {
  width: 117px !important;
  height: 83px !important;
  left: -116px !important;
  background: url("../images/intro-prev.png") center no-repeat;
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.swiper-button-prev:hover {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.swiper-pagination {
  bottom: -20px !important;
}

.swiper-pagination-bullet {
  width: 60px !important;
  height: 10px !important;
  background: #fff !important;
  border-radius: 20px !important;
  opacity: 1 !important;
}

.swiper-pagination-bullet-active {
  width: 60px !important;
  height: 10px !important;
  background: #bbe654 !important;
  border-radius: 20px !important;
  -webkit-box-shadow: 0 0 10px rgb(180, 230, 84);
          box-shadow: 0 0 10px rgb(180, 230, 84);
}

.footer {
  width: 100%;
  background: #000;
  color: #7b7b7b;
  padding-top: 17px;
}

.footer-social {
  width: 100%;
  height: 100px;
  background: url("../images/footer-social-bg-pattern.jpg") center repeat;
}

.footer-social-links {
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  margin: 0 auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}
.footer-social-links a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.footer-social-links a:hover {
  opacity: 0.8;
}

.footer-main {
  height: 266px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.footer-inner {
  width: 1280px;
  height: 106px;
  margin: 0 auto;
  padding: 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.footer-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
  font-size: 12px;
  color: #737373;
  height: 106px;
}

.footer-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.bof-news {
  width: 278px;
}
.bof-news img {
  width: 100%;
}

.footer-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 10px;
  height: 106px;
  margin-left: 20px;
}

.lager-logo {
  width: 143px;
  height: 40px;
  margin-right: 10px;
  background: url("../images/lager-logo.png") center no-repeat;
}

.footer-logo-box {
  margin: 10px 0 0 0;
}

.footer-lager-logo {
  margin-right: 20px;
}

.class-level {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 57px;
  height: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.footer-links a {
  color: #737373;
}

.class-txt {
  font-size: 12px;
  color: #737373;
}

.apple-download-btn {
  width: 209px;
  height: 71px;
  display: block;
  margin: 0 auto;
  padding: 0;
  border: none;
  background: none;
  outline: none;
  cursor: pointer;
  -webkit-transition: -webkit-filter 0.3s;
  transition: -webkit-filter 0.3s;
  transition: filter 0.3s;
  transition: filter 0.3s, -webkit-filter 0.3s;
}
.apple-download-btn:hover {
  -webkit-filter: brightness(1.3);
          filter: brightness(1.3);
}

.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.overlay.show {
  display: block;
  opacity: 1;
}

.popup-content {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: rgba(29, 21, 53, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 3px solid #f083fa;
  -webkit-box-shadow: 0 0 0px 10px rgba(255, 255, 255, 0.5);
          box-shadow: 0 0 0px 10px rgba(255, 255, 255, 0.5);
  padding: 50px;
  border-radius: 10px;
  max-width: 90%;
  width: 735px;
  text-align: center;
  z-index: 1001;
  opacity: 0;
  color: #d8cde1;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: transform 0.3s, opacity 0.3s;
  transition: transform 0.3s, opacity 0.3s, -webkit-transform 0.3s;
}

.popup-content.show {
  display: block;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  opacity: 1;
}

.close {
  position: absolute;
  display: block;
  top: 15px;
  right: 15px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  background: url("../images/close-btn.png") center no-repeat;
  z-index: 50;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.close:hover {
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
}

.join-ios-test-btn {
  display: block;
  width: 281px;
  height: 103px;
  margin: 0 auto;
}
.join-ios-test-btn img {
  max-width: 100%;
}

.ios-test-info {
  text-align: left;
  font-size: 16px;
  line-height: 1.5;
}
.ios-test-info li {
  margin-left: 1em;
}

.notice-popup {
  text-align: left;
  font-size: 16px;
  line-height: 1.5;
}
.notice-popup li {
  margin-left: 1em;
}

/* 漢堡選單按鈕 */
.hamburger {
  display: none;
  position: fixed;
  top: 15px;
  width: 50px;
  height: 50px;
  background: linear-gradient(-45deg, rgba(217, 102, 215, 0.95), rgba(112, 42, 166, 0.95), rgba(62, 19, 92, 0.95));
  border-radius: 15px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  z-index: 1000;
  -webkit-box-shadow: 0 0 10px 3px #b1f9ff;
          box-shadow: 0 0 10px 3px #b1f9ff;
}

.hamburger div {
  width: 25px;
  height: 3px;
  background: white;
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  top: 23px;
  left: 13px;
  border-radius: 10px;
}

.hamburger div::before,
.hamburger div::after {
  content: "";
  width: 25px;
  height: 3px;
  background: white;
  position: absolute;
  left: 0;
  border-radius: 10px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.hamburger div::before {
  top: -8px;
}

.hamburger div::after {
  top: 8px;
}

/* 漢堡選單開啟時變叉叉 */
.hamburger.active div {
  background: transparent;
}

.hamburger.active div::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 0;
}

.hamburger.active div::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 0;
}

/* 側邊選單 */
.menu {
  position: fixed;
  top: 0;
  left: -250px;
  width: 250px;
  height: 100%;
  background: -webkit-gradient(linear, right top, left top, from(rgba(217, 102, 215, 0.95)), color-stop(rgba(112, 42, 166, 0.95)), to(rgba(62, 19, 92, 0.95)));
  background: linear-gradient(-90deg, rgba(217, 102, 215, 0.95), rgba(112, 42, 166, 0.95), rgba(62, 19, 92, 0.95));
  color: white;
  padding-top: 40px;
  -webkit-transition: left 0.3s ease;
  transition: left 0.3s ease;
  z-index: 999;
}

.menu.active {
  left: 0;
}

.scroll-btn {
  width: 100%;
  display: block;
  height: 50px;
  text-align: center;
  line-height: 50px;
  color: #fff;
  text-shadow: 0 0 5px #b3f1ff;
}

.m-download-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  margin-top: 20px;
}
.m-download-btn .apple-download-btn {
  margin-top: 10px;
}

.m-menu-logo {
  width: 177px;
  height: 69px;
  background: url("../images/logo-s.png") no-repeat center;
  margin: 0 auto 20px auto;
}

@media (max-width: 767px) {
  .wrap {
    min-width: 0;
  }
  .header {
    height: auto;
    padding-top: 164.84%;
    background: url("../images/header-bg-m.jpg") no-repeat center;
    background-size: contain;
  }
  #particles-js {
    display: none;
  }
  .header-logo, .header-word {
    display: none;
  }
  .top-menu {
    display: none;
  }
  .inner {
    width: 100%;
  }
  .cb-box {
    position: absolute;
    width: 95vw;
    height: 45.315vw;
    padding: 6.2295081967vw 9.3442622951vw;
    background-size: contain;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    top: -68vw;
    left: 50%;
    -webkit-transform: translate(-50%, 0) !important;
            transform: translate(-50%, 0) !important;
    -webkit-animation: none !important;
            animation: none !important;
    animation: none !important;
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
  .cb-title {
    width: 75vw;
    height: 16.8049792531vw;
    max-width: 482px;
    max-height: 108px;
    margin: 0 auto;
    background-size: contain;
  }
  .cb-download-buttons {
    margin-top: 1.95vw;
  }
  .cb-download-buttons a {
    width: 100%;
    height: auto;
  }
  .cb-download-buttons a img {
    width: 100%;
  }
  .cb-download-buttons button {
    width: 100%;
    height: auto;
  }
  .cb-download-buttons button img {
    width: 100%;
  }
  .scroll-line-box {
    display: none;
  }
  .sec1, .sec2 {
    height: auto;
    padding-top: 10vw;
    padding-bottom: 10vw;
    background-repeat: repeat-y;
  }
  .sec1-pic {
    display: none;
  }
  .sec1-title, .sec2-title {
    width: 100%;
  }
  .sec1-title img, .sec2-title img {
    max-width: 100%;
  }
  .sec1-banner {
    max-width: 100%;
  }
  .sec1-tabs {
    display: none;
  }
  .sec1-tab-content {
    display: block;
    width: 90vw;
    margin-top: 7.8vw;
    padding: 6vw 6vw;
    line-height: 1.5;
    font-size: 16px;
    min-height: auto;
  }
  .subtitle {
    display: none;
  }
  .subtitle-m {
    display: block;
  }
  .subtitle-m {
    width: 100%;
    text-align: center;
  }
  .subtitle-m img {
    max-width: 100%;
  }
  .eggs {
    display: none;
  }
  .game-intro {
    width: 78.91vw; /* 606 ÷ 768 * 100 */
    height: 102.08vw; /* 784 ÷ 768 * 100 */
    margin: 10vw auto;
  }
  .game-intro-frame {
    position: absolute;
    top: -7.9vw;
    left: -7.08vw;
    width: 92.84vw; /* 606px */
    height: 120.18vw; /* 784px */
    z-index: 10;
    pointer-events: none;
    background: url(../images/intro-frame.png) no-repeat center top;
    background-size: contain;
  }
  .intro-pic {
    display: none;
  }
  .swiper {
    width: 100%;
    height: 100%;
    top: 0;
  }
  .swiper-button-next, .swiper-button-prev {
    display: none !important;
  }
  .swiper-pagination {
    bottom: -15vw !important;
    opacity: 1 !important;
  }
  .popup-content {
    max-height: 500px;
    overflow: scroll;
    padding: 15% 7% 7% 7%;
  }
  .notice-popup, .ios-test-info {
    font-size: 14px;
  }
  .join-ios-test-btn {
    width: 90%;
  }
  .footer-inner {
    width: 100%;
    height: auto;
    display: block;
  }
  .footer-links {
    text-align: center;
    margin-top: 10px;
  }
  .footer-center a {
    width: 100%;
  }
  .footer-center a img {
    width: 100%;
  }
  .footer-logo-box {
    text-align: center;
  }
  .footer-logo-box img {
    max-width: 100%;
  }
  .copyright {
    text-align: center;
  }
  .footer-social .footer-inner {
    height: 100px !important;
  }
  .footer-main .footer-inner {
    padding: 10% 7%;
  }
  .footer-left, .footer-right {
    display: block;
    height: auto;
  }
  .footer-left {
    margin-bottom: 20px;
  }
  .lager-logo, .class-level {
    margin-bottom: 10px;
  }
  .footer-main {
    height: auto;
  }
  .footer-right {
    margin-top: 10px;
    margin-left: 0;
  }
  .class-level {
    margin: 20px auto 0 auto;
  }
  .footer-lager-logo, .footer-rg-logo {
    margin-bottom: 10px;
  }
  .hamburger {
    display: block;
    opacity: 1;
    right: 15px;
  }
}