/* section top */
.section-top {
  align-items: center;
  height: auto;
  /*overflow-x: hidden;/**/
  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-background-wrapper {
  position: relative;
  width: 100%;
}
.top-logo-wrapper {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;  
  margin-top: 0px;
  top: clamp(186px, calc(var(--aspect-base) * 334), 334px);
}
.top-logo-wrapper p {
  user-select: none;
}
.top-background {
  height: clamp(603px, calc(var(--aspect-base) * 1080), 1080px); /**/
  overflow-x: hidden;
  position: relative;
  display: flex;
  justify-content: center;
  object-fit: cover;
  width: 100%;
}
.top-logo {
  margin-top: 0;
  margin-bottom: 16px;
  height: clamp(97px, calc(var(--aspect-base) * 288), 288px);
  filter: drop-shadow(0px 2px 2px rgba(0, 0, 0, 0.25));
  /* outline: 1px solid #ffff00; /**/
}

.scheduled-for-release-category,
.scheduled-for-release-date,
.scheduled-for-release-price
{
  text-align: center;
  font-weight: bold;
  color: rgba(255, 255, 255, .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(16px, calc(var(--aspect-base) * 24), 24px);
  line-height: clamp(24px, calc(var(--aspect-base) * 36), 36px);
  /* margin-bottom: 24px; */
  margin-top: clamp(60px, calc(var(--aspect-base) * 140), 140px);
}
.scheduled-for-release-price {
  font-size: clamp(16px, calc(var(--aspect-base) * 24), 24px);
  line-height: clamp(24px, calc(var(--aspect-base) * 27), 27px);
  margin-top: 8px;
}

.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;
  }
}

@media only screen and (max-width: 960px) {
  .section-top {
    margin: 64px 0 0 0!important;
    width: 100%;
  }
  .top-logo-wrapper {
    margin-top: 60px;
  }
  .top-logo {
    margin-top: 0;
  }

  .loading-blur {
    filter: blur(0);
    animation-name: blur;
    animation-duration: 2s;
    margin-top: 0;
  }

  .scheduled-for-release-date {
    margin-bottom: 16px;
  }

  @keyframes blur {
    0% {
      filter: blur(10px);
    }
    100% {
      filter: blur(0);
    }
  }
    
}
