.wrapper, *:before, *:after {
  position: relative;
  margin: 0;
  font-family: "Noto Sans TC", sans-serif, Verdana, Geneva, Tahoma, sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  box-sizing: border-box;
  background-color: #d6dbe0;
}

.pointer {
  cursor: pointer;
}

.kv .blackScreen {
  width: 100%;
  height: 100%;
  background-color: black;
  animation: fade-in 3s forwards;
}
.kv .title {
  width: 35%;
  left: 24%;
  top: 30%;
  animation: zoom-inOut 1.5s infinite;
}
@media screen and (max-width: 991px) {
  .kv .title {
    width: 80%;
    left: 10%;
    top: 45%;
  }
}
.kv .ribbon {
  width: 70%;
  left: 12%;
  top: 16%;
  animation: zoom-inOut 1.7s infinite;
}
@media screen and (max-width: 991px) {
  .kv .ribbon {
    width: 100%;
    left: 0%;
    top: 35%;
  }
}
.kv .logo {
  width: 100px;
  left: 10px;
  top: 10px;
}

.steps .whiteBg {
  background-color: white;
  border-radius: 18px;
  padding: 25% 5% 15% 5%;
  margin-top: -20%;
}
.steps .gift {
  width: 100%;
  max-width: 1300px;
  top: 2%;
  pointer-events: none;
  animation: zoom-inOut 1.7s infinite;
}
@media screen and (max-width: 991px) {
  .steps .gift {
    top: unset;
    bottom: 0;
    width: 70%;
  }
}

.notice {
  background-color: #1e1e25;
  color: white;
}
.notice .gold {
  color: #dfaa43;
}
.notice .border-out {
  outline: #dfaa43 solid 8px;
  border-radius: 16px;
}
.notice .border-in {
  outline: #dfaa43 solid 2px;
  border-radius: 10px;
}
.notice ol {
  margin-left: 1rem;
  margin-bottom: unset;
}

.prizes {
  background-image: url(../images/prizeBg.png);
  background-size: 100%;
  background-position: top center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 991px) {
  .prizes {
    background-size: 520%;
    background-position: top left;
  }
}
.prizes .titleCon {
  position: relative;
  text-align: center;
  container-type: inline-size;
  margin-bottom: -1rem;
}
.prizes .titleCon .titleText {
  position: absolute;
  font-size: clamp(20px, 8cqw, 32px);
  font-weight: bold;
  color: white;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
  top: 37%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.prizes .titleCon .titleBg {
  width: 90%;
  max-width: 427px;
}
.prizes .whiteBg {
  background-color: white;
  border-radius: 16px;
}
.prizes .whiteBg img {
  cursor: pointer;
}
.prizes .whiteBg img:hover {
  transform: translateY(-3px);
  transition: 0.2s;
}

.form .pb-6 {
  padding-bottom: 10rem;
}
@media screen and (max-width: 991px) {
  .form .pb-6 {
    padding-bottom: 3rem;
  }
}
.form .coaches {
  position: absolute;
  width: 160rem;
  max-width: 2000px;
  bottom: 0;
  left: -40rem;
  pointer-events: none;
}
@media screen and (max-width: 991px) {
  .form .coaches {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
  }
}
.form .floor {
  position: absolute;
  background-color: #2d3133;
  width: 150vw;
  height: 6.72rem;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.form .coins-left {
  position: absolute;
  width: 18rem;
  left: -2rem;
  top: -2%;
  animation: zoom-inOut 1.5s infinite;
}
.form .coins-right {
  position: absolute;
  width: 11rem;
  right: -2rem;
  top: unset;
  animation: zoom-inOut 1.5s infinite;
}
@media screen and (max-width: 991px) {
  .form .coins-right {
    top: 100%;
  }
}
.form .fillform {
  width: 75%;
}
@media screen and (max-width: 991px) {
  .form .fillform {
    width: 100%;
  }
}
.form .inputStyle {
  width: 100%;
  border: 0;
  border-radius: 10px;
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.2);
  padding: 0.5rem;
  margin: 0.3rem 0;
}
.form .button {
  display: inline-block;
  width: 100%;
  background-color: #ffd800;
  border-radius: 24px;
  padding: 0.25rem;
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.2);
}

.footer {
  background: #000;
}
.footer .copyright {
  color: white;
}

@keyframes fade-in {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes zoom-inOut {
  0% {
    scale: 1;
  }
  70% {
    scale: 0.97;
  }
  100% {
    scale: 1;
  }
}/*# sourceMappingURL=style.css.map */