@import url("https://fonts.googleapis.com/css2?family=Ma+Shan+Zheng&family=Noto+Serif+SC:wght@400;500&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html,
body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #090002;
  font-family: "Noto Serif SC", serif;
  touch-action: none;
  user-select: none;
  -webkit-user-select: none;
}

#fx {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.vignette {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background:
    radial-gradient(ellipse at 50% 48%, transparent 18%, rgba(6, 0, 2, 0.35) 62%, rgba(4, 0, 1, 0.78) 100%);
}

.words {
  position: fixed;
  left: 50%;
  top: 9vh;
  transform: translateX(-50%);
  z-index: 2;
  text-align: center;
  pointer-events: none;
  opacity: 0;
  animation: rise 2.4s ease 3.6s forwards;
}

.kicker {
  font-size: 12px;
  letter-spacing: 0.5em;
  text-indent: 0.5em;
  color: rgba(255, 210, 216, 0.55);
  margin-bottom: 10px;
}

.words h1 {
  font-family: "Ma Shan Zheng", cursive;
  font-weight: 400;
  font-size: clamp(48px, 14vw, 78px);
  letter-spacing: 0.22em;
  text-indent: 0.22em;
  color: #ffe4e8;
  text-shadow:
    0 0 28px rgba(200, 20, 40, 0.7),
    0 8px 24px rgba(0, 0, 0, 0.45);
}

.hint {
  position: fixed;
  left: 50%;
  bottom: calc(5vh + env(safe-area-inset-bottom));
  transform: translateX(-50%);
  z-index: 2;
  font-size: 12px;
  letter-spacing: 0.28em;
  color: rgba(255, 200, 208, 0.38);
  pointer-events: none;
  opacity: 0;
  animation: fade 1.6s ease 5s forwards;
  white-space: nowrap;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translate(-50%, 18px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

@keyframes fade {
  to {
    opacity: 1;
  }
}
