@charset "UTF-8";
@keyframes open-left {
  0% {
    transform: translateX(0) translateY(-50%) scaleX(1);
    transform-origin: right center;
    height: 100%;
  }
  33% {
    transform: translateX(0) translateY(-50%) scaleX(1.5);
    transform-origin: right center;
    height: 150%;
  }
  100% {
    transform: translateX(-100%) translateY(-50%) scaleX(1.5);
    transform-origin: right center;
    height: 150%;
  }
}
@keyframes open-right {
  0% {
    transform: translateX(0) translateY(-50%) scaleX(1);
    transform-origin: left center;
    height: 100%;
  }
  33% {
    transform: translateX(0) translateY(-50%) scaleX(1.5);
    transform-origin: left center;
    height: 150%;
  }
  100% {
    transform: translateX(100%) translateY(-50%) scaleX(1.5);
    transform-origin: left center;
    height: 150%;
  }
}
@keyframes move {
  to {
    background-position-y: 2000px;
  }
}
@keyframes bg-shift {
  0% {
    background-position: 0 -25px;
  }
  100% {
    background-position: 0 25px;
  }
}
@keyframes tosee {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes twinkle {
  0%, 100% {
    opacity: 0.3;
  }
  50% {
    opacity: 1;
  }
}
@keyframes open-next-left {
  0% {
    transform: translateX(0) translateY(-50%);
    transform-origin: right center;
    height: 50%;
    width: 50%;
  }
  100% {
    transform: translateX(0) translateY(-50%);
    transform-origin: right center;
    height: 100%;
    width: 100%;
  }
}
@keyframes open-next-right {
  0% {
    transform: translateX(0) translateY(-50%);
    transform-origin: left center;
    height: 50%;
    width: 50%;
  }
  100% {
    transform: translateX(0) translateY(-50%);
    transform-origin: left center;
    height: 100%;
    width: 100%;
  }
}
@keyframes fly {
  0% {
    transform: translateY(0px) rotate(10deg);
  }
  50% {
    transform: translateY(20px) rotate(10deg);
  }
  100% {
    transform: translateY(0px) rotate(10deg);
  }
}
@keyframes talk {
  0% {
    transform: rotate(-10deg);
  }
  50% {
    transform: rotate(10deg);
  }
  100% {
    transform: rotate(-10deg);
  }
}
@keyframes titleIn {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  40% {
    transform: scale(0.9);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes jittery {
  5%, 50% {
    transform: scale(1);
  }
  10% {
    transform: scale(0.9);
  }
  15% {
    transform: scale(1.02);
  }
  20% {
    transform: scale(1.02) rotate(-5deg);
  }
  25% {
    transform: scale(1.02) rotate(5deg);
  }
  30% {
    transform: scale(1.02) rotate(-3deg);
  }
  35% {
    transform: scale(1.02) rotate(2deg);
  }
  40% {
    transform: scale(1.02) rotate(0);
  }
}
* {
  box-sizing: border-box;
  font-family: Noto Sans TC;
  user-select: none;
  -webkit-user-select: none; /* for Safari/Chrome */
  -moz-user-select: none; /* for Firefox */
  -ms-user-select: none; /* for IE/Edge */
}

body {
  margin: 0;
  background: radial-gradient(circle at center, #2897c9, #165e5e);
  overflow-x: hidden;
}

.body {
  position: relative;
  width: 100vw;
  height: 100vh;
}
.body .header {
  display: flex;
  z-index: 3;
}
.body .header .logo {
  position: absolute;
  max-width: 250px;
  top: 4%;
  left: 11%;
  z-index: 3;
}
.body .header .logo img {
  width: 100%;
  height: auto;
}
@media (min-width: 991px) and (max-width: 1440px) {
  .body .header .logo {
    max-width: 160px;
  }
}
@media screen and (max-width: 767px) {
  .body .header .logo {
    max-width: 200px;
    top: 5%;
    left: 50%;
    transform: translate(-50%);
  }
}
.body .header .timer {
  position: absolute;
  top: 2%;
  right: 11%;
  z-index: 3;
  font-size: 2.5rem;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .body .header .timer {
    max-width: 100px;
    top: 19%;
    right: 15%;
    font-size: 1rem;
    z-index: 5;
  }
}
.body .header .music-btn {
  position: absolute;
  top: 2%;
  right: 5%;
  z-index: 3;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 2.5rem;
}
@media screen and (max-width: 767px) {
  .body .header .music-btn {
    top: 18.7%;
    right: 7%;
    z-index: 5;
    font-size: 1rem;
  }
}
.body .main {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}
.body .main .image-wrapper {
  overflow: hidden;
  width: 100%;
  display: grid;
  position: absolute;
  z-index: 2;
}
.body .main .image-wrapper.type-1 {
  height: 55vw;
}
.body .main .image-wrapper.type-1 .bottom {
  transform: perspective(620px) rotateX(70deg);
  bottom: -10%;
}
.body .main .image-wrapper.type-2 {
  height: 61vw;
  bottom: 0;
}
.body .main .image-wrapper.type-2 .bottom {
  transform: perspective(620px) rotateX(120deg);
  top: 10%;
}
.body .main .image-wrapper .bottom {
  position: absolute;
  z-index: 3;
  width: 100%;
  height: 100%;
  clip-path: polygon(0 100%, 0 55%, 100% 55%, 100% 100%);
}
.body .main .image-wrapper .ground {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 53%;
  background: repeating-linear-gradient(white 2px, transparent 3px, transparent 80px), repeating-linear-gradient(90deg, white 2px, transparent 3px, transparent 80px);
  filter: drop-shadow(0 0 1px gray) drop-shadow(0 0 3px gray) drop-shadow(0 0 7px gray);
  animation: move 10s linear infinite;
  opacity: 0.8;
}
.body .main .door-left {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50%;
  height: 70%;
  z-index: 4;
  opacity: 0.9;
  overflow-x: visible;
  left: 0;
}
.body .main .door-left .left {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 50%;
  transform: translateY(-50%);
  background-size: 100% 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-image: url("../images/door-left.png");
  left: 0;
}
.body .main .door-left .left.open-left {
  animation: open-left 1s ease forwards;
}
.body .main .door-right {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50%;
  height: 70%;
  z-index: 4;
  opacity: 0.9;
  overflow-x: visible;
  right: 0;
}
.body .main .door-right .right {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 50%;
  transform: translateY(-50%);
  background-size: 100% 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-image: url("../images/door-right.png");
  right: 0;
}
.body .main .door-right .right.open-right {
  animation: open-right 1s ease forwards;
}
.body .main .door-next-left {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50%;
  height: 70%;
  z-index: 3;
  opacity: 0.9;
  overflow-x: visible;
  left: 0;
}
.body .main .door-next-left .left {
  position: absolute;
  width: 0%;
  height: 0%;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background-size: 100% 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-image: url("../images/door-left.png");
}
.body .main .door-next-left .left.open-next-left {
  animation: open-next-left 0.7s ease 0.375s forwards;
}
.body .main .door-next-right {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50%;
  height: 70%;
  z-index: 3;
  opacity: 0.9;
  overflow-x: visible;
  right: 0;
}
.body .main .door-next-right .right {
  position: absolute;
  width: 0%;
  height: 0%;
  top: 50%;
  transform: translateY(-50%);
  background-size: 100% 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-image: url("../images/door-right.png");
}
.body .main .door-next-right .right.open-next-right {
  animation: open-next-right 0.7s ease 0.375s forwards;
}
.body .main .outer-frame {
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100vw - 2rem);
  height: calc(100vh - 2rem);
  border: 1px solid #fff;
  pointer-events: none;
  z-index: 3;
  margin: 1rem;
}
@media screen and (max-width: 767px) {
  .body .main .outer-frame {
    display: none;
  }
}
.body .main .back {
  display: flex;
  position: absolute;
  max-width: 1500px;
  width: 85%;
  height: 80vh;
  padding: 3% 6% 6%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
  animation: tosee 2s ease-in-out -0.375s forwards;
  background-image: url("../images/back2.png");
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}
@media (min-width: 768px) and (max-width: 991px) {
  .body .main .back {
    height: 80vh;
    padding: 10% 6% 6%;
  }
}
@media screen and (max-width: 767px) {
  .body .main .back {
    height: 65vh;
    padding: 10% 6%;
  }
}
.body .main .section1 {
  display: flex;
  align-self: center;
}
.body .main .section1 .title {
  padding: 0% 6%;
}
@media (min-width: 768px) and (max-width: 991px) {
  .body .main .section1 .title {
    padding: 0% 3%;
  }
}
.body .main .section1 .title img {
  width: 85%;
}
@media (min-width: 768px) and (max-width: 991px) {
  .body .main .section1 .title img {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .body .main .section1 .title img {
    width: 100%;
  }
}
.body .main .section2 {
  display: flex;
  flex-direction: column;
}
.body .main .section2 .pic {
  position: absolute;
}
.body .main .section2 .pic.battery {
  width: 180px;
  left: -5%;
  top: 10%;
  transform: rotate(-10deg);
  animation: talk 3.5s -0.5s ease infinite;
}
@media screen and (max-width: 767px) {
  .body .main .section2 .pic.battery {
    width: 100px;
  }
}
.body .main .section2 .pic.battery2 {
  right: -6%;
  top: unset;
  bottom: -7%;
  width: 20%;
  -o-object-fit: contain;
     object-fit: contain;
  animation: fly 2.5s linear -0.8s infinite;
}
@media screen and (max-width: 767px) {
  .body .main .section2 .pic.battery2 {
    width: 100px;
  }
}
.body .main .section3 {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.body .main .section3 .pic {
  position: absolute;
}
.body .main .section3 .pic.battery {
  width: 200px;
  left: -7%;
  top: unset;
  bottom: 0;
  transform: rotate(-10deg);
}
@media screen and (max-width: 767px) {
  .body .main .section3 .pic.battery {
    width: 100px;
    left: -6%;
  }
}
.body .main .section3 .pic.battery2 {
  right: -6%;
  top: unset;
  bottom: -7%;
  width: 20%;
  -o-object-fit: contain;
     object-fit: contain;
  transform: rotate(10deg);
}
@media screen and (max-width: 767px) {
  .body .main .section3 .pic.battery2 {
    width: 100px;
  }
}
.body .main .section4 {
  display: flex;
  flex-direction: column;
}
.body .main .section4 .ans {
  pointer-events: none;
}
.body .main .section4 .ans::before {
  display: none;
}
.body .main .section4 .pic {
  position: absolute;
}
.body .main .section4 .pic.battery {
  width: 200px;
  left: -7%;
  top: unset;
  bottom: 0;
  transform: rotate(-10deg);
}
@media screen and (max-width: 767px) {
  .body .main .section4 .pic.battery {
    width: 100px;
    left: -6%;
    bottom: -10%;
  }
}
.body .main .section4 .pic.battery2 {
  right: -6%;
  top: unset;
  bottom: -7%;
  width: 20%;
  -o-object-fit: contain;
     object-fit: contain;
  transform: rotate(10deg);
}
.body .main .section4 .explanation-btn {
  position: relative;
  bottom: 0;
  left: 0;
  font-size: 1.5rem;
  color: #fff;
  padding: 1% 3% 1.5%;
  cursor: default;
  transform: none;
  text-shadow: 1px 1px 0 #f5821f, 2px 2px 0 #f5821f, 3px 3px 0 #f5821f, 4px 4px 0 #f5821f, 5px 5px 0 #f5821f;
  background-image: url("../images/btn.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  filter: none;
}
@media screen and (max-width: 767px) {
  .body .main .section4 .explanation-btn {
    font-size: 0.8rem;
    text-shadow: none;
  }
}
.body .main .section5 {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.body .main .section5 h2 img {
  max-width: 45%;
}
@media (min-width: 768px) and (max-width: 991px) {
  .body .main .section5 h2 {
    max-width: 100%;
  }
  .body .main .section5 h2 img {
    max-width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .body .main .section5 h2 {
    max-width: 100%;
  }
  .body .main .section5 h2 img {
    max-width: 100%;
  }
}
.body .main .section5 .row img {
  max-width: 500px;
  animation: titleIn 1s 0.5s 1, jittery 4s infinite;
}
@media (min-width: 768px) and (max-width: 1440px) {
  .body .main .section5 .row img {
    width: 40%;
  }
}
.body .main .section5 .row p {
  align-content: center;
  text-align: center;
}
@media (min-width: 768px) and (max-width: 991px) {
  .body .main .section5 .row {
    flex: 1;
    align-content: center;
  }
  .body .main .section5 .row img {
    -o-object-fit: contain;
       object-fit: contain;
  }
}
@media screen and (max-width: 767px) {
  .body .main .section5 .row {
    align-content: center;
    flex-direction: column;
  }
  .body .main .section5 .row img {
    -o-object-fit: contain;
       object-fit: contain;
    margin: auto;
    width: 70%;
  }
  .body .main .section5 .row p {
    font-size: 1.2rem;
    padding: 5% 8%;
  }
}
.body .main .section5 .pic {
  position: absolute;
}
.body .main .section5 .pic.phoenix {
  left: -5%;
  bottom: -5%;
}
@media screen and (max-width: 767px) {
  .body .main .section5 .pic.phoenix {
    bottom: 10%;
  }
}
.body .main .section5 .pic.battery3 {
  right: -6%;
  top: unset;
  bottom: -7%;
  width: 25%;
  -o-object-fit: contain;
     object-fit: contain;
  transform: rotate(10deg);
  animation: fly 2.5s linear -0.8s infinite;
}
@media screen and (max-width: 767px) {
  .body .main .section5 .pic.battery3 {
    bottom: 10%;
  }
}
.body .main .section5 a {
  text-decoration: none;
  color: #fff;
}
.body .main .section5 a:hover {
  color: #fff;
}
.body .title {
  flex: 1;
  align-content: center;
  color: #fff;
  font-size: 2.5rem;
  text-align: center;
}
@media (min-width: 768px) and (max-width: 1440px) {
  .body .title {
    font-size: 2rem;
    margin: 0;
  }
}
@media screen and (max-width: 767px) {
  .body .title {
    font-size: 1.2rem;
    margin: 0;
  }
}
.body .ans-area {
  justify-content: space-around;
  margin-top: 3%;
  flex: auto;
}
@media (min-width: 768px) and (max-width: 991px) {
  .body .ans-area {
    margin: 0;
    flex: auto;
    align-content: center;
    flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  .body .ans-area {
    margin-top: 1.5rem;
    margin: 0;
    flex: auto;
    align-content: center;
    flex-direction: column;
  }
}
.body .ans-area .ans {
  display: flex;
  position: relative;
  flex-direction: column;
  align-items: center;
  width: 35%;
  background: #fff;
  border-radius: 50px;
  border: #2897c9 5px solid;
  transition: 0.2s all;
  cursor: pointer;
  max-width: 450px;
  max-height: 400px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .body .ans-area .ans {
    width: 60%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 767px) {
  .body .ans-area .ans {
    width: 70%;
    margin: 0 auto;
  }
}
.body .ans-area .ans:hover {
  border: #ffd700 20px solid;
  transition: 0.2s all;
  box-shadow: inset 0 0 20px 5px rgba(0, 0, 0, 0.4);
}
.body .ans-area .ans:hover::before {
  width: 100px;
  height: 100px;
  top: -60px;
  left: -60px;
  transition: 0.3s all;
}
@media screen and (max-width: 767px) {
  .body .ans-area .ans:hover {
    border: #ffd700 10px solid;
  }
  .body .ans-area .ans:hover::before {
    width: 55px;
    height: 55px;
    top: -25px;
    left: -25px;
  }
}
.body .ans-area .ans.active {
  border: #ffd700 20px solid;
  transition: 0.2s all;
  box-shadow: inset 0 0 20px 5px rgba(0, 0, 0, 0.4);
}
.body .ans-area .ans.active::before {
  width: 100px;
  height: 100px;
  top: -60px;
  left: -60px;
  transition: 0.3s all;
}
@media screen and (max-width: 767px) {
  .body .ans-area .ans.active {
    border: #ffd700 10px solid;
  }
  .body .ans-area .ans.active::before {
    width: 55px;
    height: 55px;
    top: -25px;
    left: -25px;
  }
}
.body .ans-area .ans img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  padding: 5%;
}
.body .ans-area .ans p {
  font-size: 1.2rem;
  color: #000;
  text-align: center;
  margin-top: -5%;
}
@media screen and (max-width: 767px) {
  .body .ans-area .ans p {
    font-size: 0.8rem;
    margin-top: 0;
  }
}
.body .ans-area .ans::before {
  content: "";
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 70px;
  top: -30px;
  left: -30px;
  font-size: 2.5rem;
  border-radius: 50%;
  padding: 1px;
  background-image: url("../images/label.png");
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  .body .ans-area .ans::before {
    width: 50px;
    height: 50px;
    top: -15px;
    left: -15px;
    font-size: 1rem;
  }
}
.body .ans-area .ans:nth-child(1)::before {
  content: "A";
}
.body .ans-area .ans:nth-child(2)::before {
  content: "B";
}
.body .btn {
  filter: drop-shadow(0px 10px 10px rgb(0, 0, 0));
  transition: 0.5s all;
  position: absolute;
  bottom: -3%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2.5rem;
  color: #fff;
  padding: 1% 3% 1.5%;
  font-weight: 500;
  text-shadow: 1px 1px 0 #f5821f, 2px 2px 0 #f5821f, 3px 3px 0 #f5821f, 4px 4px 0 #f5821f, 5px 5px 0 #f5821f;
  cursor: pointer;
  background-image: url("../images/btn.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
}
.body .btn:hover {
  bottom: -5%;
  filter: drop-shadow(0px 0px 0px rgb(0, 0, 0));
}
@media screen and (max-width: 767px) {
  .body .btn {
    font-size: 1.5rem;
    padding: 1% 10% 1.5%;
    white-space: nowrap;
    bottom: 0;
  }
}
.body .winbtn {
  transform: translateX(-100%);
}
.body .star {
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 2px;
  background: white;
  border-radius: 50%;
  opacity: 0.8;
  animation: twinkle 3s infinite ease-in-out;
}
.body .text {
  color: #fff;
  font-size: 2rem;
  text-align: center;
  padding: 0 5rem;
  line-height: 1.8;
  flex: auto;
}
@media screen and (max-width: 767px) {
  .body .text {
    font-size: 1.2rem;
    margin-top: 1rem;
    padding: 0 1%;
  }
}
.body .pic {
  position: absolute;
}
.body .pic.battery {
  left: -5%;
  top: 33%;
  width: 20%;
  transform: rotate(-10deg);
  animation: talk 3.5s -0.5s ease infinite;
}
@media screen and (max-width: 767px) {
  .body .pic.battery {
    top: 65%;
    width: 30%;
  }
}
.body .pic.battery2 {
  right: 18%;
  top: -11%;
  width: 20%;
  -o-object-fit: contain;
     object-fit: contain;
  transform: rotate(10deg);
  animation: fly 2.5s linear -0.8s infinite;
}
@media screen and (max-width: 767px) {
  .body .pic.battery2 {
    width: 30%;
    top: 15%;
    right: 15%;
  }
}
.body .pic.phoenix {
  right: 0;
  bottom: 0;
  width: 15%;
}
@media screen and (max-width: 767px) {
  .body .pic.phoenix {
    width: 25%;
  }
}
.body .pic.Speechbubble {
  right: -2%;
  top: 5%;
  width: 20%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  .body .pic.Speechbubble {
    width: 50%;
    right: -8%;
    top: 4%;
  }
}
.body .explanation-text {
  color: #fff;
  font-size: 2.5rem;
  padding: 5% 1%;
}
@media (min-width: 768px) and (max-width: 1440px) {
  .body .explanation-text {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .body .explanation-text {
    font-size: 0.8rem;
  }
}

/* 答案圖示定位在畫面中間 */
#result-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 30%;
  z-index: 9999;
  display: none; /* 預設隱藏 */
}
@media screen and (max-width: 767px) {
  #result-icon {
    width: 50%;
  }
}

/* 晃動動畫 */
@keyframes shake {
  0% {
    transform: translate(-50%, -50%) translateX(0);
  }
  20% {
    transform: translate(-50%, -50%) translateX(-10px);
  }
  40% {
    transform: translate(-50%, -50%) translateX(10px);
  }
  60% {
    transform: translate(-50%, -50%) translateX(-10px);
  }
  80% {
    transform: translate(-50%, -50%) translateX(10px);
  }
  100% {
    transform: translate(-50%, -50%) translateX(0);
  }
}
.shake {
  animation: shake 0.4s ease;
}

.name-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.name-modal .name-modal-content {
  color: #fff;
  background-image: url("../images/name-input.png");
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  width: 40%;
  padding: 5% 2%;
  text-align: center;
}
@media (min-width: 768px) and (max-width: 991px) {
  .name-modal .name-modal-content {
    width: 80%;
    padding: 10% 2%;
  }
}
@media screen and (max-width: 767px) {
  .name-modal .name-modal-content {
    width: 95%;
    padding: 15% 2%;
  }
}
.name-modal .name-modal-content h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #ffffff;
  text-shadow: 0 0 5px #00ccff;
}
@media screen and (max-width: 767px) {
  .name-modal .name-modal-content h2 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .name-modal .name-modal-content h2 {
    margin-bottom: 0.5rem;
  }
}
.name-modal .name-modal-content input {
  width: 65%;
  padding: 0.6rem 1rem;
  font-size: 1rem;
  font-family: "Orbitron", sans-serif;
  color: #000;
  border: 2px solid #00ffea;
  border-radius: 8px;
  box-shadow: 0 0 10px #00ffaa, inset 0 0 8px #00ffaa;
  outline: none;
  transition: all 0.3s ease;
}
.name-modal .name-modal-content input:focus {
  border-color: #00ccff;
  box-shadow: 0 0 12px #00ccff, inset 0 0 8px #00ccff;
}
@media screen and (max-width: 767px) {
  .name-modal .name-modal-content input {
    padding: 10px;
  }
}
.name-modal .name-modal-content button {
  margin-top: 1.5rem;
  padding: 0.5rem 2rem;
  background: #00ccff;
  color: #000;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  box-shadow: 0 0 10px #00ccff;
  cursor: pointer;
  transition: background 0.3s ease;
}
.name-modal .name-modal-content button:hover {
  background: #00dabf;
}
@media screen and (max-width: 767px) {
  .name-modal .name-modal-content button {
    margin-top: 0.5rem;
  }
}
.name-modal .name-modal-content .BTN {
  width: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: space-around;
  white-space: nowrap;
}
.name-modal .name-modal-content .BTN a {
  margin-top: 1rem;
  padding: 0.5rem 2rem;
  background: #00ccff;
  color: #000;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  box-shadow: 0 0 10px #00ccff;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.3s ease;
}
.name-modal .name-modal-content .BTN a:hover {
  background: #00dabf;
}
@media screen and (max-width: 767px) {
  .name-modal .name-modal-content .BTN a {
    margin-top: 0.5rem;
    padding: 0.5rem 1rem;
  }
}

.animate__tada input {
  border: 2px solid red !important;
}

.headerbtn1 {
  filter: drop-shadow(0px 10px 10px rgb(0, 0, 0));
  transition: 0.5s all;
  position: absolute;
  bottom: -3%;
  left: 50%;
  transform: translateX(-100%);
  font-size: 2rem;
  color: #fff;
  padding: 1% 3% 1.5%;
  font-weight: 500;
  text-shadow: 1px 1px 0 #f5821f, 2px 2px 0 #f5821f, 3px 3px 0 #f5821f, 4px 4px 0 #f5821f, 5px 5px 0 #f5821f;
  cursor: pointer;
  text-decoration: none;
  background-image: url("../images/btn.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
}
.headerbtn1:hover {
  bottom: -5%;
  filter: drop-shadow(0px 0px 0px rgb(0, 0, 0));
  color: #fff;
}
@media screen and (max-width: 767px) {
  .headerbtn1 {
    font-size: 1.5rem;
    padding: 1% 10% 1.5%;
    white-space: nowrap;
    bottom: 0;
  }
}

.headerbtn2 {
  filter: drop-shadow(0px 10px 10px rgb(0, 0, 0));
  transition: 0.5s all;
  position: absolute;
  bottom: -3%;
  left: 50%;
  font-size: 2rem;
  color: #fff;
  padding: 1% 3% 1.5%;
  font-weight: 500;
  text-shadow: 1px 1px 0 #f5821f, 2px 2px 0 #f5821f, 3px 3px 0 #f5821f, 4px 4px 0 #f5821f, 5px 5px 0 #f5821f;
  cursor: pointer;
  background-image: url("../images/btn.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
}
.headerbtn2:hover {
  bottom: -5%;
  filter: drop-shadow(0px 0px 0px rgb(0, 0, 0));
  color: #fff;
}
@media screen and (max-width: 767px) {
  .headerbtn2 {
    font-size: 1.5rem;
    padding: 1% 10% 1.5%;
    white-space: nowrap;
    bottom: 0;
  }
}/*# sourceMappingURL=index.css.map */