@keyframes showStar {
  0% {transform: scale(0)}
  100% {transform: scale(1)}
}

@keyframes spinStar {
  100% {transform: rotate(360deg);}
}

@keyframes logoShowUpMobile {
  0% {top:25px; opacity: 0}
  100% {top: 15px; opacity: 1}
}

@keyframes showUp {
  0% {bottom: -20px; opacity: 0}
  100% {bottom: 0px; opacity: 1}
}

@keyframes landShowUp {
  0% {right: 10px; opacity: 0}
  100% {right: 30px; opacity: 1}
}

@keyframes landShowUpMobile {
  0% {right: 10px; opacity: 0}
  100% {right: 10px; opacity: 1}
}

@keyframes showFooter {
  0% {opacity: 0}
  100% {opacity: 1}
}

@keyframes footerLine {
  0% {transform: scaleX(0.1)}
  100% {transform: scaleX(1)}
}

* {
  font-family: 'Montserrat', Helvetica, Arial, sans-serif;
}

html {
  display: none;
}

body {
  background: linear-gradient(35deg, #0a0502 85%, #522910);
  font-family: "Noto Sans", Arial, Helvetica, sans-serif;
  margin: 0px;
}

.messageBox {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.3);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
}

.messageBox .message {
  width: 360px;
  height: 58px;
  font-size: 16px;
  color: white;
  text-align: center;
  line-height: 58px;
  cursor: pointer;
}

.messageBox .message.success {
  background: #1f1f1f;
}

.messageBox .message.failed {
  background: #f44434;
}

.mainBox {
  width: 100%;
  display: flex;
}

.formBox {
  width: 100%;
}

.poster {
  position: relative;
  width: 50%;
  height: 100vh;
  overflow: hidden;
  z-index: 10;
  text-align: center;
  background-image: url(/img/mirror-con-desktop.jpg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.poster img {
  height: 100%;
}

.informationBoxOuter {
  width: 50%;
  height: 100vh;
  display: flex;
  align-items: center;
  flex-direction: column;
  position: relative;
  overflow: auto;
}

.informationBox {
  width: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  margin-top: 90px;
}

.title {
  display: inline-block;
  margin-top: 0px;
  margin-bottom: 20px;
  padding-left: 20px;
  padding-right: 20px;
  font-size: 24px;
  background-image: linear-gradient(131deg, #ff1854, #ffe073);
  line-height: 1.4;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.app-promo-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-position: 0px 0px, 50% 50%;
  background-size: auto, contain;
  background-repeat: repeat, no-repeat;
  color: #888;
  text-align: center;
}

.event-logo-container {
  padding-left: 20px;
  padding-right: 20px;
  margin: 40px auto 0px auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.event-logo-image {
  margin-bottom: 10px;
}

.app-download-flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 16px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
}

.app-badges {
  cursor: pointer;
}

.badge-image {
  height: 48px;
}

.app-download-container {
  color: #888;
  text-align: center;
}

.stay-tuned-container {
  padding-top: 20px;
  padding-bottom: 20px;
}

.artist-image {
  width: 100%;
}



.mobileHeader {
  display: none;
}

.mobileBG {
  display: none;
}

.langBox {
  width: 90px;
  position: absolute;
  top: 20px;
  opacity: 0;
  color: white;
  font-size: 16px;
  text-align: center;
  z-index: 100;
  animation: landShowUp 2s linear 4s 1 forwards;
}

.langBox::before {
  content: '';
  position: absolute;
  top: 0px;
  left: -20px;
  display: block;
  width: 24px;
  height: 24px;
  background:url('/img/language.png');
}

.langBox .lang {
  width: 100%;
  height: 24px;
  border: 0;
  background: none;
  color: white;
  font-size: 16px;
  text-align: center;
  cursor: pointer;
}

.imgLogom {
  display: none;
}

.imgLogod {
  position: relative;
  margin-bottom: 25px;
  bottom: -20px;
  opacity: 0;
  animation: showUp 2s ease-in-out forwards;
}

.imgLogod img {
  width: 242px;
}

#download-instruction {
  margin-bottom: 20px;
}

.footer {
  width: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
}

.footer .line {
  animation: footerLine 3.3s linear;
}

.footer .link {
  margin-top: 10px;
  animation: showFooter 3.3s linear;
}

.footer .link a {
  color: white;
  font-size: 10px;
  line-height: 12px;
  text-decoration: none;
  margin-left: 8px;
}

.footer .link a:first-child {
  margin-left: 0px;
}

.footer .link a:hover {
  text-decoration: underline;
}

.footer .copyright {
  margin-top: 10px;
  animation: showFooter 3.3s linear;
}

.footer .copyright span {
  display: block;
  color: white;
  font-size: 10px;
  line-height: 17px;
}

.footer .copyright #group {
  text-align: right;
}

.line {
  background-color: #a1a1a1;
  border: none;
  height: 1px;
  width: 100%;
}

@media (max-width: 960px) {
  body {
    background: linear-gradient(#0a0502, #0a0502);
  }

  .mainBox {
    display: block;
    flex-direction: column;
  }

  .formBox {
    width: 85%;
    margin: 0px auto;
  }

  .poster {
    width: 100%;
    height: 71vw;
    background-image: url(/img/mirror-con-mobile.jpg);
  }

  .informationBoxOuter {
    width: 100%;
    height: auto;
    top: -10px;
  }

  .informationBox {
    height: auto;
    width: 100%;
    z-index: 12;
    display: block;
    margin-top: 0px;
  }

  .stay-tuned-container {
    padding-top: 0px;
  }

  .title {
    font-size: 24px;
  }

  .app-promo-container {
    font-size: 15px;
  }

  .event-logo-container {
    margin: 20px auto 0px auto;
  }

  .event-logo-image {
    width: 200px;
  }

  .app-download-flex {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }

  .badge-image {
    height: 40px;
  }

  .app-download-container {
    font-size: 15px;
  }

  .mobileHeader {
    display: block;
    height: 60px;
    z-index: 50;
    background: rgb(0,0,0);
    background: linear-gradient(180deg, rgba(0,0,0,0.9318321078431373) 0%, rgba(0,0,0,1) 65%, rgba(0,0,0,0) 100%);
  }

  .langBox {
    width: 70px;
    font-size: 14px;
    animation: landShowUpMobile 2s linear 4s 1 forwards;
  }

  .imgLogom {
    width: 135px;
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 100;  
    display: inline;
    animation: logoShowUpMobile 2s ease-in-out forwards;
  }

  .imgLogod {
    display: none;
  }

  .footer {
    width: 100%;
  }
}
