/* section top */
.section-top {
  align-items: center;
  height: auto;
  margin: 0 !important;
  user-select: none;
}
.top-content {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.top-logo-wrapper {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 100px;
  top: 0;
  left: 60%;
  z-index: 10;
}
.top-logo-wrapper p {
  user-select: none;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
}
.top-background-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.top-background-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0) 45%, #000000 100%);
  pointer-events: none;
  z-index: 1;
}

.top-background {
  height: clamp(600px, calc(var(--aspect-base) * 720), 960px);
  width: 100%;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 0;
}
.top-logo {
  margin-top: 0;
  margin-bottom: 8px;
  height: clamp(180px, calc(var(--aspect-base) * 500), 500px);
  filter: drop-shadow(0px 2px 2px rgba(0, 0, 0, 0.25));
  width: clamp(200px, calc(var(--aspect-base) * 600), 600px);
}

.scheduled-for-release-category,
.scheduled-for-release-date,
.scheduled-for-release-price {
  text-align: center;
  font-weight: bold;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0px 2px 6px rgba(0, 0, 0, 0.25);
}
.scheduled-for-release-category {
  font-size: clamp(16px, calc(var(--aspect-base) * 24), 24px);
  line-height: clamp(24px, calc(var(--aspect-base) * 36), 36px);
}
.scheduled-for-release-date {
  font-size: clamp(12px, calc(var(--aspect-base) * 20), 20px);
  line-height: clamp(24px, calc(var(--aspect-base) * 36), 36px);
  margin-top: clamp(-160px, calc(var(--aspect-base) * -160), -88px);
}
.scheduled-for-release-price {
  font-size: clamp(12px, calc(var(--aspect-base) * 20), 20px);
  line-height: clamp(24px, calc(var(--aspect-base) * 27), 27px);
}

.loading-blur {
  filter: blur(0);
  animation-name: blur;
  animation-duration: 2s;
  margin: 0;
}

@keyframes blur {
  0% {
    filter: blur(10px);
  }
  100% {
    filter: blur(0);
    margin: 0;
  }
}

.top-image {
  margin-top: 16px;
  width: clamp(200px, calc(var(--aspect-base) * 380), 380px);
  height: auto;
}
.switch2-image {
  width: 72px;
  height: 72px;
  position: absolute;
  top: 0;
  left: 0;
}

.top-logo-wrapper,
.purchase-button {
  opacity: 0;
  transform: translateY(24px);
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.animate-in {
  animation: fadeUp 0.8s ease-out forwards;
}

.top-logo-wrapper.animate-in {
  animation-delay: 0.1s;
}
.purchase-button.animate-in {
  animation-delay: 0.7s;
}

@media (prefers-reduced-motion: reduce) {
  .top-logo-wrapper,
  .purchase-button {
    opacity: 1;
    transform: none;
  }
  .animate-in {
    animation: none;
  }
}

@media only screen and (max-width: 960px) {
  .top-background-wrapper {
    height: 100%;
    width: 100%;
    overflow: hidden;
    position: relative;
    top: -40px;
  }
  .top-background-wrapper::after {
    background: linear-gradient(0deg, rgba(41, 44, 65, 0) 44.75%, #2c2e46 99.8%);
  }

  .section-top {
    width: 100%;
  }

  .top-logo-wrapper {
    width: 100%;
    top: 0;
    left: 0;
    transform: translateY(24px);
    color: var(--text_default, #fff);
  }

  .top-logo-inner {
    position: absolute;
    top: -10%;
  }

  .scheduled-for-release-date,
  .scheduled-for-release-price {
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
  }

  .top-logo {
    width: 350px;
    height: auto;
    margin-top: -144px;
  }

  .top-image {
    width: clamp(345px, calc(var(--aspect-base) * 345), 345px);
    margin-top: 482px;
  }

  .loading-blur {
    filter: blur(0);
    animation-name: blur;
    animation-duration: 2s;
    margin-top: 0;
  }

  .scheduled-for-release-price {
    margin-top: 0;
  }

  @keyframes blur {
    0% {
      filter: blur(10px);
    }
    100% {
      filter: blur(0);
    }
  }

  .switch2-image {
    width: 60px;
    height: 60px;
    z-index: 2;
  }
}
