*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
}

body {
  font-family: "Blackletter", "Fraktur", "Old English Text MT", "Times New Roman", serif;
  color: #f5f5f5;
  overflow-x: hidden;
  background: #000;
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  box-sizing: border-box;
}

.background {
  position: fixed;
  inset: 0;
  background-image: url("https://mr17-1257374412.cos.ap-shanghai.myqcloud.com/background.jpg");
  background-size: cover;
  background-position: center;
  filter: saturate(0.9) brightness(0.82) blur(12px);
  z-index: 0;
  pointer-events: none;
  height: 100dvh;
}

.background::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0.3) 40%,
    rgba(0, 0, 0, 0.7) 100%
  );
}

.page {
  position: relative;
  z-index: 2;
}

.screen {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
}

.screen[data-view] {
  display: none;
}

.screen[data-view].is-active {
  display: flex;
}

.screen-inner {
  width: min(960px, 100%);
  margin: 0 auto;
  padding-top: 5vh;
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 3vw, 2.8rem);
}

.screen-inner--carousel {
  width: 100%;
  max-width: none;
  padding-top: 0;
  gap: 0;
}

.screen--hero {
  padding-top: calc(env(safe-area-inset-top, 0px) + 20px);
}

.screen--hero .screen-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 0;
}

.tab-nav.is-top ~ .page .screen--hero {
  padding-top: calc(env(safe-area-inset-top, 0px) + 60px);
}

.screen--profile {
  padding: 0;
  align-items: stretch;
}

.screen-inner--carousel,
.screen--profile .screen-inner {
  width: 100%;
  max-width: none;
  padding: 0;
}

.hero-content {
  max-width: 620px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  align-items: center;
}

.hero-cover {
  width: min(320px, 70vw);
  aspect-ratio: 1 / 1;
  border-radius: 1.6rem;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  position: relative;
}

.hero-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: inherit;
  pointer-events: none;
}

.hero-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05);
}

.tab-nav.is-top ~ .page .hero-cover {
  margin-top: 3.5rem;
}

.tab-nav:not(.is-top) ~ .page .hero-cover {
  margin-top: 0.5rem;
}

.hero-heading {
  font-size: clamp(1rem, 2.2vw, 1.6rem);
  letter-spacing: 0.45rem;
  text-transform: uppercase;
  margin-bottom: clamp(1rem, 2.5vw, 1.6rem);
  opacity: 0.75;
  transition: opacity 0.4s ease;
}

.hero-heading.is-hidden {
  opacity: 0;
  height: 0;
  margin: 0;
  pointer-events: none;
}

.tagline {
  font-size: clamp(1rem, 2vw, 1.5rem);
  margin-bottom: clamp(1.5rem, 3vw, 2.2rem);
  opacity: 0.85;
}

.tagline--highlight {
  position: relative;
  color: #e5c98f;
  text-shadow: 0 0 10px rgba(229, 201, 143, 0.45);
  background-image: linear-gradient(120deg, rgba(229, 201, 143, 0.2), #e5c98f, rgba(255, 255, 255, 0.85), #e5c98f, rgba(229, 201, 143, 0.2));
  background-size: 200% 100%;
  animation: textGlow 3s linear infinite;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.tagline--link {
  display: inline-block;
  text-decoration: none;
  transition: transform 0.3s ease, text-shadow 0.3s ease;
}

.tagline--link:hover,
.tagline--link:focus-visible {
  transform: translateY(-2px);
  text-shadow: 0 0 14px rgba(229, 201, 143, 0.6);
}

@keyframes textGlow {
  0% {
    background-position: 200% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.tagline--release {
  margin-top: clamp(1.6rem, 3.5vw, 2.6rem);
  margin-bottom: 0;
  letter-spacing: 0.25rem;
  text-transform: uppercase;
  transition: opacity 0.4s ease;
}

.tagline--release.is-hidden {
  opacity: 0;
  height: 0;
  margin: 0;
  pointer-events: none;
}

.release-cta {
  display: none;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: clamp(1.4rem, 3vw, 2.2rem);
}

.release-cta.is-active {
  display: flex;
}

.release-cta__title {
  font-size: clamp(1.2rem, 3vw, 1.9rem);
  letter-spacing: 0.3rem;
  text-transform: uppercase;
  line-height: 1.6;
}

.release-cta__subtitle {
  display: inline-block;
  letter-spacing: 0.4rem;
}

.release-cta__button {
  position: relative;
  align-self: center;
  width: min(320px, 100%);
  padding: 0.3rem;
  border-radius: 2.8rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.35rem;
  color: inherit;
  overflow: hidden;
}

.release-cta__button .liquidGlass-text {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  justify-content: center;
  align-items: center;
  padding: 0.85rem 2.6rem;
  color: #fff;
  text-align: center;
  width: 100%;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.release-cta__button:hover .liquidGlass-text,
.release-cta__button:focus-visible .liquidGlass-text {
  color: #e5c98f;
  text-shadow: 0 0 12px rgba(229, 201, 143, 0.6);
}

.release-cta__button:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.5);
  outline-offset: 4px;
}

.screen--promo {
  text-align: left;
}

.screen--promo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  z-index: 0;
}

.promo-card {
  position: relative;
  z-index: 1;
  padding: clamp(2rem, 6vw, 3.5rem);
  background: rgba(18, 18, 18, 0.4);
  border-radius: 1.6rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  line-height: 1.8;
  overflow: hidden;
}

.promo-card::before,
.promo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
}

.promo-card::before {
  background: radial-gradient(circle at 10% 10%, rgba(255, 255, 255, 0.25), transparent 55%),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.12), transparent 60%);
  opacity: 0.6;
}

.promo-card::after {
  border: 1px solid rgba(255, 255, 255, 0.15);
  mix-blend-mode: screen;
  opacity: 0.8;
}

.promo-card > * {
  position: relative;
  z-index: 1;
}

.promo-card h1,
.promo-card h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  letter-spacing: 0.3rem;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  text-align: left;
}

.promo-card p + p {
  margin-top: 1.2rem;
}

.promo-card a {
  color: inherit;
  text-decoration: none;
}

.promo-inline-card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin: 0 0 1.8rem;
  padding: 1.2rem 1.6rem;
  border-radius: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  text-decoration: none;
  color: inherit;
  transition: border 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.promo-inline-card:hover,
.promo-inline-card:focus-visible {
  border-color: rgba(255, 255, 255, 0.45);
  transform: translateY(-2px);
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.45);
}

.promo-inline-card__image {
  width: clamp(96px, 18vw, 140px);
  aspect-ratio: 1 / 1;
  border-radius: 1rem;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.promo-inline-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.promo-inline-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 1.1rem;
  line-height: 1.5;
}

.promo-inline-card__label {
  font-size: 1.3rem;
  letter-spacing: 0.15rem;
  text-transform: uppercase;
}

.promo-inline-card__cta {
  font-size: 1rem;
  opacity: 0.8;
}

@media (max-width: 640px) {
  .promo-inline-card {
    flex-direction: column;
    text-align: center;
  }

  .promo-inline-card__body {
    align-items: center;
  }
}

.promo-card--profile {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.8rem;
  flex-wrap: wrap;
  color: inherit;
  text-decoration: none;
}

.promo-card__avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.35);
}

.promo-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.promo-card__profile-info h2 {
  font-size: 1.4rem;
  letter-spacing: 0.2rem;
  margin-bottom: 0.4rem;
}

.promo-card__profile-info p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.85;
}

.promo-card--profile:hover,
.promo-card--profile:focus-visible {
  border-color: rgba(255, 255, 255, 0.35);
}

.promo-list {
  margin: 1.5rem 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.6rem;
  list-style: disc;
}

#ash-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.liquidGlass-wrapper {
  position: relative;
  display: flex;
  font-weight: 600;
  overflow: hidden;
  color: black;
  cursor: pointer;

  box-shadow: 0 6px 6px rgba(0, 0, 0, 0.12), 0 0 20px rgba(0, 0, 0, 0.08);

  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 2.2);
}

.liquidGlass-effect {
  position: absolute;
  z-index: 0;
  inset: 0;
  border-radius: inherit;

  backdrop-filter: blur(3px);
  filter: url(#glass-distortion);
  overflow: hidden;
  isolation: isolate;
}

.liquidGlass-tint {
  z-index: 1;
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.08);
  border-radius: inherit;
}

.liquidGlass-shine {
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;

  overflow: hidden;

  box-shadow: inset 2px 2px 1px 0 rgba(255, 255, 255, 0.06),
    inset -1px -1px 1px 1px rgba(255, 255, 255, 0.1);
}

.liquidGlass-text {
  z-index: 3;
  font-size: 2rem;
  color: black;
}

.tab-nav {
  position: fixed;
  bottom: 1.2rem;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 0 1.5rem;
  z-index: 4;
  pointer-events: none;
}

.tab-nav.is-top {
  top: 1.5rem;
  bottom: auto;
}

.tab-nav__glass {
  width: min(420px, 100%);
  padding: 0rem;
  pointer-events: auto;
  display: flex;
  align-items: stretch;
  border-radius: 2.4rem;
}

.tab-nav__list {
  width: 100%;
  display: flex;
  gap: 0.45rem;
  list-style: none;
  font-size: clamp(0.82rem, 1.6vw, 0.95rem);
  color: #f5f5f5;
}

.tab-nav__list li {
  flex: 1;
  display: flex;
}

.tab-nav__link {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0.65rem 1.1rem;
  border-radius: 2.4rem;
  color: #f5f5f5;
  text-decoration: none;
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
  line-height: 1;
}

.tab-nav__link:hover,
.tab-nav__link:focus-visible,
.tab-nav__link.is-active {
  background: rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35);
  color: #121212;
}

.tab-nav__link.is-active {
  padding: 1.2rem;
  border-radius: 2.4rem;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.05));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.45), 0 6px 18px rgba(10, 14, 36, 0.4);
  color: #e5c98f;
  text-shadow: 0 0 6px rgba(255, 215, 150, 0.35);
}

.tab-nav__link:focus-visible {
  outline: none;
}

.tab-nav__filters {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.screen--profile .promo-card {
  text-align: center;
}

.profile-carousel {
  position: relative;
  width: 100%;
  height: 100vh;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
}

.profile-carousel__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 0.8s ease, transform 12s linear;
}

.profile-carousel__slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.75));
}

.profile-carousel__slide.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

.profile-carousel__content {
  position: absolute;
  bottom: max(8%, calc(env(safe-area-inset-bottom, 0px) + 9rem));
  left: 6%;
  max-width: 520px;
  color: #fff;
  z-index: 3;
}

.profile-carousel__content h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 0.3rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.profile-carousel__content p {
  font-size: clamp(1rem, 2vw, 1.3rem);
  line-height: 1.6;
}

.profile-carousel__indicators {
  position: absolute;
  right: max(1.8rem, env(safe-area-inset-right, 0px) + 1rem);
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  z-index: 4;
}

.profile-carousel__indicator {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(229, 201, 143, 0.35);
  border: none;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(229, 201, 143, 0.3);
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.profile-carousel__indicator.is-active {
  transform: scale(1.3);
  background: #e5c98f;
  box-shadow: 0 0 12px rgba(229, 201, 143, 0.7);
}

.tab-nav.is-top ~ .page .profile-carousel__content {
  bottom: max(8%, calc(env(safe-area-inset-bottom, 0px) + 9rem));
  top: auto;
}

.tab-nav.is-top ~ .page .profile-carousel__indicators {
  top: 50%;
  bottom: auto;
}

.tab-nav:not(.is-top) ~ .page .profile-carousel__content {
  top: 8%;
  bottom: auto;
}

.tab-nav:not(.is-top) ~ .page .profile-carousel__indicators {
  top: 50%;
  bottom: auto;
}
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .liquidGlass-effect {
    filter: none;
    background: rgba(255, 255, 255, 0.25);
  }
}

@media (min-width: 768px) {
  .tab-nav {
    top: max(1.5rem, env(safe-area-inset-top) + 1rem);
    bottom: auto;
    padding: 0 2rem;
  }

  .tab-nav__glass {
    width: min(520px, 100%);
    /*padding: 0.3rem 0.45rem;*/
  }

  .tab-nav__link {
    padding: 0.35rem 0.85rem;
  }

  .tab-nav__link.is-active {
    padding: 0.6rem;
    border-radius: 2.4rem;
  }
}

@media (max-width: 600px) {
  .promo-card {
    padding: 1.8rem;
  }

  .promo-card h1,
  .promo-card h2 {
    letter-spacing: 0.18rem;
  }

  .tab-nav {
    padding: 0 1rem;
  }

  .tab-nav__glass {
    width: 100%;
    /*padding: 0.5rem;*/
  }

  .tab-nav__link {
    padding: 0.6rem 0.85rem;
    font-size: 0.85rem;
  }

}
