body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100vh;
  background-color: black;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.noselect {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  height: 100vh;
  max-width: 100%;
  margin: auto;
  aspect-ratio: 1080 / 1920;
}

.background_img {
  position: absolute;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  z-index: -1;
}

.background_img_mobile {
  display: none;
}

.background_img_desktop {
  width: 100%;
  display: block;
}

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

.content {
  position: relative;
  min-height: 100vh;
  aspect-ratio: 1080 / 1920;
  max-width: 100%;
  max-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.top_title_img {
  width: 70%;
  margin-top: 3%;
}

.logo_top {
  width: 65%;
  margin-top: -18%;
  margin-bottom: -15%;
}

.action_title {
  width: 70%;
  margin-top: -2%;
}

.action_container {
  display: flex;
  width: 95%;
  justify-content: center;
}

.action_container .action_button_img {
  width: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 1;
  margin-left: -4%;
  margin-right: -4%;
}

.action_container .action_button_img:hover {
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.8));
}

.action_container .action_button_img:active {
  transform: scale(1.05);
}

.character_img {
  width: 100%;
  margin-top: -3%;
}

.line_img_paragraph {
  width: 90%;
  margin-top: -8%;
  margin-bottom: 4%;
}

.logo_game_img {
  width: 100%;
}

.footer_container {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  padding-bottom: 3%;
}

.footer_container .background {
  position: absolute;
  width: 100%;
  object-fit: cover;
  z-index: 0;
  bottom: 0%;
}

.footer_container .crystal_gems {
  position: absolute;
  width: 100%;
  object-fit: cover;
  z-index: 1;
}

.footer_container .logo {
  width: 75%;
  z-index: 2;
  margin: auto;
  transform: translate(-2%, -17%);
}

.footer_container .footer_bank_app_container {
  z-index: 3;
  display: flex;
  gap: 16px;
  width: 96%;
  margin: auto;
  margin-top: -23%;
}

.footer_container .footer_bank_app_container .footer_bank_app_img {
  flex: 1;
  width: calc(50% - 8px);
}

@media (max-width: 768px) {
  .background_img_mobile {
    display: block;
  }

  .background_img_desktop {
    display: none;
  }
}
