@charset "UTF-8";
html {
  background: #f5226f;
  min-height: 100vh;
  color: #fff;
  font: 400 60px/1.5 "Noto Sans TC", "微軟正黑體", Arial, Helvetica, sans-serif;
  scroll-behavior: smooth;
  max-width: 100vw;
  overflow-x: hidden;
  overflow-y: auto;
  background: -webkit-gradient(linear, left top, left bottom, from(#ca195a), color-stop(24em, #a11247));
  background: linear-gradient(#ca195a, #a11247 24em);
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

*:not(:focus-visible) {
  outline: none;
}

body {
  margin: 0;
  max-width: 100vw;
  overflow-x: hidden;
  overflow-y: auto;
  background: -webkit-gradient(linear, left top, left bottom, from(#ca195a), color-stop(24em, #a11247));
  background: linear-gradient(#ca195a, #a11247 24em);
}

.bg-area {
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(50% - 16em);
  z-index: -5;
  width: 1920px;
  margin: 0 auto;
  overflow: hidden;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
  background-color: #f5226f;
}

.bg-area img {
  width: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-filter: drop-shadow(0 0.1em 0.15em rgba(51, 0, 0, 0.25));
          filter: drop-shadow(0 0.1em 0.15em rgba(51, 0, 0, 0.25));
}

.bg-area .bg-banner {
  position: absolute;
  top: 7.1em;
  left: 8.2em;
  -webkit-transform-origin: top left;
          transform-origin: top left;
  -webkit-transform: skew(-0.6deg, -21.1deg);
          transform: skew(-0.6deg, -21.1deg);
  z-index: 1;
  width: 9.125em;
  height: 6.225em;
  -o-object-fit: fill;
     object-fit: fill;
  border-radius: .1px;
  -webkit-box-shadow: 0 0 0 .05em #171c61;
          box-shadow: 0 0 0 .05em #171c61;
}

@media (min-width: 1000px) {
  .bg-area::before, .bg-area::after {
    content: "";
    position: absolute;
    display: block;
    top: 26.65em;
    left: 0;
    bottom: 0;
    width: 440px;
    background: url("../_img/bg-center.png") 100% 0 repeat-y;
    -webkit-filter: drop-shadow(0 0.1em 0.15em rgba(51, 0, 0, 0.25));
            filter: drop-shadow(0 0.1em 0.15em rgba(51, 0, 0, 0.25));
  }
  .bg-area::after {
    left: auto;
    top: 16.45em;
    right: 0;
    background: url("../_img/bg-center.png") 0% 0 repeat-y;
  }
}

@media (max-width: 1000px) {
  .bg-area {
    width: 192vw;
  }
}

#main {
  position: relative;
  z-index: 0;
  margin: 0 auto;
  max-width: 1920px;
  -webkit-box-shadow: 0 0 0.75em rgba(0, 0, 0, 0.8);
          box-shadow: 0 0 0.75em rgba(0, 0, 0, 0.8);
}

/*=====================*/
/* TOP SOCIAL-LINK BAR */
#header {
  position: absolute;
  padding: 0 15px;
  height: 108px;
  left: 0;
  right: 0;
  top: 0;
  z-index: 99;
  -webkit-transition: background .7s;
  transition: background .7s;
}

#header::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  z-index: -1;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
  width: 100vw;
  height: 100%;
  background: #fff;
  -webkit-box-shadow: 0 0.05em 0.1em rgba(0, 0, 0, 0.5);
          box-shadow: 0 0.05em 0.1em rgba(0, 0, 0, 0.5);
}

#header .nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 1000px;
  margin: 0 auto;
  height: 100%;
}

#header ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
}

#header li {
  display: inline-block;
}

.logo-link {
  margin-right: auto;
  height: 100%;
  width: 33%;
  background: url("../_img/xinstar-logo.png") center no-repeat;
  background-size: contain;
  -webkit-filter: drop-shadow(0em 0.07rem 0.03rem rgba(0, 0, 0, 0.25));
          filter: drop-shadow(0em 0.07rem 0.03rem rgba(0, 0, 0, 0.25));
}

.logo-link:hover, .logo-link:focus {
  -webkit-filter: drop-shadow(0.01em 0.08rem 0.05rem rgba(0, 0, 0, 0.5)) brightness(1.1);
          filter: drop-shadow(0.01em 0.08rem 0.05rem rgba(0, 0, 0, 0.5)) brightness(1.1);
}

.social-links a {
  display: block;
  width: 88px;
  height: 88px;
  margin-left: 8px;
  font-size: 88px;
  background: url("../_img/link-icons.png") 0 0 no-repeat;
  background-size: 400%;
  -webkit-filter: drop-shadow(0.02rem 0.04rem 0.02rem rgba(0, 0, 0, 0.31));
          filter: drop-shadow(0.02rem 0.04rem 0.02rem rgba(0, 0, 0, 0.31));
}

.social-links a:hover, .social-links a:focus {
  -webkit-filter: drop-shadow(0 0 0.03em #fff);
          filter: drop-shadow(0 0 0.03em #fff);
}

.social-links .fb-link {
  background-position: 0% top;
}

.social-links .fb-link:hover, .social-links .fb-link:focus, .social-links .fb-link:active {
  background-position: 0% bottom;
}

.social-links .yt-link {
  background-position: 33.333% top;
}

.social-links .yt-link:hover, .social-links .yt-link:focus, .social-links .yt-link:active {
  background-position: 33.333% bottom;
}

.social-links .line-link {
  background-position: 66.667% top;
}

.social-links .line-link:hover, .social-links .line-link:focus, .social-links .line-link:active {
  background-position: 66.667% bottom;
}

.social-links .home-link {
  background-position: 100% top;
}

.social-links .home-link:hover, .social-links .home-link:focus, .social-links .home-link:active {
  background-position: 100% bottom;
}

#footer {
  display: block;
  position: relative;
  left: 0;
  right: 0;
  bottom: 0;
  padding: .5em 0 .75em;
}

#footer::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
  left: 50%;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
  width: 100vw;
  background: transparent;
}

.foot {
  width: 7.8em;
  height: 2em;
  margin: 0 auto;
  background: url("../_img/footer.png") no-repeat center;
  background-size: contain;
  -webkit-filter: drop-shadow(0.05em 0.07em 0.1em rgba(51, 0, 0, 0.65));
          filter: drop-shadow(0.05em 0.07em 0.1em rgba(51, 0, 0, 0.65));
}

.foot-wanin {
  float: left;
  display: block;
  width: 79.5%;
  height: 100%;
}

.foot-yoe {
  float: left;
  display: block;
  width: 29%;
  height: 100%;
  margin: 0 5%;
}

/*===================*/
/* MAIN PAGE CONTENT */
.dl-btn-container {
  display: block;
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100vw;
  max-width: 1000px;
  padding-top: 23.15em;
  margin-bottom: .2em;
}

.dl-btn, .play-btn {
  display: block;
  position: absolute;
  bottom: 0;
  width: 8em;
  padding-top: 3.5em;
  border-radius: 1.5em;
  -webkit-transition: -webkit-filter .3s;
  transition: -webkit-filter .3s;
  transition: filter .3s;
  transition: filter .3s, -webkit-filter .3s;
}

.dl-btn:hover, .dl-btn:focus, .dl-btn:active, .play-btn:hover, .play-btn:focus, .play-btn:active {
  background-position: bottom;
}

.dl-btn {
  -webkit-transform-origin: 85% 0%;
          transform-origin: 85% 0%;
  position: absolute;
  left: 2%;
  background: url("../_img/btn-download.png") top no-repeat;
  background-size: cover;
}

.play-btn {
  -webkit-transform-origin: 15% 0%;
          transform-origin: 15% 0%;
  position: absolute;
  right: 2%;
  background: url("../_img/btn-play.png") top no-repeat;
  background-size: cover;
}

.sr-only {
  position: fixed;
  top: -9in;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.section {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}

/*==============*/
/* PAGE CONTENT */
html {
  font: 400 60px/1.5 "Noto Sans TC", "微軟正黑體", Arial, Helvetica, sans-serif;
}

img {
  max-width: 100%;
  display: block;
  width: auto;
  height: auto;
  margin: 0 auto;
}

.content {
  position: relative;
  width: 96%;
  max-width: 960px;
  margin: 1.25em auto .25em;
  font-weight: 550;
}

.content > * {
  font-size: .6em;
}

.content p {
  margin: .5em -.2em;
}

.content.fade-up {
  -webkit-transform: translate(0, 1em);
          transform: translate(0, 1em);
}

.money-float {
  position: absolute;
  z-index: 1;
  right: .35em;
  display: block;
  float: right;
  font-size: 1.5em;
  margin: 1.15em  .35em 0 .35em;
  width: 3.35em;
  height: 1.5em;
}

.money-float::after {
  content: "";
  position: absolute;
  display: block;
  width: 3.35em;
  height: 3.35em;
  border: solid .09em #fdd000;
  border-radius: 100%;
  background: #fff url("../_img/money.png") 48% 65% no-repeat;
  background-size: 90% auto;
  -webkit-box-shadow: 0 0 0 .08em #003087, inset 0 0 0 .08em #003087;
          box-shadow: 0 0 0 .08em #003087, inset 0 0 0 .08em #003087;
}

@supports (shape-outside: polygon(0 1.5em, 5em 1.5em, 5em 3em, 0 3em)) {
  .money-float {
    position: relative;
    shape-outside: polygon(0 1em, 100% 1em, 100% 100%, 0 100%);
  }
}

.text-hilight {
  color: #ed2c31;
}

#event p, #extra p {
  text-align: center;
  font-weight: 550;
  font-size: .51em;
  margin: .5em 0;
}

#event p span, #extra p span {
  color: #e83a68;
}

#event p small, #extra p small {
  font-size: 1em;
  letter-spacing: -.035em;
}

#event p .text-inline, #extra p .text-inline {
  display: inline-block;
}

#event p .text-inline:last-child, #extra p .text-inline:last-child {
  color: inherit;
}

#event a, #extra a {
  color: #00deff;
  text-underline-position: under;
  text-underline-position: below;
}

#event a:visited, #extra a:visited {
  color: #00deff;
}

#extra .title {
  width: 13em;
}

#extra .title-text {
  font-size: .65em;
}

#event p {
  padding: 0 .5em;
}

#rules {
  position: relative;
  z-index: 1;
}

#rules ol, #rules ul {
  font-size: .49em;
  font-size: .45em;
  font-weight: 500;
  margin: .85em 0;
  padding-left: 1em;
  line-height: 1.3;
  text-align: justify;
  letter-spacing: -.035em;
}

#rules li {
  margin: 0 0 .5em 0;
  list-style: none;
}

#rules li::before {
  content: "※";
  position: absolute;
  -webkit-transform: translate(-125%);
          transform: translate(-125%);
}

#event ul {
  text-align: left;
}

.title {
  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;
  position: absolute;
  top: -2.75em;
  left: 50%;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
  width: 10em;
  margin: 0;
  padding: .15em;
  height: 1.75em;
  z-index: 1;
  font-family: Arial, Helvetica, sans-serif;
  word-spacing: 0px;
  font-size: 1em;
  line-height: 1.6;
  background: #e83a68;
  border: .2em solid #ffaebf;
  border-radius: .2em;
  -webkit-box-shadow: 0 0 0 .05em #171c61, inset 0 0 0 .05em #171c61, inset -.15em 0em  #ff004f, inset .15em 0em  #ff004f, inset -.2em 0em  #171c61, inset .2em 0em  #171c61;
          box-shadow: 0 0 0 .05em #171c61, inset 0 0 0 .05em #171c61, inset -.15em 0em  #ff004f, inset .15em 0em  #ff004f, inset -.2em 0em  #171c61, inset .2em 0em  #171c61;
  text-align: center;
  -webkit-perspective: 5em;
          perspective: 5em;
  -webkit-perspective-origin: center;
          perspective-origin: center;
}

.title::before, .title::after {
  content: "";
  position: absolute;
  left: 0;
  height: .5em;
  width: 100%;
  background: #ff7398;
  border: .05em solid #171c61;
  border-radius: .05em;
  -webkit-transform: rotateX(45deg);
          transform: rotateX(45deg);
  -webkit-transform-origin: bottom;
          transform-origin: bottom;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.title::before {
  top: -1.2em;
  left: -.15em;
  width: calc(100% + .3em);
  height: 1em;
  border-radius: .25em .25em .02em .02em;
  border-width: .1em;
  border-bottom-width: .05em;
}

.title::after {
  bottom: 0;
  height: .25em;
}

.title-text {
  display: inline-block;
  font-size: .8em;
  color: #ffe631;
  text-shadow: 0 .03em #171c61, 0 -.03em #171c61, .03em 0 #171c61, -.03em 0 #171c61, .02em .02em #171c61, -.02em .02em #171c61, .02em -.02em #171c61, -.02em -.02em #171c61;
  -webkit-filter: drop-shadow(0 -0.03em #171c61) drop-shadow(0.03em 0 #171c61) drop-shadow(-0.01em 0 #171c61) drop-shadow(0 0.03em #171c61) drop-shadow(0 -0.05em #000);
          filter: drop-shadow(0 -0.03em #171c61) drop-shadow(0.03em 0 #171c61) drop-shadow(-0.01em 0 #171c61) drop-shadow(0 0.03em #171c61) drop-shadow(0 -0.05em #000);
}

.title-text span {
  color: #fff;
}

/* ============= */
/* MODAL WINDOWS */
@media (max-height: 720px) {
  .fixed-content {
    font-size: 6vmin;
  }
}

.border {
  position: relative;
  display: block;
  width: 100%;
  max-width: 1000px;
  margin: 3.33em auto 1.65em;
  background: url("../_img/border-space.png") center no-repeat space, url("../_img/border-center.png") center no-repeat repeat;
  background-size: 100% auto;
  padding: 0 2em 1px;
  -webkit-filter: drop-shadow(0 0.1em 0.15em rgba(51, 0, 0, 0.25));
          filter: drop-shadow(0 0.1em 0.15em rgba(51, 0, 0, 0.25));
}

.border::before, .border::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  z-index: 0;
  width: 100%;
}

.border::before {
  background: url("../_img/border-top.png");
  background-size: 100% 100%;
  height: 2.5em;
  top: -2.25em;
}

.border::after {
  background: url("../_img/border-bottom.png");
  background-size: 100% 100%;
  height: 2em;
  bottom: -1.65em;
}

.border > *:last-child {
  margin-bottom: -1.4em;
}

.border + .border {
  margin-top: 5.1em;
}

.frame {
  display: block;
  position: relative;
  z-index: 1;
  color: #011356;
  text-shadow: -0.01em -0.02em rgba(255, 255, 255, 0.5), 0.01em 0.01em 0.05em rgba(0, 0, 17, 0.25);
  background: url("../_img/screw.svg") 0.25em 0.2em, url("../_img/screw.svg") calc(100% - .25em) 0.2em, url("../_img/screw.svg") 0.25em calc(100% - .2em), url("../_img/screw.svg") calc(100% - .25em) calc(100% - .2em);
  background-size: .35em;
  background-repeat: no-repeat;
  background-color: #fff;
  text-align: center;
  padding: .25em;
  border: .05em solid #0f3378;
  border-radius: .5em;
}

/*==============*/
/* MODAL STYLES */
/* ==================== */
/* JS ANIMATION CLASSES */
.fade-up {
  -webkit-transform: scale(0.5);
          transform: scale(0.5);
  opacity: 0;
  -webkit-transition: opacity 1.6s, -webkit-transform 1s;
  transition: opacity 1.6s, -webkit-transform 1s;
  transition: opacity 1.6s, transform 1s;
  transition: opacity 1.6s, transform 1s, -webkit-transform 1s;
}

.fade-up.faded {
  -webkit-transform: none;
          transform: none;
  opacity: 1;
}

/*=====================*/
/* KEYFRAMES AND MEDIA */
@-webkit-keyframes glow {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes glow {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes pop {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  to {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes pop {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  to {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@-webkit-keyframes fade {
  0% {
    opacity: 0;
    -webkit-backdrop-filter: blur(0);
            backdrop-filter: blur(0);
  }
  to {
    opacity: 1;
    -webkit-backdrop-filter: blur(8px);
            backdrop-filter: blur(8px);
  }
}

@keyframes fade {
  0% {
    opacity: 0;
    -webkit-backdrop-filter: blur(0);
            backdrop-filter: blur(0);
  }
  to {
    opacity: 1;
    -webkit-backdrop-filter: blur(8px);
            backdrop-filter: blur(8px);
  }
}

@media (max-width: 1000px) {
  html {
    font-size: 6vw;
  }
  #header {
    height: 10.8vw;
  }
  .social-links a {
    width: 8.8vw;
    height: 8.8vw;
    margin-left: .8vw;
  }
}

@media (max-width: 399px) {
  #rules ul, #event p, #extra p {
    font-size: 12px;
  }
}
/*# sourceMappingURL=main.css.map */