body{
  background-color: #000000;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: 'Courier New', Courier, monospace;
}

.p {
  background-color: transparent;
  display: flex;
  flex-direction: row;
  justify-content: center;
  width: 100%;
}

.p .page-wrapper {
  overflow: hidden;
  width: 100%;
  max-width: 640px;
  height: 100vh;
  aspect-ratio: 640 / 1036;
  box-shadow: 0 0 20px 0 rgba(0,0,0,0.1);
  position: relative;
}

.p .page {
  position: relative;
  width: 100%;
  height: 100vh;
  background-image: url(../assets/bg.png);
  background-size: cover;
  background-position: top center;
}

.btn {
  position: absolute;
  width: 60%;
  height: auto;
  aspect-ratio: 818 / 282;
  bottom: 30%;
  left: 50%;
  transform: translateX(-50%);
  background-image: url(../assets/index/btn.svg);
  background-size: cover;
  background-position: center;
  border-radius: 70px;
  box-shadow: 0 0 10px 0 rgba(0,0,0,0.3);
  background-color: transparent;
  z-index: 11;
}

.p .overlap-group {
  position: absolute;
  width: 72.66%;
  height: auto;
  aspect-ratio: 465 / 558;
  top: 15%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.p .input {
  position: absolute;
  width: 100%;
  height: auto;
  aspect-ratio: 1129 / 344;
  top: 25%;
  left: 50%;
  transform: translateX(-50%);
  background-image: url(../assets/index/input.svg);
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 11;
}

.p .input .text-input {
  width: 85%;
  height: 60%;
  background: transparent;
  border: none;
  outline: none;
  font-size: 28px;
  color: #333;
  text-align: center;
  bottom: 0%;
  position: absolute;
  font-weight: bold;
}

.p .slogan {
  width: 100%;
  height: auto;
  aspect-ratio: 1200 / 72;
  margin: 0 auto;
  margin-top: 1%;
  background-image: url(../assets/slogan.png);
  background-size: cover;
  background-position: center;
}

.p .logo {
  width: 75%;
  height: auto;
  aspect-ratio: 1022 / 425;
  margin: 0 auto;
  /* margin-top: 15%; */
  background-image: url(../assets/logo.png);
  background-size: cover;
  background-position: center;
}

.p .earth {
  width: 100%;
  height: auto;
  aspect-ratio: 991 / 964;
  margin: 0 auto;
  margin-top: 25%;
  background-image: url(../assets/earth.png);
  background-size: cover;
  background-position: center;
  z-index: 0;
}

/* 自訂警告提示框樣式 */
.custom-alert {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.alert-content {
  width: 80%;
  max-width: 300px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.alert-message {
  margin-bottom: 20px;
  margin-top: 20px;
  font-size: 16px;
  font-weight: bold;
  color: #333;
}

.alert-button {
  background-color: #b27d2e;
  color: white;
  border-radius: 6px;
  padding: 10px 20px;
  display: inline-block;
  cursor: pointer;
  font-weight: bold;
}

.alert-button:hover {
  background-color: #8c632a;
}
