:root {
  color-scheme: light;
  --bg-left: #dff7ed;
  --bg-mid: #f7fff9;
  --bg-right: #bfe9d2;
  --ink: #234f41;
  --ink-soft: rgba(35, 79, 65, 0.78);
  --ink-deep: #17362d;
  --green: #2d9a69;
  --green-deep: #1d7f56;
  --green-soft: rgba(57, 167, 108, 0.16);
  --paper: rgba(255, 252, 245, 0.9);
  --paper-strong: rgba(255, 255, 250, 0.97);
  --line: rgba(42, 96, 73, 0.14);
  --line-strong: rgba(42, 96, 73, 0.22);
  --gold: #f6d16f;
  --gold-deep: #daae31;
  --shadow: 0 18px 42px rgba(24, 77, 57, 0.18);
  --shadow-strong: 0 24px 60px rgba(19, 65, 46, 0.24);
  --page-transition: 1.28s;
  --text-ease: cubic-bezier(0.2, 0.78, 0.22, 1);
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
}

body {
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 16%, rgba(255, 255, 255, 0.82), transparent 18%),
    radial-gradient(circle at 86% 20%, rgba(255, 255, 255, 0.56), transparent 16%),
    linear-gradient(135deg, var(--bg-left) 0%, var(--bg-mid) 46%, var(--bg-right) 100%);
  color: var(--ink);
  font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
}

body.record-mode {
  cursor: none;
}

body.preview-bg .ui-shell,
body.preview-bg .scene-wash,
body.preview-bg .share-layer,
body.preview-bg .toast {
  display: none !important;
}

body.preview-bg .page-inner,
body.preview-bg .ambient {
  display: none !important;
}

body.shot-mode .motion-wrap,
body.record-mode .motion-wrap {
  opacity: 1 !important;
  transform: none !important;
  animation: none !important;
}

body.shot-mode .motion-inner,
body.record-mode .motion-inner {
  transform: none !important;
  animation: none !important;
}

body.shot-mode .page,
body.shot-mode .page *,
body.record-mode .page,
body.record-mode .page * {
  animation-play-state: paused !important;
}

body.shot-mode .share-layer.is-visible .share-card,
body.record-mode .share-layer.is-visible .share-card {
  transform: translateY(0) scale(1) !important;
  opacity: 1 !important;
}

body.record-mode .scene-wash {
  display: none !important;
}

button {
  font: inherit;
  border: 0;
  background: none;
  padding: 0;
  color: inherit;
}

[hidden] {
  display: none !important;
}

.stage {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
}

.phone-frame {
  position: relative;
  width: 100vw;
  height: 100dvh;
  overflow: hidden;
  isolation: isolate;
  background: #f7fff8;
}

@media (min-width: 768px) {
  body {
    background:
      radial-gradient(circle at 16% 14%, rgba(255, 255, 255, 0.74), transparent 18%),
      radial-gradient(circle at 82% 22%, rgba(255, 255, 255, 0.42), transparent 16%),
      linear-gradient(135deg, #d7f4e4 0%, #ecfaf1 45%, #bfe0c9 100%);
  }

  .phone-frame {
    width: min(375px, 100vw);
    height: min(667px, 100dvh);
    aspect-ratio: 375 / 667;
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 24px;
    box-shadow: var(--shadow-strong);
  }
}

audio {
  position: absolute;
  inset: 0;
  width: 0;
  height: 0;
  opacity: 0;
  pointer-events: none;
}

.ui-shell {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 30;
}

.music-toggle,
.restart-btn,
.page-dot,
.share-layer__close {
  pointer-events: auto;
}

.music-toggle,
.restart-btn {
  position: absolute;
  top: max(16px, env(safe-area-inset-top));
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(60, 122, 92, 0.14);
  box-shadow: 0 10px 24px rgba(28, 83, 61, 0.12);
  color: var(--green-deep);
  backdrop-filter: blur(10px);
}

.music-toggle {
  left: max(16px, env(safe-area-inset-left));
}

.restart-btn {
  right: max(16px, env(safe-area-inset-right));
}

.music-toggle__icon {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 35%, #fff 0 12%, transparent 13%),
    radial-gradient(circle at 50% 50%, #4bd28c 0 55%, #2f8e60 56% 100%);
  box-shadow: 0 0 0 4px rgba(77, 205, 139, 0.12);
}

.music-toggle.is-playing .music-toggle__icon {
  animation: musicPulse 1.8s ease-in-out infinite;
}

.music-toggle__label,
.restart-btn {
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.08em;
}

.page-rail {
  position: absolute;
  right: max(16px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  pointer-events: none;
}

.page-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border-radius: 999px;
  background: rgba(43, 101, 72, 0.22);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4);
  transition: transform 0.25s ease, background-color 0.25s ease, height 0.25s ease;
}

.page-dot.is-active {
  height: 20px;
  background: linear-gradient(180deg, #54cb8e 0%, #2f9262 100%);
}

.pages {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.page {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-color: #effdf3;
  transform: translate3d(0, 0, 0);
  will-change: transform, opacity;
}

.page.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 4;
}

.page.is-leaving {
  opacity: 1;
  visibility: visible;
  pointer-events: none;
  z-index: 3;
}

.page.page-1 {
  background-image: url("../assets/images/page1-cover.png");
}

.page.page-2 {
  background-image: url("../assets/images/page2-album.png");
}

.page.page-3 {
  background-image: url("../assets/images/page3-fridge.png");
}

.page.page-4 {
  background-image: url("../assets/images/page4-reveal.png");
}

.page.page-5 {
  background-image: url("../assets/images/page5-result.png");
}

.page.enter-left {
  animation: pageEnterLeft var(--page-transition) var(--text-ease) both;
}

.page.enter-right {
  animation: pageEnterRight var(--page-transition) var(--text-ease) both;
}

.page.enter-bottom {
  animation: pageEnterBottom var(--page-transition) var(--text-ease) both;
}

.page.enter-top {
  animation: pageEnterTop var(--page-transition) var(--text-ease) both;
}

.page.enter-warm {
  animation: pageEnterWarm 2s var(--text-ease) both;
}

.page.enter-zoom {
  animation: pageEnterZoom 1.3s var(--text-ease) both;
}

.page.leave-left {
  animation: pageLeaveLeft var(--page-transition) cubic-bezier(0.32, 0.1, 0.7, 0.2) both;
}

.page.leave-right {
  animation: pageLeaveRight var(--page-transition) cubic-bezier(0.32, 0.1, 0.7, 0.2) both;
}

.page.leave-bottom {
  animation: pageLeaveBottom var(--page-transition) cubic-bezier(0.32, 0.1, 0.7, 0.2) both;
}

.page.leave-fade {
  animation: pageLeaveFade 0.95s ease both;
}

.page-inner {
  position: absolute;
  inset: 0;
}

.position-box {
  position: absolute;
  min-width: 0;
}

.motion-wrap {
  display: block;
  width: 100%;
  opacity: 0;
}

.motion-inner {
  width: 100%;
}

.page.page-animate .enter-left {
  animation: enterFromLeft var(--dur, 1.12s) var(--text-ease) both;
  animation-delay: var(--delay, 0s);
}

.page.page-animate .enter-right {
  animation: enterFromRight var(--dur, 1.12s) var(--text-ease) both;
  animation-delay: var(--delay, 0s);
}

.page.page-animate .enter-top {
  animation: enterFromTop var(--dur, 1.12s) var(--text-ease) both;
  animation-delay: var(--delay, 0s);
}

.page.page-animate .enter-bottom {
  animation: enterFromBottom var(--dur, 1.12s) var(--text-ease) both;
  animation-delay: var(--delay, 0s);
}

.page.page-animate .fade-up {
  animation: fadeUp var(--dur, 0.96s) var(--text-ease) both;
  animation-delay: var(--delay, 0s);
}

.gentle-hover {
  animation: gentleFloat 5.8s ease-in-out infinite;
}

.gentle-hover--tiny {
  animation-duration: 6.8s;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  padding: 0.45rem 0.82rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.73);
  border: 1px solid rgba(62, 126, 92, 0.12);
  box-shadow: 0 10px 24px rgba(34, 97, 70, 0.08);
  color: var(--green-deep);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.headline,
.section-title {
  margin: 0;
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.03em;
  text-wrap: balance;
  text-shadow: 0 2px 0 rgba(255, 255, 255, 0.64);
}

.headline {
  font-size: clamp(31px, 8.3vw, 46px);
  color: var(--ink-deep);
}

.section-title {
  font-size: clamp(26px, 6.9vw, 38px);
  color: var(--ink-deep);
}

.subline,
.helper {
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(14px, 4vw, 18px);
  line-height: 1.56;
}

.helper {
  font-size: 12px;
  color: rgba(35, 79, 65, 0.74);
  letter-spacing: 0.04em;
}

.ad-mark {
  font-weight: 800;
  color: var(--green);
}

.primary-btn {
  width: 100%;
  min-height: 54px;
  padding: 0 18px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86) 0%, rgba(226, 245, 234, 0.96) 100%);
  border: 1px solid rgba(61, 126, 91, 0.16);
  box-shadow: 0 16px 34px rgba(22, 74, 53, 0.14);
  color: var(--ink-deep);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-align: center;
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.primary-btn::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.42), transparent 56%);
  opacity: 0.9;
}

.primary-btn {
  position: relative;
  overflow: hidden;
}

.primary-btn:hover {
  filter: saturate(1.03);
}

.primary-btn:active,
.primary-btn.is-pressed {
  transform: translateY(2px) scale(0.985);
  box-shadow: 0 10px 22px rgba(22, 74, 53, 0.12);
}

.primary-btn--ghost {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.7) 0%, rgba(239, 251, 244, 0.92) 100%);
}

.primary-btn--home {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(220, 244, 229, 0.98) 100%);
}

.primary-btn--result {
  min-height: 52px;
}

.primary-btn--album,
.primary-btn--fridge,
.primary-btn--reveal {
  min-height: 52px;
}

.page-1 .page-inner {
  color: var(--ink-deep);
}

.home-tag {
  left: 8%;
  top: 10%;
  width: 52%;
}

.home-title--1 {
  left: 8%;
  top: 18%;
  width: 56%;
}

.home-title--2 {
  left: 8%;
  top: 27%;
  width: 52%;
}

.home-copy {
  left: 8%;
  top: 38%;
  width: 52%;
}

.home-action {
  left: 8%;
  bottom: 12%;
  width: 42%;
}

.home-helper {
  left: 8%;
  bottom: 7%;
  width: 52%;
}

.ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.ambient > * {
  position: absolute;
}

.home-leaf {
  width: 36px;
  height: 18px;
  border-radius: 100% 10% 100% 10%;
  background: linear-gradient(135deg, rgba(104, 184, 102, 0.72), rgba(51, 139, 74, 0.06));
  filter: blur(0.2px);
  opacity: 0.54;
  transform-origin: center;
  animation: leafSwing 7.2s ease-in-out infinite;
}

.home-leaf--1 {
  left: 8%;
  top: 16%;
  --leaf-rot: -18deg;
  transform: rotate(-18deg);
}

.home-leaf--2 {
  right: 10%;
  top: 8%;
  --leaf-rot: 16deg;
  transform: rotate(16deg);
  animation-duration: 8.4s;
}

.home-leaf--3 {
  left: 18%;
  top: 62%;
  --leaf-rot: 10deg;
  transform: rotate(10deg);
  animation-duration: 9.2s;
}

.home-sun {
  left: 24%;
  top: 32%;
  width: 138px;
  height: 138px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 245, 193, 0.56) 0%, rgba(255, 245, 193, 0.16) 34%, transparent 70%);
  mix-blend-mode: screen;
  animation: sunDrift 10s ease-in-out infinite;
}

.home-sheen {
  left: 62%;
  top: 18%;
  width: 34%;
  height: 30%;
  background: linear-gradient(120deg, transparent 18%, rgba(255, 255, 255, 0.28) 45%, transparent 68%);
  transform: skewX(-24deg);
  opacity: 0;
  animation: sheenSweep 8.2s ease-in-out infinite;
}

.home-camera-flash {
  left: 13%;
  top: 64%;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.58) 0%, rgba(255, 255, 255, 0.12) 34%, transparent 70%);
  mix-blend-mode: screen;
  animation: flashPulse 7.6s ease-in-out infinite;
}

.home-paper-breeze {
  right: 16%;
  bottom: 10%;
  width: 34px;
  height: 18px;
  border-radius: 12px 16px 12px 6px;
  background: linear-gradient(180deg, rgba(247, 255, 246, 0.84), rgba(232, 244, 230, 0.4));
  transform: rotate(16deg);
  animation: paperFlip 6.8s ease-in-out infinite;
}

.page-2 .page-inner,
.page-3 .page-inner,
.page-4 .page-inner,
.page-5 .page-inner {
  color: var(--ink-deep);
}

.album-tag,
.fridge-tag,
.result-tag {
  left: 8%;
  top: 8%;
  width: 40%;
}

.album-title--1,
.fridge-title--1,
.result-title--1,
.reveal-title--1 {
  left: 8%;
  top: 16%;
  width: 56%;
}

.album-title--2,
.fridge-title--2,
.result-title--2,
.reveal-title--2 {
  left: 8%;
  top: 23%;
  width: 50%;
}

.album-copy,
.fridge-copy {
  left: 8%;
  top: 31%;
  width: 50%;
}

.subline--album,
.subline--fridge {
  color: rgba(35, 79, 65, 0.82);
}

.album-paper {
  position: absolute;
  left: 11%;
  right: 11%;
  top: 27%;
  bottom: 20%;
  z-index: 2;
}

.sticker {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  width: min(37vw, 138px);
  min-height: 70px;
  padding: 12px 13px 14px;
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(244, 253, 245, 0.9) 100%);
  border: 1px solid rgba(63, 121, 92, 0.16);
  box-shadow: 0 12px 28px rgba(29, 79, 59, 0.12);
  color: var(--ink-deep);
  text-align: left;
  transform: rotate(var(--rot, 0deg));
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}

.sticker::before {
  content: "";
  position: absolute;
  inset: 8px 8px auto auto;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: rgba(102, 199, 142, 0.16);
}

.sticker::after {
  content: "";
  position: absolute;
  inset: auto 12px 10px auto;
  width: 40px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.84), transparent);
  opacity: 0.55;
}

.sticker__top {
  position: relative;
  z-index: 1;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.sticker__bottom {
  position: relative;
  z-index: 1;
  font-size: 11px;
  line-height: 1.36;
  color: rgba(35, 79, 65, 0.72);
}

.sticker__stamp {
  position: absolute;
  right: 11px;
  bottom: 12px;
  padding: 4px 7px;
  border-radius: 999px;
  border: 2px solid rgba(42, 138, 91, 0.66);
  color: rgba(42, 138, 91, 0.86);
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.1em;
  background: rgba(248, 255, 250, 0.9);
  opacity: 0;
  transform: scale(0.86) translateY(4px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.sticker--left {
  left: 4%;
  top: 40%;
  --rot: -4deg;
}

.sticker--right {
  right: 3%;
  top: 31%;
  --rot: 4deg;
  width: min(42vw, 150px);
}

.sticker--bottom {
  left: 28%;
  bottom: 10%;
  width: min(40vw, 146px);
  --rot: -2deg;
}

.sticker.is-selected {
  z-index: 2;
  box-shadow: 0 18px 36px rgba(24, 82, 60, 0.18), 0 0 0 2px rgba(70, 175, 118, 0.22);
  filter: saturate(1.04);
}

.sticker.is-selected .sticker__stamp {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.page.page-2.page-animate .sticker--left {
  animation: stickerDropLeft 1.02s var(--text-ease) both;
  animation-delay: 1.08s;
}

.page.page-2.page-animate .sticker--right {
  animation: stickerDropRight 1.02s var(--text-ease) both;
  animation-delay: 1.28s;
}

.page.page-2.page-animate .sticker--bottom {
  animation: stickerDropBottom 1.02s var(--text-ease) both;
  animation-delay: 1.48s;
}

.memory-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 84px;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(230, 251, 238, 0.96);
  border: 1px solid rgba(69, 171, 114, 0.18);
  color: var(--green-deep);
  box-shadow: 0 10px 22px rgba(27, 83, 60, 0.12);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.album-feedback {
  left: 66%;
  top: 61%;
  width: 18%;
}

.album-action {
  left: 50%;
  bottom: 10%;
  width: 42%;
  transform: translateX(-50%);
}

.ambient--album .album-photo,
.ambient--album .album-tape,
.ambient--album .album-smile,
.ambient--album .album-leaf,
.ambient--album .album-bottle-glow {
  position: absolute;
}

.album-photo {
  width: 78px;
  height: 96px;
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(238, 250, 238, 0.82));
  box-shadow: 0 10px 20px rgba(28, 84, 60, 0.12);
  animation: photoSway 7.4s ease-in-out infinite;
}

.album-photo::before {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 6px;
  background: radial-gradient(circle at 50% 34%, rgba(255, 231, 171, 0.9) 0 16%, transparent 17%),
    linear-gradient(160deg, rgba(92, 170, 105, 0.88) 0 36%, transparent 36% 100%);
  opacity: 0.8;
}

.album-photo::after {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 8px;
  height: 26px;
  border-radius: 4px;
  background: linear-gradient(180deg, rgba(255, 245, 208, 0.8), rgba(220, 245, 232, 0.4));
}

.album-photo--1 {
  right: 10%;
  top: 10%;
  --rotate: 6deg;
  transform: rotate(6deg);
}

.album-photo--2 {
  left: 7%;
  top: 48%;
  --rotate: -4deg;
  transform: rotate(-4deg);
}

.album-tape {
  left: 46%;
  top: 12%;
  width: 54px;
  height: 16px;
  border-radius: 6px;
  background: linear-gradient(180deg, rgba(238, 220, 178, 0.9), rgba(231, 211, 154, 0.68));
  transform: rotate(-2deg);
  opacity: 0.82;
  animation: tapeSheen 6.8s ease-in-out infinite;
}

.album-smile {
  left: 10%;
  top: 18%;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(180deg, #fff4b7, #d6a932);
  box-shadow: 0 0 0 3px rgba(252, 244, 180, 0.4);
  animation: smileBounce 3.8s ease-in-out infinite;
}

.album-smile::before,
.album-smile::after {
  content: "";
  position: absolute;
  top: 8px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #245646;
}

.album-smile::before {
  left: 5px;
}

.album-smile::after {
  right: 5px;
}

.album-leaf {
  left: 4%;
  bottom: 12%;
  width: 38px;
  height: 18px;
  border-radius: 100% 12% 100% 12%;
  background: linear-gradient(135deg, rgba(72, 171, 96, 0.72), rgba(72, 171, 96, 0.1));
  transform: rotate(12deg);
  animation: leafSwing 8.8s ease-in-out infinite;
}

.album-bottle-glow {
  right: 18%;
  bottom: 24%;
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 220, 155, 0.24) 0%, rgba(124, 220, 155, 0.06) 36%, transparent 68%);
  animation: bottleGlow 7.8s ease-in-out infinite;
}

.fridge-tag,
.fridge-title--1,
.fridge-title--2,
.fridge-copy {
  z-index: 2;
}

.fridge-hotspots {
  position: absolute;
  inset: 0;
  z-index: 3;
}

.hotspot {
  position: absolute;
  display: block;
  background: transparent;
  border: 0;
  padding: 0;
  color: inherit;
  text-align: center;
  cursor: pointer;
  outline: none;
}

.hotspot::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.18) 0%, transparent 60%);
  opacity: 0;
  transform: scale(0.82);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.hotspot:focus-visible::before,
.hotspot.is-selected::before {
  opacity: 1;
  transform: scale(1);
}

.hotspot__label,
.hotspot__type {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.34rem 0.62rem;
  border-radius: 999px;
  font-size: 11px;
  line-height: 1;
  white-space: nowrap;
  color: var(--green-deep);
  background: rgba(239, 251, 244, 0.88);
  border: 1px solid rgba(61, 126, 91, 0.14);
  box-shadow: 0 8px 18px rgba(24, 78, 57, 0.12);
  opacity: 0.76;
  transition: opacity 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.hotspot__label {
  top: 100%;
}

.hotspot__type {
  top: calc(100% + 24px);
}

.hotspot.is-selected .hotspot__label,
.hotspot.is-selected .hotspot__type {
  opacity: 1;
  box-shadow: 0 10px 24px rgba(24, 78, 57, 0.16);
}

.hotspot--bag {
  left: 7%;
  top: 36%;
  width: 24%;
  height: 24%;
}

.hotspot--share {
  left: 38%;
  top: 38%;
  width: 28%;
  height: 23%;
}

.hotspot--ice {
  right: 7%;
  top: 39%;
  width: 18%;
  height: 22%;
}

.page.page-3.page-animate .hotspot--bag {
  animation: hotspotRise 1s var(--text-ease) both;
  animation-delay: 1.08s;
}

.page.page-3.page-animate .hotspot--share {
  animation: hotspotRise 1s var(--text-ease) both;
  animation-delay: 1.28s;
}

.page.page-3.page-animate .hotspot--ice {
  animation: hotspotRise 1s var(--text-ease) both;
  animation-delay: 1.48s;
}

.hotspot.is-selected {
  filter: drop-shadow(0 0 16px rgba(78, 189, 125, 0.28));
}

.hotspot--bag.is-selected {
  animation: bagBounce 0.56s ease-out 1;
}

.hotspot--share.is-selected {
  animation: sharePop 0.56s ease-out 1;
}

.hotspot--ice.is-selected {
  animation: icePop 0.56s ease-out 1;
}

.page-3 .page-inner {
  z-index: 2;
}

.fridge-action {
  left: 50%;
  bottom: 10%;
  width: 46%;
  transform: translateX(-50%);
}

.ambient--fridge .fridge-fan,
.ambient--fridge .fridge-light,
.ambient--fridge .fridge-photo,
.ambient--fridge .fridge-sheen,
.ambient--fridge .fridge-spark {
  position: absolute;
}

.fridge-fan {
  right: 10%;
  top: 10%;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 1px solid rgba(57, 126, 80, 0.2);
  background:
    radial-gradient(circle at 50% 50%, rgba(246, 255, 247, 0.72) 0 14%, transparent 15%),
    conic-gradient(from 0deg, rgba(57, 150, 94, 0.88) 0 14%, transparent 14% 38%, rgba(57, 150, 94, 0.88) 38% 52%, transparent 52% 76%, rgba(57, 150, 94, 0.88) 76% 90%, transparent 90% 100%);
  box-shadow: 0 0 24px rgba(84, 203, 140, 0.14);
  animation: fanSpin 6.4s linear infinite;
}

.fridge-light {
  inset: 0;
  background:
    radial-gradient(circle at 50% 54%, rgba(255, 255, 255, 0.12) 0 24%, transparent 44%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), transparent 32%, transparent 60%, rgba(255, 255, 255, 0.12));
  mix-blend-mode: screen;
  animation: fridgeGlow 5.4s ease-in-out infinite;
}

.fridge-photo {
  left: 6%;
  top: 6%;
  --rotate: -6deg;
  width: 66px;
  height: 86px;
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(250, 250, 245, 0.9), rgba(223, 242, 225, 0.8));
  box-shadow: 0 10px 20px rgba(26, 76, 57, 0.12);
  transform: rotate(-6deg);
  animation: photoSway 8s ease-in-out infinite;
}

.fridge-photo::before {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 6px;
  background: linear-gradient(160deg, rgba(230, 210, 155, 0.86), rgba(106, 181, 109, 0.68));
}

.fridge-sheen {
  left: 22%;
  top: 58%;
  width: 24%;
  height: 18%;
  background: linear-gradient(120deg, transparent 22%, rgba(255, 255, 255, 0.26) 48%, transparent 70%);
  transform: skewX(-18deg);
  opacity: 0;
  animation: sheenSweep 8.4s ease-in-out infinite;
}

.fridge-spark {
  left: 72%;
  top: 50%;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.56) 0%, rgba(255, 255, 255, 0.12) 32%, transparent 68%);
  opacity: 0.34;
  animation: sparkPulse 4.8s ease-in-out infinite;
}

.reveal-note {
  left: 7%;
  top: 9%;
  width: 34%;
}

.note-card {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  min-width: 118px;
  min-height: 76px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 250, 0.78);
  border: 1px solid rgba(62, 124, 89, 0.16);
  box-shadow: 0 14px 26px rgba(21, 73, 51, 0.12);
  color: var(--green-deep);
}

.note-card span {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.note-card strong {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.reveal-badge {
  left: 8%;
  top: 42%;
  width: 42%;
}

.choice-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.82rem;
  border-radius: 999px;
  background: rgba(245, 255, 245, 0.8);
  border: 1px solid rgba(60, 126, 89, 0.16);
  color: var(--green-deep);
  box-shadow: 0 12px 22px rgba(28, 82, 59, 0.14);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.reveal-core {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.reveal-box {
  position: absolute;
  left: 50%;
  top: 53%;
  width: 56%;
  height: 34%;
  transform: translate(-50%, -50%);
}

.reveal-box__glow {
  position: absolute;
  inset: 8% 12%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 238, 160, 0.64) 0%, rgba(255, 217, 108, 0.18) 40%, transparent 72%);
  filter: blur(2px);
  animation: glowBreath 4.2s ease-in-out infinite;
}

.reveal-box__ribbon {
  position: absolute;
  top: 48%;
  width: 42%;
  height: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(95, 185, 119, 0.82), rgba(77, 156, 104, 0.16));
  box-shadow: 0 0 18px rgba(102, 207, 136, 0.24);
  opacity: 0.72;
  animation: ribbonFlow 3.9s ease-in-out infinite;
}

.reveal-box__ribbon--left {
  left: -6%;
  transform: rotate(-13deg);
}

.reveal-box__ribbon--right {
  right: -6%;
  transform: rotate(13deg);
}

.reveal-box__bottle {
  position: absolute;
  left: 50%;
  top: 38%;
  width: 34%;
  height: 44%;
  transform: translate(-50%, -50%);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04));
  opacity: 0.12;
}

.reveal-action {
  left: 50%;
  bottom: 10%;
  width: 42%;
  transform: translateX(-50%);
}

.page.page-4.is-revealing .reveal-box__glow {
  animation: glowBurst 2s ease-out 1;
}

.page.page-4.is-revealing .reveal-box__ribbon {
  animation: ribbonOpen 2s ease-out 1;
}

.page.page-4.is-revealing .reveal-box {
  animation: boxLift 2s ease-out 1;
}

.ambient--reveal .reveal-glow,
.ambient--reveal .reveal-confetti,
.ambient--reveal .reveal-confetti--2,
.ambient--reveal .reveal-ribbon,
.ambient--reveal .reveal-dust,
.ambient--reveal .reveal-lamp-beam {
  position: absolute;
}

.reveal-glow {
  left: 30%;
  top: 31%;
  width: 44%;
  height: 38%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 229, 136, 0.52) 0%, rgba(255, 215, 109, 0.12) 36%, transparent 72%);
  opacity: 0.68;
  animation: glowBreath 4.4s ease-in-out infinite;
}

.reveal-confetti,
.reveal-confetti--2 {
  left: 18%;
  top: 26%;
  width: 42%;
  height: 42%;
  background:
    radial-gradient(circle at 16% 24%, rgba(255, 253, 208, 0.96) 0 3px, transparent 4px),
    radial-gradient(circle at 26% 44%, rgba(255, 197, 78, 0.88) 0 2px, transparent 3px),
    radial-gradient(circle at 56% 18%, rgba(255, 254, 245, 0.86) 0 3px, transparent 4px),
    radial-gradient(circle at 72% 42%, rgba(255, 185, 91, 0.9) 0 2px, transparent 3px),
    radial-gradient(circle at 38% 64%, rgba(102, 202, 131, 0.9) 0 2px, transparent 3px);
  opacity: 0.68;
  filter: drop-shadow(0 0 6px rgba(255, 220, 126, 0.2));
  animation: confettiDrift 7.4s linear infinite;
}

.reveal-confetti--2 {
  left: 46%;
  top: 14%;
  width: 36%;
  height: 52%;
  opacity: 0.5;
  animation-duration: 9.2s;
}

.reveal-ribbon {
  left: 18%;
  top: 48%;
  width: 64%;
  height: 16px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(92, 191, 118, 0.74), rgba(255, 228, 143, 0.74), transparent);
  transform: rotate(-9deg);
  opacity: 0.6;
  animation: ribbonFloat 8s ease-in-out infinite;
}

.reveal-dust {
  left: 12%;
  top: 14%;
  width: 76%;
  height: 72%;
  background:
    radial-gradient(circle at 20% 70%, rgba(255, 255, 255, 0.38) 0 2px, transparent 3px),
    radial-gradient(circle at 68% 26%, rgba(255, 255, 255, 0.34) 0 2px, transparent 3px),
    radial-gradient(circle at 42% 46%, rgba(255, 223, 144, 0.36) 0 2px, transparent 3px);
  opacity: 0.5;
  animation: dustFloat 10s linear infinite;
}

.reveal-lamp-beam {
  right: 10%;
  top: 6%;
  width: 30%;
  height: 34%;
  background: radial-gradient(circle at 50% 0%, rgba(255, 250, 213, 0.5) 0%, rgba(255, 224, 115, 0.2) 32%, transparent 70%);
  transform: rotate(12deg);
  animation: lampBreath 5.2s ease-in-out infinite;
}

.result-title--1,
.result-title--2 {
  z-index: 2;
}

.result-card {
  position: absolute;
  left: 10%;
  top: 30%;
  width: 80%;
  min-height: 224px;
  padding: 18px 18px 16px;
  border-radius: 24px 20px 24px 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 250, 0.94) 0%, rgba(238, 248, 237, 0.95) 100%);
  border: 1px solid rgba(66, 128, 95, 0.18);
  box-shadow: 0 18px 38px rgba(27, 82, 60, 0.14);
  z-index: 2;
}

.result-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(83, 180, 122, 0.15), transparent 34%, rgba(83, 180, 122, 0.12) 72%, transparent);
  opacity: 0.8;
  pointer-events: none;
}

.result-card__header {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
}

.result-card__title {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--green-deep);
}

.result-card__chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(229, 250, 236, 0.92);
  border: 1px solid rgba(65, 138, 96, 0.16);
  color: var(--green-deep);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.result-card__body {
  position: relative;
  display: grid;
  gap: 9px;
}

.result-line {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px dashed rgba(62, 124, 89, 0.15);
  opacity: 0;
  transform: translateY(8px);
}

.page.page-5.page-animate .result-card .result-line {
  animation: lineIn 0.72s var(--text-ease) both;
}

.page.page-5.page-animate .result-card .result-line:nth-child(1) {
  animation-delay: 0.25s;
}

.page.page-5.page-animate .result-card .result-line:nth-child(2) {
  animation-delay: 0.42s;
}

.page.page-5.page-animate .result-card .result-line:nth-child(3) {
  animation-delay: 0.58s;
}

.page.page-5.page-animate .result-card .result-line:nth-child(4) {
  animation-delay: 0.74s;
}

.page.page-5.page-animate .result-card .result-line:nth-child(5) {
  animation-delay: 0.9s;
}

.result-line {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
}

.result-line span,
.result-line strong {
  min-width: 0;
}

.result-line span {
  color: rgba(35, 79, 65, 0.72);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.result-line strong {
  display: block;
  width: 100%;
  justify-self: end;
  color: var(--ink-deep);
  font-size: 12px;
  font-weight: 800;
  text-align: right;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.star-row {
  letter-spacing: 0.06em;
}

.result-card__desc {
  margin: 16px 0 0;
  color: rgba(35, 79, 65, 0.84);
  font-size: 13px;
  line-height: 1.62;
}

.result-starline {
  left: 50%;
  top: 74%;
  width: 56%;
  transform: translateX(-50%);
}

.star-strip {
  display: flex;
  justify-content: center;
  gap: 8px;
  align-items: center;
}

.star-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(246, 209, 111, 0.22);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.3);
  transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.star-dot.is-lit {
  background: linear-gradient(180deg, #ffe08c 0%, #efbf40 100%);
  box-shadow: 0 0 0 4px rgba(255, 223, 124, 0.18);
  transform: scale(1.1);
}

.result-action--left {
  left: 8%;
  bottom: 10%;
  width: 38%;
}

.result-action--right {
  right: 8%;
  bottom: 10%;
  width: 38%;
}

.ambient--result .result-radio,
.ambient--result .result-photo,
.ambient--result .result-flower,
.ambient--result .result-sheen,
.ambient--result .result-ink {
  position: absolute;
}

.result-radio {
  left: 6%;
  bottom: 12%;
  width: 80px;
  height: 54px;
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(223, 240, 210, 0.96), rgba(182, 208, 174, 0.92));
  box-shadow: 0 10px 20px rgba(22, 73, 50, 0.12);
  animation: radioBlink 2.8s ease-in-out infinite;
}

.result-radio::before {
  content: "";
  position: absolute;
  inset: 8px 12px 12px;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(248, 255, 246, 0.66), rgba(255, 255, 255, 0.12)),
    radial-gradient(circle at 18% 55%, rgba(60, 106, 78, 0.86) 0 2px, transparent 3px),
    radial-gradient(circle at 30% 55%, rgba(60, 106, 78, 0.86) 0 2px, transparent 3px),
    radial-gradient(circle at 42% 55%, rgba(60, 106, 78, 0.86) 0 2px, transparent 3px);
}

.result-photo {
  right: 8%;
  top: 10%;
  --rotate: 6deg;
  width: 76px;
  height: 92px;
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 250, 0.92), rgba(224, 244, 227, 0.84));
  box-shadow: 0 10px 18px rgba(25, 74, 54, 0.12);
  transform: rotate(6deg);
  animation: photoSway 8.2s ease-in-out infinite;
}

.result-photo::before {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 6px;
  background: linear-gradient(160deg, rgba(239, 198, 101, 0.84), rgba(105, 180, 106, 0.74));
}

.result-flower {
  right: 16%;
  bottom: 20%;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 237, 159, 0.9) 0 5px, transparent 6px),
    radial-gradient(circle at 50% 14%, rgba(255, 209, 124, 0.88) 0 6px, transparent 7px),
    radial-gradient(circle at 50% 86%, rgba(255, 209, 124, 0.88) 0 6px, transparent 7px),
    radial-gradient(circle at 14% 50%, rgba(255, 209, 124, 0.88) 0 6px, transparent 7px),
    radial-gradient(circle at 86% 50%, rgba(255, 209, 124, 0.88) 0 6px, transparent 7px);
  animation: flowerSpin 7.8s ease-in-out infinite;
}

.result-sheen {
  right: 12%;
  top: 44%;
  width: 26%;
  height: 18%;
  background: linear-gradient(120deg, transparent 18%, rgba(255, 255, 255, 0.22) 46%, transparent 70%);
  transform: skewX(-18deg);
  opacity: 0;
  animation: sheenSweep 8.4s ease-in-out infinite;
}

.result-ink {
  left: 36%;
  top: 15%;
  width: 32%;
  height: 24%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(135, 208, 154, 0.22) 0%, rgba(135, 208, 154, 0.06) 38%, transparent 68%);
  animation: inkBreath 5.2s ease-in-out infinite;
}

.share-layer {
  position: absolute;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: end center;
  background: rgba(21, 44, 34, 0.34);
  backdrop-filter: blur(8px);
}

.share-layer[hidden] {
  display: none;
}

.share-layer__backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: transparent;
}

.share-card {
  position: relative;
  width: min(82vw, 320px);
  margin-bottom: max(30px, env(safe-area-inset-bottom));
  padding: 18px 18px 16px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(250, 255, 248, 0.98) 0%, rgba(229, 245, 232, 0.96) 100%);
  border: 1px solid rgba(76, 145, 106, 0.2);
  box-shadow: 0 24px 62px rgba(10, 27, 20, 0.26);
  transform: translateY(32px) scale(0.96);
  opacity: 0;
  transition: transform 0.42s var(--text-ease), opacity 0.42s var(--text-ease);
}

.share-layer.is-visible .share-card {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.share-card::before {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 18px;
  border: 1px dashed rgba(63, 126, 90, 0.22);
  pointer-events: none;
}

.share-card__seal {
  position: absolute;
  right: 16px;
  top: 14px;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(236, 251, 241, 0.96);
  border: 1px solid rgba(61, 126, 91, 0.16);
  color: var(--green-deep);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.share-card__header {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 14px;
  color: var(--green-deep);
}

.share-card__header span {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.share-card__header strong {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.share-card__identity {
  margin-bottom: 14px;
  color: var(--ink-deep);
  font-size: 26px;
  font-weight: 800;
  line-height: 1.02;
}

.share-card__meta {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
}

.share-card__meta div {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  padding: 8px 0;
  border-bottom: 1px dashed rgba(63, 126, 90, 0.16);
}

.share-card__meta span,
.share-card__meta strong {
  font-size: 12px;
  min-width: 0;
}

.share-card__meta span {
  color: rgba(35, 79, 65, 0.68);
}

.share-card__meta strong {
  display: block;
  width: 100%;
  justify-self: end;
  color: var(--ink-deep);
  font-weight: 800;
  text-align: right;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.share-card__desc {
  margin: 0;
  color: rgba(35, 79, 65, 0.84);
  font-size: 13px;
  line-height: 1.7;
}

.share-card__footer {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(63, 126, 90, 0.12);
  color: rgba(35, 79, 65, 0.72);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
}

.share-layer__close {
  position: absolute;
  left: 50%;
  bottom: max(22px, env(safe-area-inset-bottom));
  transform: translateX(-50%);
  min-width: 112px;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.34);
  color: var(--ink-deep);
  box-shadow: 0 12px 26px rgba(19, 41, 31, 0.16);
}

.toast {
  display: none !important;
}

.timer-runner {
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
  animation: timerDelay var(--delay, 1ms) linear forwards;
}

.scene-wash {
  position: absolute;
  inset: 0;
  z-index: 18;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(224, 247, 233, 0), rgba(224, 247, 233, 0.7) 48%, rgba(224, 247, 233, 0));
  opacity: 0;
}

.scene-wash.is-on {
  animation: washSlide 1.2s var(--text-ease) both;
}

.scene-wash.is-fridge {
  background: linear-gradient(90deg, rgba(214, 244, 227, 0), rgba(214, 244, 227, 0.8) 48%, rgba(214, 244, 227, 0));
}

.scene-wash.is-warm {
  background: radial-gradient(circle, rgba(255, 236, 160, 0.52) 0%, rgba(255, 236, 160, 0.18) 34%, transparent 70%);
  animation-duration: 1.8s;
}

.scene-wash.is-result {
  background: radial-gradient(circle, rgba(255, 226, 138, 0.6) 0%, rgba(255, 226, 138, 0.16) 36%, transparent 74%);
  animation-duration: 2s;
}

@keyframes pageEnterLeft {
  from {
    opacity: 0;
    transform: translate3d(-12%, 0, 0) rotate(-0.8deg) scale(1.02);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
  }
}

@keyframes pageEnterRight {
  from {
    opacity: 0;
    transform: translate3d(12%, 0, 0) rotate(0.8deg) scale(1.02);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
  }
}

@keyframes pageEnterBottom {
  from {
    opacity: 0;
    transform: translate3d(0, 12%, 0) scale(1.02);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes pageEnterTop {
  from {
    opacity: 0;
    transform: translate3d(0, -12%, 0) scale(1.02);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes pageEnterWarm {
  from {
    opacity: 0;
    transform: scale(1.03);
    filter: saturate(0.95) brightness(0.96);
  }
  60% {
    opacity: 1;
    filter: saturate(1.02) brightness(1.04);
  }
  to {
    opacity: 1;
    transform: scale(1);
    filter: saturate(1) brightness(1);
  }
}

@keyframes pageEnterZoom {
  from {
    opacity: 0;
    transform: scale(1.035);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes pageLeaveLeft {
  from {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  to {
    opacity: 1;
    transform: translate3d(-12%, 0, 0) rotate(-1deg);
  }
}

@keyframes pageLeaveRight {
  from {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  to {
    opacity: 1;
    transform: translate3d(12%, 0, 0) rotate(1deg);
  }
}

@keyframes pageLeaveBottom {
  from {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 12%, 0);
  }
}

@keyframes pageLeaveFade {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@keyframes enterFromLeft {
  from {
    opacity: 0;
    transform: translate3d(-18px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes enterFromRight {
  from {
    opacity: 0;
    transform: translate3d(18px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes enterFromTop {
  from {
    opacity: 0;
    transform: translate3d(0, -14px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes enterFromBottom {
  from {
    opacity: 0;
    transform: translate3d(0, 16px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translate3d(0, 12px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes gentleFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -2px, 0);
  }
}

@keyframes leafSwing {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(var(--leaf-rot, 0deg));
  }
  50% {
    transform: translate3d(3px, -1px, 0) rotate(calc(var(--leaf-rot, 0deg) + 4deg));
  }
}

@keyframes sunDrift {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 0.58;
  }
  50% {
    transform: translate3d(12px, 8px, 0);
    opacity: 0.75;
  }
}

@keyframes sheenSweep {
  0% {
    opacity: 0;
    transform: translate3d(-18px, 0, 0) skewX(-24deg);
  }
  18% {
    opacity: 0.52;
  }
  34% {
    opacity: 0;
    transform: translate3d(26px, 0, 0) skewX(-24deg);
  }
  100% {
    opacity: 0;
    transform: translate3d(28px, 0, 0) skewX(-24deg);
  }
}

@keyframes flashPulse {
  0%,
  69%,
  100% {
    opacity: 0.26;
    transform: scale(0.92);
  }
  72% {
    opacity: 0.88;
    transform: scale(1.04);
  }
  78% {
    opacity: 0.18;
    transform: scale(0.96);
  }
}

@keyframes paperFlip {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(16deg);
  }
  50% {
    transform: translate3d(1px, -2px, 0) rotate(20deg);
  }
}

@keyframes stickerDropLeft {
  from {
    opacity: 0;
    transform: translate3d(-14px, -12px, 0) rotate(-8deg) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotate(var(--rot, 0deg)) scale(1);
  }
}

@keyframes stickerDropRight {
  from {
    opacity: 0;
    transform: translate3d(14px, -10px, 0) rotate(8deg) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotate(var(--rot, 0deg)) scale(1);
  }
}

@keyframes stickerDropBottom {
  from {
    opacity: 0;
    transform: translate3d(0, 16px, 0) rotate(-2deg) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotate(var(--rot, 0deg)) scale(1);
  }
}

@keyframes photoSway {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(var(--rotate, 0deg));
  }
  50% {
    transform: translate3d(0, -2px, 0) rotate(calc(var(--rotate, 0deg) + 2deg));
  }
}

@keyframes tapeSheen {
  0%,
  100% {
    transform: rotate(-2deg) scale(1);
    opacity: 0.72;
  }
  50% {
    transform: rotate(2deg) scale(1.03);
    opacity: 0.94;
  }
}

@keyframes smileBounce {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(0, -3px, 0) scale(1.08);
  }
}

@keyframes bottleGlow {
  0%,
  100% {
    opacity: 0.18;
    transform: scale(0.96);
  }
  50% {
    opacity: 0.42;
    transform: scale(1.08);
  }
}

@keyframes leafDrift {
  0% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  100% {
    transform: translate3d(0, 12px, 0) rotate(14deg);
  }
}

@keyframes fanSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes fridgeGlow {
  0%,
  100% {
    opacity: 0.46;
  }
  50% {
    opacity: 0.7;
  }
}

@keyframes sparkPulse {
  0%,
  100% {
    opacity: 0.24;
    transform: scale(0.94);
  }
  50% {
    opacity: 0.56;
    transform: scale(1.08);
  }
}

@keyframes hotspotRise {
  from {
    opacity: 0;
    transform: translate3d(0, 10px, 0) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes bagBounce {
  0%,
  100% {
    transform: scale(1);
  }
  45% {
    transform: scale(1.04);
  }
  70% {
    transform: scale(0.99);
  }
}

@keyframes sharePop {
  0%,
  100% {
    transform: scale(1);
  }
  40% {
    transform: scale(1.03);
  }
  68% {
    transform: scale(0.995);
  }
}

@keyframes icePop {
  0%,
  100% {
    transform: scale(1);
  }
  42% {
    transform: scale(1.04);
  }
  70% {
    transform: scale(0.99);
  }
}

@keyframes glowBreath {
  0%,
  100% {
    opacity: 0.55;
    transform: scale(0.98);
  }
  50% {
    opacity: 0.95;
    transform: scale(1.04);
  }
}

@keyframes glowBurst {
  0% {
    opacity: 0.28;
    transform: scale(0.96);
  }
  40% {
    opacity: 1;
    transform: scale(1.08);
  }
  100% {
    opacity: 0.82;
    transform: scale(1.16);
  }
}

@keyframes ribbonFlow {
  0%,
  100% {
    transform: scaleX(1) translate3d(0, 0, 0);
    opacity: 0.68;
  }
  50% {
    transform: scaleX(1.03) translate3d(0, -1px, 0);
    opacity: 0.82;
  }
}

@keyframes ribbonOpen {
  0% {
    transform: scaleX(1) translate3d(0, 0, 0);
  }
  55% {
    transform: scaleX(1.08) translate3d(0, -2px, 0);
  }
  100% {
    transform: scaleX(1.18) translate3d(0, 2px, 0);
    opacity: 0.36;
  }
}

@keyframes boxLift {
  0% {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-50%, -54%) scale(1.02);
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
  }
}

@keyframes confettiDrift {
  0% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  100% {
    transform: translate3d(0, -10px, 0) rotate(12deg);
  }
}

@keyframes ribbonFloat {
  0%,
  100% {
    transform: rotate(-9deg) translate3d(0, 0, 0);
  }
  50% {
    transform: rotate(-7deg) translate3d(0, -2px, 0);
  }
}

@keyframes dustFloat {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(0, -8px, 0);
  }
}

@keyframes lampBreath {
  0%,
  100% {
    opacity: 0.5;
    transform: rotate(12deg) scale(0.98);
  }
  50% {
    opacity: 0.88;
    transform: rotate(12deg) scale(1.05);
  }
}

@keyframes lineIn {
  from {
    opacity: 0;
    transform: translate3d(0, 10px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes radioBlink {
  0%,
  100% {
    filter: brightness(1);
  }
  50% {
    filter: brightness(1.08);
  }
}

@keyframes flowerSpin {
  0%,
  100% {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(14deg) scale(1.06);
  }
}

@keyframes inkBreath {
  0%,
  100% {
    opacity: 0.22;
    transform: scale(0.98);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.06);
  }
}

@keyframes washSlide {
  0% {
    opacity: 0;
    transform: translateX(-100%);
  }
  18% {
    opacity: 1;
  }
  70% {
    opacity: 0.92;
  }
  100% {
    opacity: 0;
    transform: translateX(100%);
  }
}

@keyframes timerDelay {
  from {
    opacity: 0;
  }
  to {
    opacity: 0;
  }
}

@keyframes musicPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.14);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* Static layout cleanup for the current review pass */
.ui-shell,
.page-rail,
.music-toggle,
.restart-btn {
  display: none !important;
}

.home-helper,
.page-5 .result-starline,
.page-4 .ambient--reveal {
  display: none !important;
}

.page-1 .home-tag {
  left: 7%;
  top: 9%;
  width: 46%;
}

.page-1 .home-title--1 {
  left: 7%;
  top: 18%;
  width: 48%;
}

.page-1 .home-title--2 {
  left: 7%;
  top: 26%;
  width: 44%;
}

.page-1 .home-copy {
  left: 7%;
  top: 35%;
  width: 46%;
}

.page-1 .home-action {
  left: 50%;
  bottom: 11%;
  width: min(38vw, 144px);
  transform: translateX(-50%);
}

.page-1 .headline {
  font-size: clamp(26px, 6.3vw, 34px);
  line-height: 1.06;
}

.page-1 .subline {
  font-size: 13px;
  line-height: 1.5;
}

.page-2 .album-tag {
  left: 8%;
  top: 8%;
  width: 34%;
}

.page-2 .album-title--1 {
  left: 15%;
  top: 17%;
  width: 40%;
}

.page-2 .album-title--2 {
  left: 15%;
  top: 23.5%;
  width: 38%;
}

.page-2 .album-copy {
  left: 15%;
  top: 30%;
  width: 38%;
}

.page-2 .section-title,
.page-3 .section-title,
.page-4 .section-title,
.page-5 .section-title {
  font-size: clamp(20px, 5.1vw, 28px);
  line-height: 1.06;
}

.page-2 .album-paper {
  left: 10%;
  right: 10%;
  top: 25%;
  bottom: 18%;
}

.page-2 .sticker {
  width: min(33vw, 120px);
  min-height: 66px;
  padding: 10px 11px 12px;
  border-radius: 14px 16px 13px 17px;
  background: linear-gradient(180deg, rgba(255, 252, 245, 0.96), rgba(241, 248, 236, 0.94));
  border: 1px dashed rgba(63, 121, 92, 0.16);
}

.page-2 .sticker::before {
  inset: 6px auto auto 10px;
  width: 30px;
  height: 10px;
  border-radius: 999px;
  background: rgba(120, 201, 144, 0.22);
}

.page-2 .sticker::after {
  inset: auto 10px 9px auto;
}

.page-2 .sticker__stamp {
  top: 8px;
  right: 8px;
  bottom: auto;
  min-height: 18px;
  padding: 3px 6px;
  font-size: 9px;
}

.page-2 .sticker--left {
  left: 3%;
  top: 38%;
  --rot: -7deg;
}

.page-2 .sticker--right {
  right: 4%;
  top: 32%;
  width: min(38vw, 136px);
  --rot: 5deg;
}

.page-2 .sticker--bottom {
  left: 30%;
  bottom: 10%;
  width: min(36vw, 128px);
  --rot: -4deg;
}

.page-2 .album-action {
  left: 50%;
  bottom: 9%;
  width: min(42vw, 160px);
}

.page-3 .fridge-tag {
  left: 8%;
  top: 8%;
  width: 34%;
}

.page-3 .fridge-title--1 {
  left: 8%;
  top: 15%;
  width: 44%;
}

.page-3 .fridge-title--2 {
  left: 8%;
  top: 22%;
  width: 42%;
}

.page-3 .fridge-copy {
  left: 8%;
  top: 29%;
  width: 40%;
}

.page-3 .hotspot__label,
.page-3 .hotspot__type {
  font-size: 9px;
  padding: 0.28rem 0.42rem;
  box-shadow: 0 6px 14px rgba(24, 78, 57, 0.1);
}

.page-3 .hotspot__type {
  top: calc(100% + 16px);
}

.page-3 .hotspot--bag {
  left: 7%;
  top: 42%;
  width: 22%;
  height: 17%;
}

.page-3 .hotspot--share {
  left: 37%;
  top: 43%;
  width: 24%;
  height: 17%;
}

.page-3 .hotspot--ice {
  right: 7%;
  top: 44%;
  width: 18%;
  height: 15%;
}

.page-3 .fridge-action {
  left: 50%;
  bottom: 9%;
  width: min(42vw, 156px);
}

.page-4 .reveal-note {
  left: 8%;
  top: 8%;
  width: 32%;
}

.page-4 .note-card {
  min-width: 108px;
  min-height: 66px;
  padding: 10px 12px;
  border-radius: 14px;
}

.page-4 .reveal-title--1 {
  left: 8%;
  top: 30%;
  width: 44%;
}

.page-4 .reveal-title--2 {
  left: 8%;
  top: 37%;
  width: 40%;
}

.page-4 .reveal-badge {
  left: 8%;
  top: 45%;
  width: 42%;
}

.page-4 .choice-badge {
  font-size: 11px;
  padding: 0.42rem 0.7rem;
}

.page-4 .reveal-action {
  left: 50%;
  bottom: 9%;
  width: min(34vw, 136px);
}

.page-4 .reveal-core,
.page-4 .ambient--reveal {
  display: none !important;
}

.page-5 .result-tag {
  left: 8%;
  top: 8%;
  width: 38%;
}

.page-5 .result-title--1 {
  left: 8%;
  top: 15%;
  width: 42%;
}

.page-5 .result-title--2 {
  left: 8%;
  top: 22%;
  width: 36%;
}

.page-5 .result-card {
  left: 6%;
  top: 28%;
  width: 70%;
  min-height: 0;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.page-5 .result-card::before {
  display: none;
}

.page-5 .result-card__header {
  margin-bottom: 12px;
}

.page-5 .result-card__chip {
  display: none;
}

.page-5 .result-card__body {
  gap: 6px;
}

.page-5 .result-line {
  padding: 6px 0;
}

.page-5 .result-card__body .result-line:nth-child(3) strong {
  color: var(--green-deep);
}

.page-5 .result-card__desc {
  margin-top: 12px;
  font-size: 12px;
}

.page-5 .result-radio {
  display: none !important;
}

.page-5 .result-action--left,
.page-5 .result-action--right {
  bottom: 9%;
  width: min(34vw, 132px);
}

.page-5 .result-action--left {
  left: 8%;
}

.page-5 .result-action--right {
  right: 8%;
}

.share-layer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 20px 18px 28px;
}

.share-card {
  margin: 0;
  transform: translateY(-8px) scale(0.98);
  width: min(76vw, 286px);
}

.share-card__seal {
  display: none;
}

.share-card__identity {
  font-size: 24px;
}

/* Final hard override */
.ui-shell,
.page-rail,
.music-toggle,
.restart-btn,
.toast {
  display: none !important;
}

.page-2 .album-feedback,
.page-4 .reveal-core,
.page-4 .ambient--reveal {
  display: none !important;
}

.page-2 .album-title .motion-inner,
.page-2 .album-copy .motion-inner,
.page-3 .fridge-tag .motion-inner,
.page-3 .fridge-title .motion-inner,
.page-3 .fridge-copy .motion-inner,
.page-4 .reveal-title .motion-inner,
.page-4 .reveal-badge .motion-inner,
.page-5 .result-tag .motion-inner,
.page-5 .result-title .motion-inner {
  background: none !important;
  border: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  padding: 0 !important;
}

.page-2 .album-tag {
  left: 20px;
  top: 18px;
  width: 116px;
}

.page-2 .album-title--1 {
  left: 76px;
  top: 94px;
  width: 188px;
}

.page-2 .album-title--2 {
  left: 76px;
  top: 138px;
  width: 186px;
}

.page-2 .album-copy {
  left: 76px;
  top: 186px;
  width: 198px;
}

.page-2 .album-paper {
  left: 70px;
  right: 68px;
  top: 246px;
  bottom: 92px;
}

.page-2 .sticker {
  width: 96px;
  min-height: 58px;
  padding: 8px 9px 10px;
}

.page-2 .sticker__top {
  font-size: 12.5px;
  line-height: 1.18;
}

.page-2 .sticker__bottom {
  font-size: 10.5px;
  line-height: 1.3;
}

.page-2 .sticker__stamp {
  top: 7px;
  right: 7px;
  bottom: auto;
  padding: 3px 7px;
  font-size: 8.5px;
}

.page-2 .sticker--left {
  left: 18px;
  top: 286px;
  --rot: -3deg;
}

.page-2 .sticker--right {
  right: 20px;
  top: 282px;
  --rot: 3deg;
}

.page-2 .sticker--bottom {
  left: 122px;
  top: 348px;
  --rot: -2deg;
}

.page-2 .album-action {
  left: 50%;
  bottom: 16px;
  width: 136px;
  transform: translateX(-50%);
}

.page-2 .primary-btn--album {
  min-height: 44px;
  font-size: 13px;
}

.page-3 .page-inner::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 12px;
  width: 246px;
  height: 220px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(248, 252, 249, 0.74) 0%, rgba(248, 252, 249, 0.34) 62%, rgba(248, 252, 249, 0) 100%);
  pointer-events: none;
  z-index: 0;
}

.page-3 .fridge-tag {
  left: 20px;
  top: 18px;
  width: 132px;
  z-index: 4;
}

.page-3 .fridge-title--1 {
  left: 20px;
  top: 70px;
  width: 168px;
  z-index: 4;
}

.page-3 .fridge-title--2 {
  left: 20px;
  top: 108px;
  width: 96px;
  z-index: 4;
}

.page-3 .fridge-title--3 {
  left: 20px;
  top: 146px;
  width: 168px;
  z-index: 4;
}

.page-3 .fridge-copy {
  left: 20px;
  top: 186px;
  width: 200px;
  z-index: 4;
}

.page-3 .fridge-feedback {
  left: 20px;
  top: 228px;
  width: 236px;
  z-index: 4;
}

.page-3 .fridge-pill {
  min-height: 32px;
  padding: 0 12px;
  font-size: 13px;
}

.page-3 .section-title {
  font-size: 28px;
  line-height: 1.08;
}

.page-3 .subline {
  font-size: 13px;
  line-height: 1.45;
}

.page-3 .hotspot {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  width: 96px;
  min-height: 46px;
  padding: 7px 8px 8px;
  border-radius: 14px;
  background: rgba(255, 252, 243, 0.95);
  border: 1px solid rgba(70, 118, 80, 0.18);
  box-shadow: 0 8px 18px rgba(24, 77, 57, 0.08);
  color: #173d30;
  overflow: visible;
}

.page-3 .hotspot__label,
.page-3 .hotspot__type {
  position: static;
  transform: none;
  display: block;
  width: 100%;
  text-align: center;
  opacity: 1;
  padding: 0;
  background: none;
  box-shadow: none;
}

.page-3 .hotspot__label {
  font-size: 13.5px;
  font-weight: 800;
  line-height: 1.12;
}

.page-3 .hotspot__type {
  font-size: 11.5px;
  line-height: 1.12;
  color: #657e70;
}

.page-3 .hotspot--bag {
  left: 18px;
  top: 304px;
}

.page-3 .hotspot--share {
  left: 139px;
  top: 300px;
}

.page-3 .hotspot--ice {
  right: 18px;
  top: 304px;
}

.page-3 .hotspot.is-selected {
  border-color: #419263;
  box-shadow: 0 12px 22px rgba(41, 112, 79, 0.16), 0 0 0 2px rgba(70, 175, 118, 0.18);
  transform: translateY(-2px);
}

.page-3 .hotspot.is-selected::after {
  content: "✓";
  position: absolute;
  right: 8px;
  bottom: 5px;
  font-size: 10px;
  font-weight: 800;
  color: #2f8a59;
}

.page-3 .fridge-action {
  left: 50%;
  bottom: 16px;
  width: 138px;
  transform: translateX(-50%);
}

.page-3 .primary-btn--fridge {
  min-height: 44px;
  font-size: 13px;
  letter-spacing: 0.08em;
}

.page-4 .page-inner::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 120px;
  width: 202px;
  height: 182px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255, 252, 243, 0.72) 0%, rgba(255, 252, 243, 0.26) 68%, rgba(255, 252, 243, 0) 100%);
  pointer-events: none;
  z-index: 0;
}

.page-4 .reveal-note {
  left: 20px;
  top: 18px;
  width: 126px;
  z-index: 4;
}

.page-4 .note-card {
  min-width: 116px;
  min-height: 62px;
  padding: 9px 10px;
  border-radius: 14px;
  text-align: center;
}

.page-4 .note-card span,
.page-4 .note-card strong {
  display: block;
  line-height: 1.2;
}

.page-4 .reveal-title--1 {
  left: 22px;
  top: 154px;
  width: 136px;
  z-index: 4;
}

.page-4 .reveal-title--2 {
  left: 22px;
  top: 197px;
  width: 136px;
  z-index: 4;
}

.page-4 .reveal-badge {
  left: 22px;
  top: 248px;
  width: 170px;
  z-index: 4;
}

.page-4 .section-title {
  font-size: 27px;
  line-height: 1.08;
}

.page-4 .choice-badge {
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.page-4 .reveal-action {
  left: 50%;
  bottom: 16px;
  width: 138px;
  transform: translateX(-50%);
}

.page-4 .primary-btn--reveal {
  min-height: 44px;
  font-size: 13px;
}

.page-5 .result-tag {
  left: 20px;
  top: 18px;
  width: 152px;
  z-index: 4;
}

.page-5 .result-title--1 {
  left: 20px;
  top: 84px;
  width: 146px;
  z-index: 4;
}

.page-5 .result-title--2 {
  left: 20px;
  top: 128px;
  width: 126px;
  z-index: 4;
}

.page-5 .result-card {
  left: 20px;
  top: 178px;
  width: 254px;
  padding: 0;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

.page-5 .result-card::before {
  display: none !important;
}

.page-5 .result-card__header {
  margin-bottom: 8px;
}

.page-5 .result-card__title {
  font-size: 12px;
  font-weight: 800;
  color: #2f8a59;
  letter-spacing: 0.08em;
}

.page-5 .result-card__identity {
  display: block;
  font-size: 21px;
  line-height: 1.08;
  color: #2f8a59;
  font-weight: 800;
}

.page-5 .result-line {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 10px;
  padding: 5px 0;
  border-bottom: 1px dashed rgba(70, 118, 80, 0.16);
}

.page-5 .result-line span {
  font-size: 12px;
  color: #657e70;
}

.page-5 .result-line strong {
  font-size: 13px;
  color: #173d30;
}

.page-5 .result-card__desc {
  margin-top: 8px;
  font-size: 12px;
  line-height: 1.45;
  color: #315745;
  white-space: pre-line;
}

.page-5 .result-action--left,
.page-5 .result-action--right {
  bottom: 16px;
  width: 132px;
}

.page-5 .result-action--left {
  left: 20px;
}

.page-5 .result-action--right {
  right: 20px;
}

.page-5 .primary-btn--result {
  min-height: 44px;
  font-size: 13px;
}

.page-5 .result-starline {
  display: none !important;
}

/* Final review-pass overrides */
.ui-shell,
.page-rail,
.music-toggle,
.restart-btn,
.toast {
  display: none !important;
}

.page-2 .album-feedback,
.page-4 .reveal-core,
.page-4 .ambient--reveal {
  display: none !important;
}

.page-2 .album-title .motion-inner,
.page-2 .album-copy .motion-inner,
.page-3 .fridge-tag .motion-inner,
.page-3 .fridge-title .motion-inner,
.page-3 .fridge-copy .motion-inner,
.page-4 .reveal-title .motion-inner,
.page-4 .reveal-badge .motion-inner,
.page-5 .result-tag .motion-inner,
.page-5 .result-title .motion-inner {
  background: none !important;
  border: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  padding: 0 !important;
}

.page-2 .album-tag {
  left: 20px;
  top: 18px;
  width: 116px;
  z-index: 3;
}

.page-2 .album-title--1 {
  left: 76px;
  top: 94px;
  width: 188px;
  z-index: 3;
}

.page-2 .album-title--2 {
  left: 76px;
  top: 138px;
  width: 186px;
  z-index: 3;
}

.page-2 .album-copy {
  left: 76px;
  top: 186px;
  width: 198px;
  z-index: 3;
}

.page-2 .section-title,
.page-3 .section-title,
.page-4 .section-title,
.page-5 .section-title {
  color: #173d30;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.56);
}

.page-2 .section-title {
  font-size: 28px;
  line-height: 1.08;
}

.page-2 .subline {
  font-size: 13px;
  line-height: 1.5;
  color: #315745;
}

.page-2 .album-paper {
  left: 70px;
  right: 68px;
  top: 246px;
  bottom: 92px;
  z-index: 2;
}

.page-2 .sticker {
  width: 96px;
  min-height: 58px;
  padding: 8px 9px 10px;
  border-radius: 14px;
  background: rgba(255, 252, 243, 0.95);
  border: 1px solid rgba(70, 118, 80, 0.18);
  box-shadow: 0 10px 22px rgba(28, 75, 56, 0.08);
}

.page-2 .sticker::before,
.page-2 .sticker::after {
  display: none;
}

.page-2 .sticker__top {
  font-size: 12.5px;
  line-height: 1.18;
  color: #173d30;
}

.page-2 .sticker__bottom {
  font-size: 10.5px;
  line-height: 1.3;
  color: #657e70;
}

.page-2 .sticker__stamp {
  top: 7px;
  right: 7px;
  bottom: auto;
  padding: 3px 7px;
  font-size: 8.5px;
}

.page-2 .sticker--left {
  left: 18px;
  top: 286px;
  --rot: -3deg;
}

.page-2 .sticker--right {
  right: 20px;
  top: 282px;
  --rot: 3deg;
}

.page-2 .sticker--bottom {
  left: 122px;
  top: 348px;
  --rot: -2deg;
}

.page-2 .sticker.is-selected {
  transform: translateY(-2px) rotate(var(--rot, 0deg)) !important;
  border-color: #419263;
  box-shadow: 0 14px 28px rgba(41, 112, 79, 0.16), 0 0 0 2px rgba(70, 175, 118, 0.18);
}

.page-2 .sticker.is-selected .sticker__stamp {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.page-2 .album-action {
  left: 50%;
  bottom: 16px;
  width: 136px;
  transform: translateX(-50%);
}

.page-2 .primary-btn--album {
  min-height: 44px;
  font-size: 13px;
}

.page-3 .page-inner::before,
.page-4 .page-inner::before {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.page-3 .page-inner::before {
  left: 12px;
  top: 12px;
  width: 246px;
  height: 220px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(248, 252, 249, 0.74) 0%, rgba(248, 252, 249, 0.34) 62%, rgba(248, 252, 249, 0) 100%);
}

.page-4 .page-inner::before {
  left: 12px;
  top: 120px;
  width: 202px;
  height: 182px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255, 252, 243, 0.72) 0%, rgba(255, 252, 243, 0.26) 68%, rgba(255, 252, 243, 0) 100%);
}

.page-3 .fridge-tag {
  left: 20px;
  top: 18px;
  width: 132px;
  z-index: 4;
}

.page-3 .fridge-title--1 {
  left: 20px;
  top: 70px;
  width: 168px;
  z-index: 4;
}

.page-3 .fridge-title--2 {
  left: 20px;
  top: 108px;
  width: 96px;
  z-index: 4;
}

.page-3 .fridge-title--3 {
  left: 20px;
  top: 146px;
  width: 168px;
  z-index: 4;
}

.page-3 .fridge-copy {
  left: 20px;
  top: 186px;
  width: 200px;
  z-index: 4;
}

.page-3 .fridge-feedback {
  left: 20px;
  top: 228px;
  width: 236px;
  z-index: 4;
}

.page-3 .fridge-pill {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 252, 243, 0.94);
  border: 1px solid rgba(70, 118, 80, 0.18);
  box-shadow: 0 8px 18px rgba(24, 77, 57, 0.08);
  color: #2f8a59;
  font-size: 13px;
  font-weight: 700;
}

.page-3 .fridge-tag .motion-inner,
.page-3 .fridge-title .motion-inner,
.page-3 .fridge-copy .motion-inner,
.page-4 .reveal-title .motion-inner,
.page-4 .reveal-badge .motion-inner,
.page-5 .result-tag .motion-inner,
.page-5 .result-title .motion-inner {
  display: inline-block;
  max-width: 100%;
}

.page-3 .section-title {
  font-size: 28px;
  line-height: 1.08;
}

.page-3 .subline {
  font-size: 13px;
  line-height: 1.45;
  color: #315745;
}

.page-3 .hotspot {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  width: 96px;
  min-height: 46px;
  padding: 7px 8px 8px;
  border-radius: 14px;
  background: rgba(255, 252, 243, 0.95);
  border: 1px solid rgba(70, 118, 80, 0.18);
  box-shadow: 0 8px 18px rgba(24, 77, 57, 0.08);
  color: #173d30;
  overflow: visible;
}

.page-3 .hotspot::before {
  display: none !important;
}

.page-3 .hotspot__label,
.page-3 .hotspot__type {
  position: static;
  transform: none;
  display: block;
  width: 100%;
  text-align: center;
  opacity: 1;
}

.page-3 .hotspot__label {
  font-size: 13.5px;
  font-weight: 800;
  line-height: 1.12;
}

.page-3 .hotspot__type {
  font-size: 11.5px;
  line-height: 1.12;
  color: #657e70;
}

.page-3 .hotspot--bag {
  left: 18px;
  top: 304px;
}

.page-3 .hotspot--share {
  left: 139px;
  top: 300px;
}

.page-3 .hotspot--ice {
  right: 18px;
  top: 304px;
}

.page-3 .hotspot.is-selected {
  border-color: #419263;
  box-shadow: 0 12px 22px rgba(41, 112, 79, 0.16), 0 0 0 2px rgba(70, 175, 118, 0.18);
  transform: translateY(-2px);
}

.page-3 .hotspot.is-selected::after {
  content: "✓";
  position: absolute;
  right: 8px;
  bottom: 5px;
  font-size: 10px;
  font-weight: 800;
  color: #2f8a59;
}

.page-3 .hotspot--bag.is-selected,
.page-3 .hotspot--share.is-selected,
.page-3 .hotspot--ice.is-selected {
  animation: none;
}

.page-3 .fridge-action {
  left: 50%;
  bottom: 16px;
  width: 138px;
  transform: translateX(-50%);
}

.page-3 .primary-btn--fridge {
  min-height: 44px;
  font-size: 13px;
  letter-spacing: 0.08em;
}

.page-4 .reveal-note {
  left: 20px;
  top: 18px;
  width: 126px;
  z-index: 4;
}

.page-4 .note-card {
  min-width: 116px;
  min-height: 62px;
  padding: 9px 10px;
  border-radius: 14px;
  text-align: center;
}

.page-4 .note-card span,
.page-4 .note-card strong {
  display: block;
  line-height: 1.2;
}

.page-4 .reveal-title--1 {
  left: 22px;
  top: 154px;
  width: 136px;
  z-index: 4;
}

.page-4 .reveal-title--2 {
  left: 22px;
  top: 197px;
  width: 136px;
  z-index: 4;
}

.page-4 .reveal-badge {
  left: 22px;
  top: 248px;
  width: 170px;
  z-index: 4;
}

.page-4 .section-title {
  font-size: 27px;
  line-height: 1.08;
}

.page-4 .choice-badge {
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 252, 243, 0.94);
  border: 1px solid rgba(70, 118, 80, 0.18);
  color: #2f8a59;
  font-size: 13px;
  font-weight: 700;
}

.page-4 .reveal-action {
  left: 50%;
  bottom: 16px;
  width: 138px;
  transform: translateX(-50%);
}

.page-4 .primary-btn--reveal {
  min-height: 44px;
  font-size: 13px;
}

.page-5 .result-tag {
  left: 20px;
  top: 18px;
  width: 152px;
  z-index: 4;
}

.page-5 .result-title--1 {
  left: 20px;
  top: 84px;
  width: 146px;
  z-index: 4;
}

.page-5 .result-title--2 {
  left: 20px;
  top: 128px;
  width: 126px;
  z-index: 4;
}

.page-5 .result-card {
  left: 20px;
  top: 178px;
  width: 254px;
  padding: 0;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

.page-5 .result-card::before {
  display: none !important;
}

.page-5 .result-card__header {
  margin-bottom: 8px;
}

.page-5 .result-card__title {
  font-size: 12px;
  font-weight: 800;
  color: #2f8a59;
  letter-spacing: 0.08em;
}

.page-5 .result-card__identity {
  display: block;
  font-size: 21px;
  line-height: 1.08;
  color: #2f8a59;
  font-weight: 800;
}

.page-5 .result-line {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 10px;
  padding: 5px 0;
  border-bottom: 1px dashed rgba(70, 118, 80, 0.16);
}

.page-5 .result-line span {
  font-size: 12px;
  color: #657e70;
}

.page-5 .result-line strong {
  font-size: 13px;
  color: #173d30;
}

.page-5 .result-card__desc {
  margin-top: 8px;
  font-size: 12px;
  line-height: 1.45;
  color: #315745;
  white-space: pre-line;
}

.page-5 .result-action--left,
.page-5 .result-action--right {
  bottom: 16px;
  width: 132px;
}

.page-5 .result-action--left {
  left: 20px;
}

.page-5 .result-action--right {
  right: 20px;
}

.page-5 .primary-btn--result {
  min-height: 44px;
  font-size: 13px;
}

.page-5 .result-starline {
  display: none !important;
}

.share-layer {
  background: rgba(17, 38, 30, 0.42);
  backdrop-filter: blur(10px);
}

.share-card {
  width: min(78vw, 296px);
  background: linear-gradient(180deg, rgba(250, 255, 248, 0.99) 0%, rgba(229, 245, 232, 0.97) 100%);
  box-shadow: 0 26px 60px rgba(10, 27, 20, 0.3);
}

.share-card__header strong {
  font-size: 18px;
}

.share-card__identity {
  font-size: 24px;
}

.page-1 .home-title .motion-inner,
.page-1 .home-copy .motion-inner {
  display: inline-block;
  max-width: 100%;
  padding: 0.32rem 0.5rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 10px 24px rgba(26, 79, 58, 0.08);
  backdrop-filter: blur(4px);
}

.page-1 .home-copy .motion-inner {
  padding: 0.38rem 0.56rem;
}

.page-2 .album-title .motion-inner,
.page-2 .album-copy .motion-inner,
.page-3 .fridge-title .motion-inner,
.page-3 .fridge-copy .motion-inner,
.page-4 .reveal-title .motion-inner,
.page-4 .reveal-badge .motion-inner,
.page-5 .result-tag .motion-inner,
.page-5 .result-title .motion-inner {
  display: inline-block;
  max-width: 100%;
  padding: 0.34rem 0.56rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.46);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 10px 22px rgba(24, 77, 57, 0.08);
  backdrop-filter: blur(4px);
}

.page-2 .album-title--1,
.page-2 .album-title--2,
.page-2 .album-copy {
  z-index: 3;
}

.page-2 .album-tag {
  z-index: 3;
}

.page-2 .album-paper {
  left: 14%;
  right: 14%;
  top: 31%;
  bottom: 18%;
  z-index: 2;
}

.page-2 .sticker {
  left: 50%;
  width: min(54vw, 176px);
  min-height: 74px;
  transform: translateX(-50%) rotate(var(--rot, 0deg));
}

.page-2 .sticker--left {
  top: 38%;
}

.page-2 .sticker--right {
  top: 53%;
}

.page-2 .sticker--bottom {
  top: 68%;
  bottom: auto;
}

.page-2 .album-smile {
  display: none;
}

.page-2 .album-tape {
  opacity: 0.55;
}

.page-2 .album-photo--1 {
  z-index: 1;
}

.page-3 .fridge-title--1 {
  width: 68%;
}

.page-3 .fridge-title--2 {
  width: 72%;
}

.page-3 .fridge-copy {
  width: 60%;
}

.page-3 .fridge-hotspots {
  z-index: 3;
}

.page-3 .hotspot {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 6px;
  padding: 12px 12px 11px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(250, 255, 248, 0.88), rgba(236, 246, 232, 0.78));
  border: 1px solid rgba(77, 146, 104, 0.2);
  box-shadow: 0 16px 30px rgba(25, 78, 55, 0.12);
  backdrop-filter: blur(5px);
  overflow: hidden;
}

.page-3 .hotspot::before {
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), transparent 56%);
}

.page-3 .hotspot__label,
.page-3 .hotspot__type {
  position: static;
  transform: none;
  display: block;
  width: 100%;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  opacity: 1;
  white-space: normal;
  text-align: left;
}

.page-3 .hotspot__label {
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
}

.page-3 .hotspot__type {
  font-size: 11px;
  line-height: 1.35;
  color: rgba(35, 79, 65, 0.72);
}

.page-3 .hotspot--bag {
  left: 6%;
  top: 43%;
  width: 25%;
  height: 16%;
}

.page-3 .hotspot--share {
  left: 37%;
  top: 42%;
  width: 29%;
  height: 17%;
}

.page-3 .hotspot--ice {
  right: 6%;
  top: 43%;
  width: 23%;
  height: 16%;
}

.page-3 .hotspot.is-selected {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 20px 34px rgba(25, 78, 55, 0.18), 0 0 0 2px rgba(68, 171, 114, 0.18);
}

.page-3 .hotspot.is-selected::after {
  content: "✓";
  position: absolute;
  right: 10px;
  top: 10px;
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(63, 172, 111, 0.16);
  color: var(--green-deep);
  font-size: 12px;
  font-weight: 900;
}

.page-3 .hotspot.is-selected .hotspot__label {
  color: var(--green-deep);
}

.page-4 .reveal-note {
  z-index: 3;
}

.page-4 .reveal-title--1 {
  top: 29.5%;
  width: 48%;
}

.page-4 .reveal-title--2 {
  top: 36.8%;
  width: 44%;
}

.page-4 .reveal-badge {
  top: 43.8%;
  width: 45%;
}

.page-4 .choice-badge {
  font-size: 11px;
  padding: 0.4rem 0.72rem;
  border: 1px solid rgba(61, 126, 91, 0.15);
  background: rgba(247, 253, 248, 0.92);
}

.page-5 .result-tag,
.page-5 .result-title--1,
.page-5 .result-title--2 {
  z-index: 3;
}

.page-5 .result-card {
  left: 9%;
  top: 28.5%;
  width: 72%;
  padding: 16px 16px 13px;
  background: linear-gradient(180deg, rgba(255, 251, 244, 0.95), rgba(246, 241, 229, 0.92));
  border: 1px solid rgba(66, 128, 95, 0.14);
  border-radius: 22px;
  box-shadow: 0 16px 34px rgba(27, 82, 60, 0.12);
  backdrop-filter: blur(4px);
}

.page-5 .result-card::before {
  display: block;
  inset: 8px;
  border-radius: 16px;
  border: 1px dashed rgba(63, 126, 90, 0.18);
  background: transparent;
  opacity: 1;
}

.page-5 .result-card__header {
  margin-bottom: 10px;
}

.page-5 .result-card__title {
  font-size: 13px;
  letter-spacing: 0.08em;
}

.page-5 .result-card__body {
  gap: 2px;
}

.page-5 .result-line {
  padding: 7px 0;
  grid-template-columns: 92px minmax(0, 1fr);
}

.page-5 .result-line span {
  font-size: 11px;
  color: rgba(35, 79, 65, 0.74);
}

.page-5 .result-line strong {
  font-size: 12px;
}

.page-5 .result-card__desc {
  margin-top: 10px;
  font-size: 12px;
  color: rgba(35, 79, 65, 0.84);
}

.page-5 .result-action--left,
.page-5 .result-action--right {
  bottom: 8.8%;
  width: min(36vw, 138px);
}

.page-5 .result-action--left {
  left: 8%;
}

.page-5 .result-action--right {
  right: 8%;
}

.page-5 .result-starline {
  display: none;
}

.share-layer {
  background: rgba(15, 33, 26, 0.56);
}

.share-card {
  width: min(80vw, 300px);
  padding: 18px 18px 16px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(251, 255, 249, 0.98), rgba(232, 246, 234, 0.96));
  border: 1px solid rgba(76, 145, 106, 0.2);
  box-shadow: 0 30px 72px rgba(10, 27, 20, 0.34);
}

.share-card__header strong {
  font-size: 19px;
}

.share-card__identity {
  font-size: 25px;
}

.share-card__meta div {
  grid-template-columns: 80px minmax(0, 1fr);
}

.share-card__meta span {
  font-size: 11px;
}

.share-card__meta strong {
  font-size: 12px;
}

/* Content layer rebuild */
.ui-shell,
.page-rail,
.music-toggle,
.restart-btn,
.toast,
.memory-pill,
.result-starline,
.page-4 .reveal-core {
  display: none !important;
}

.page-1 .home-title .motion-inner,
.page-2 .album-title .motion-inner,
.page-2 .album-copy .motion-inner,
.page-3 .fridge-title .motion-inner,
.page-3 .fridge-copy .motion-inner,
.page-4 .reveal-title .motion-inner,
.page-4 .reveal-badge .motion-inner,
.page-5 .result-title .motion-inner,
.page-5 .result-tag .motion-inner {
  background: none !important;
  border: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  padding: 0 !important;
}

.page-1 .home-tag {
  left: 20px;
  top: 18px;
  width: 132px;
}

.page-1 .home-title--1 {
  left: 28px;
  top: 118px;
  width: 190px;
}

.page-1 .home-title--2 {
  left: 28px;
  top: 170px;
  width: 190px;
}

.page-1 .home-copy {
  left: 28px;
  top: 244px;
  width: 196px;
}

.page-1 .home-copy .motion-inner {
  display: block;
  padding: 10px 12px !important;
  border-radius: 16px;
  background: rgba(255, 252, 243, 0.4) !important;
  border: 1px solid rgba(255, 255, 255, 0.44) !important;
}

.page-1 .headline {
  font-size: 33px;
  line-height: 1.08;
  letter-spacing: -0.05em;
  color: #173d30;
}

.page-1 .subline {
  font-size: 14px;
  line-height: 1.58;
  color: #315745;
}

.page-1 .home-action {
  left: 50%;
  bottom: 22px;
  width: 164px;
  transform: translateX(-50%);
}

.page-2 .album-smile,
.page-2 .album-tape,
.page-2 .album-leaf,
.page-2 .album-bottle-glow,
.page-2 .album-feedback {
  display: none !important;
}

.page-2 .album-tag {
  left: 22px;
  top: 22px;
  width: 112px;
  z-index: 3;
}

.page-2 .album-title--1 {
  left: 74px;
  top: 104px;
  width: 190px;
  z-index: 3;
}

.page-2 .album-title--2 {
  left: 74px;
  top: 148px;
  width: 196px;
  z-index: 3;
}

.page-2 .album-copy {
  left: 74px;
  top: 206px;
  width: 186px;
  z-index: 3;
}

.page-2 .section-title {
  font-size: 28px;
  line-height: 1.1;
  color: #173d30;
}

.page-2 .subline {
  font-size: 14px;
  line-height: 1.55;
  color: #315745;
}

.page-2 .album-paper {
  left: 72px;
  top: 274px;
  right: 72px;
  bottom: 106px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: flex-start;
}

.page-2 .sticker {
  position: relative;
  left: auto !important;
  right: auto !important;
  top: auto !important;
  bottom: auto !important;
  width: 100% !important;
  min-height: 74px;
  padding: 12px 14px 13px;
  border-radius: 18px;
  transform: rotate(var(--rot, 0deg)) !important;
  background: rgba(255, 252, 243, 0.94);
  border: 1px solid rgba(70, 118, 80, 0.22);
  box-shadow: 0 12px 28px rgba(28, 75, 56, 0.08);
}

.page-2 .sticker--left {
  --rot: -1deg;
}

.page-2 .sticker--right {
  --rot: 0deg;
}

.page-2 .sticker--bottom {
  --rot: 1deg;
}

.page-2 .sticker::before,
.page-2 .sticker::after {
  display: none;
}

.page-2 .sticker__top {
  font-size: 15px;
  font-weight: 800;
  color: #173d30;
}

.page-2 .sticker__bottom {
  font-size: 12px;
  line-height: 1.45;
  color: #657e70;
}

.page-2 .sticker__stamp {
  top: 10px;
  right: 10px;
  bottom: auto;
  font-size: 11px;
  padding: 4px 8px;
  background: rgba(255, 252, 243, 0.96);
}

.page-2 .sticker.is-selected {
  transform: translateY(-2px) rotate(var(--rot, 0deg)) !important;
  border-color: #419263;
  box-shadow: 0 16px 32px rgba(41, 112, 79, 0.14);
}

.page-2 .album-action {
  left: 50%;
  bottom: 22px;
  width: 148px;
}

.page-3 .fridge-tag {
  left: 22px;
  top: 20px;
  width: 128px;
}

.page-3 .fridge-title--1 {
  left: 22px;
  top: 84px;
  width: 150px;
}

.page-3 .fridge-title--2 {
  left: 22px;
  top: 124px;
  width: 110px;
}

.page-3 .fridge-copy {
  left: 22px;
  top: 172px;
  width: 206px;
}

.page-3 .fridge-feedback {
  left: 22px;
  top: 214px;
  width: 240px;
}

.page-3 .fridge-pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 252, 243, 0.94);
  border: 1px solid rgba(70, 118, 80, 0.22);
  box-shadow: 0 10px 24px rgba(24, 77, 57, 0.08);
  color: #2f8a59;
  font-size: 13px;
  font-weight: 700;
}

.page-3 .section-title {
  font-size: 29px;
  line-height: 1.06;
  color: #173d30;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.64);
}

.page-3 .subline {
  font-size: 14px;
  line-height: 1.55;
  color: #315745;
}

.page-3 .hotspot {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  overflow: visible !important;
}

.page-3 .hotspot::before {
  display: none !important;
}

.page-3 .hotspot__label,
.page-3 .hotspot__type {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 98px;
  display: block;
  text-align: center;
  background: rgba(255, 252, 243, 0.94);
  border-left: 1px solid rgba(70, 118, 80, 0.22);
  border-right: 1px solid rgba(70, 118, 80, 0.22);
  color: #173d30;
  opacity: 1;
  box-shadow: 0 8px 18px rgba(24, 77, 57, 0.08);
}

.page-3 .hotspot__label {
  top: calc(100% + 2px);
  padding: 8px 10px 4px;
  border-top: 1px solid rgba(70, 118, 80, 0.22);
  border-radius: 15px 15px 0 0;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
}

.page-3 .hotspot__type {
  top: calc(100% + 30px);
  padding: 0 10px 8px;
  border-bottom: 1px solid rgba(70, 118, 80, 0.22);
  border-radius: 0 0 15px 15px;
  font-size: 12px;
  line-height: 1.35;
  color: #657e70;
}

.page-3 .hotspot--bag {
  left: 20px;
  top: 276px;
  width: 92px;
  height: 104px;
}

.page-3 .hotspot--share {
  left: 132px;
  top: 270px;
  width: 112px;
  height: 110px;
}

.page-3 .hotspot--share .hotspot__label,
.page-3 .hotspot--share .hotspot__type {
  width: 108px;
}

.page-3 .hotspot--ice {
  right: 20px;
  top: 278px;
  width: 90px;
  height: 100px;
}

.page-3 .hotspot.is-selected .hotspot__label,
.page-3 .hotspot.is-selected .hotspot__type {
  border-color: #419263;
}

.page-3 .hotspot.is-selected::after {
  top: calc(100% + 54px);
  right: 50%;
  transform: translateX(50%);
}

.page-3 .fridge-action {
  left: 50%;
  bottom: 20px;
  width: 160px;
}

.page-4 .reveal-title .motion-inner,
.page-4 .reveal-badge .motion-inner {
  background: none !important;
  padding: 0 !important;
}

.page-4 .reveal-note {
  left: 20px;
  top: 20px;
  width: 118px;
}

.page-4 .reveal-title--1 {
  left: 24px;
  top: 248px;
  width: 126px;
}

.page-4 .reveal-title--2 {
  left: 24px;
  top: 292px;
  width: 126px;
}

.page-4 .reveal-badge {
  left: 24px;
  top: 346px;
  width: 168px;
}

.page-4 .choice-badge {
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 252, 243, 0.94);
  border: 1px solid rgba(70, 118, 80, 0.22);
  color: #2f8a59;
  font-size: 13px;
  font-weight: 700;
}

.page-4 .reveal-action {
  left: 50%;
  bottom: 20px;
  width: 152px;
}

.page-5 .result-tag {
  left: 24px;
  top: 20px;
  width: 150px;
}

.page-5 .result-title--1 {
  left: 24px;
  top: 82px;
  width: 146px;
}

.page-5 .result-title--2 {
  left: 24px;
  top: 126px;
  width: 126px;
}

.page-5 .result-card {
  left: 24px;
  top: 182px;
  width: 248px;
  padding: 0;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

.page-5 .result-card::before {
  display: none !important;
}

.page-5 .result-card__header {
  margin-bottom: 10px;
}

.page-5 .result-card__title {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 800;
  color: #2f8a59;
}

.page-5 .result-card__identity {
  display: block;
  font-size: 22px;
  line-height: 1.12;
  color: #2f8a59;
  font-weight: 800;
}

.page-5 .result-line {
  grid-template-columns: 74px minmax(0, 1fr);
  padding: 7px 0;
  border-bottom: 1px dashed rgba(70, 118, 80, 0.16);
}

.page-5 .result-line span {
  font-size: 13px;
  color: #657e70;
}

.page-5 .result-line strong {
  font-size: 14px;
  color: #173d30;
}

.page-5 .result-card__desc {
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.55;
  color: #315745;
}

.page-5 .result-action--left,
.page-5 .result-action--right {
  bottom: 18px;
  width: 144px;
}

.page-5 .result-action--left {
  left: 20px;
}

.page-5 .result-action--right {
  right: 20px;
}

.primary-btn {
  min-height: 48px;
  border-radius: 18px;
  background: rgba(255, 252, 243, 0.96);
  border: 1px solid rgba(70, 118, 80, 0.22);
  box-shadow: 0 10px 22px rgba(26, 79, 58, 0.1);
  color: #173d30;
}

.share-layer__close {
  position: static;
  transform: none;
  min-width: 110px;
  min-height: 40px;
  margin-top: 0;
}

/* Typography and layout refinement pass */
.eyebrow {
  font-size: 11px;
  line-height: 1;
  padding: 0.38rem 0.72rem;
  letter-spacing: 0.1em;
}

.headline {
  font-size: clamp(28px, 7.2vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.045em;
  text-shadow:
    0 2px 0 rgba(255, 255, 255, 0.7),
    0 8px 18px rgba(19, 50, 36, 0.08);
}

.section-title {
  font-size: clamp(22px, 5.8vw, 32px);
  line-height: 1.12;
  letter-spacing: -0.04em;
  text-shadow:
    0 2px 0 rgba(255, 255, 255, 0.72),
    0 8px 18px rgba(19, 50, 36, 0.08);
}

.subline,
.helper {
  font-size: clamp(13px, 3.8vw, 16px);
  line-height: 1.58;
  color: rgba(35, 79, 65, 0.82);
}

.page-1 .home-tag {
  left: 8.5%;
  top: 8.5%;
  width: 48%;
}

.page-1 .home-title--1 {
  left: 9%;
  top: 19%;
  width: 54%;
}

.page-1 .home-title--2 {
  left: 9%;
  top: 28%;
  width: 50%;
}

.page-1 .home-copy {
  left: 9%;
  top: 39%;
  width: 52%;
}

.page-1 .home-action {
  left: 50%;
  bottom: 10.5%;
  width: min(40vw, 150px);
}

.page-2 .album-tag {
  left: 9%;
  top: 7.5%;
  width: 34%;
}

.page-2 .album-title--1 {
  left: 15%;
  top: 16.5%;
  width: 46%;
}

.page-2 .album-title--2 {
  left: 15%;
  top: 23.5%;
  width: 44%;
}

.page-2 .album-copy {
  left: 15%;
  top: 30.5%;
  width: 44%;
}

.page-2 .album-paper {
  left: 10%;
  right: 10%;
  top: 25.5%;
  bottom: 18.5%;
}

.page-2 .sticker {
  width: min(35vw, 128px);
  min-height: 72px;
  padding: 11px 12px 13px;
}

.page-2 .sticker__top {
  font-size: 13px;
}

.page-2 .sticker__bottom {
  font-size: 10.5px;
  line-height: 1.42;
}

.page-2 .sticker--left {
  left: 4%;
  top: 37.5%;
}

.page-2 .sticker--right {
  right: 4%;
  top: 31.5%;
  width: min(40vw, 140px);
}

.page-2 .sticker--bottom {
  left: 30%;
  bottom: 11%;
  width: min(38vw, 132px);
}

.page-2 .album-action {
  left: 50%;
  bottom: 9.2%;
  width: min(44vw, 168px);
}

.page-3 .fridge-tag {
  left: 8%;
  top: 7.5%;
  width: 34%;
}

.page-3 .fridge-title--1 {
  left: 8%;
  top: 12%;
  width: 66%;
}

.page-3 .fridge-title--2 {
  left: 8%;
  top: 21%;
  width: 68%;
}

.page-3 .fridge-copy {
  left: 8%;
  top: 30.5%;
  width: 58%;
}

.page-3 .fridge-tag .motion-inner,
.page-3 .fridge-title .motion-inner,
.page-3 .fridge-copy .motion-inner {
  display: inline-block;
  max-width: 100%;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.page-3 .section-title {
  font-size: clamp(25px, 6.9vw, 36px);
  line-height: 1.08;
  text-shadow: none;
}

.page-3 .subline {
  font-size: 14px;
  text-shadow: none;
}

.page-3 .hotspot__label,
.page-3 .hotspot__type {
  font-size: 11px;
  line-height: 1.12;
  padding: 0.36rem 0.52rem;
  background: rgba(247, 253, 248, 0.82);
  box-shadow: none;
}

.page-3 .hotspot__type {
  top: calc(100% + 15px);
}

.page-3 .hotspot--bag {
  left: 6%;
  top: 41%;
  width: 24%;
  height: 18%;
}

.page-3 .hotspot--share {
  left: 34%;
  top: 42%;
  width: 27%;
  height: 18%;
}

.page-3 .hotspot--ice {
  right: 5%;
  top: 43%;
  width: 20%;
  height: 16%;
}

.page-3 .fridge-action {
  left: 50%;
  bottom: 8.6%;
  width: min(44vw, 168px);
}

.page-3 .primary-btn--fridge {
  box-shadow: none;
}

.page-4 .reveal-note {
  left: 7.5%;
  top: 7.5%;
  width: 32%;
}

.page-4 .note-card {
  min-width: 112px;
  min-height: 64px;
  padding: 9px 11px;
}

.page-4 .reveal-title--1 {
  left: 7.5%;
  top: 29%;
  width: 48%;
}

.page-4 .reveal-title--2 {
  left: 7.5%;
  top: 36.2%;
  width: 42%;
}

.page-4 .reveal-badge {
  left: 8%;
  top: 43.2%;
  width: 44%;
}

.page-4 .choice-badge {
  font-size: 10.5px;
  padding: 0.38rem 0.68rem;
}

.page-4 .reveal-action {
  left: 50%;
  bottom: 9%;
  width: min(36vw, 140px);
}

.page-5 .result-tag {
  left: 8%;
  top: 7.5%;
  width: 36%;
}

.page-5 .result-title--1 {
  left: 8%;
  top: 15%;
  width: 48%;
}

.page-5 .result-title--2 {
  left: 8%;
  top: 22.2%;
  width: 42%;
}

.page-5 .result-card {
  left: 8%;
  top: 28%;
  width: 72%;
  min-height: 0;
  padding: 14px 15px 12px;
  background: rgba(255, 255, 250, 0.4);
  border: 1px solid rgba(66, 128, 95, 0.1);
  border-radius: 20px;
  box-shadow: 0 10px 24px rgba(27, 82, 60, 0.08);
  backdrop-filter: blur(4px);
}

.page-5 .result-card__header {
  margin-bottom: 10px;
}

.page-5 .result-card__title {
  font-size: 13px;
}

.page-5 .result-card__chip {
  display: none;
}

.page-5 .result-card__body {
  gap: 4px;
}

.page-5 .result-line {
  padding: 7px 0;
  grid-template-columns: 84px minmax(0, 1fr);
}

.page-5 .result-line span {
  font-size: 11px;
}

.page-5 .result-line strong {
  font-size: 12px;
}

.page-5 .result-card__desc {
  margin-top: 10px;
  font-size: 12px;
  line-height: 1.56;
}

.page-5 .result-action--left,
.page-5 .result-action--right {
  bottom: 8.8%;
  width: min(37vw, 140px);
}

.share-layer {
  background: rgba(17, 38, 30, 0.42);
  backdrop-filter: blur(10px);
}

.share-card {
  width: min(78vw, 296px);
  background: linear-gradient(180deg, rgba(250, 255, 248, 0.99) 0%, rgba(229, 245, 232, 0.97) 100%);
  box-shadow: 0 26px 60px rgba(10, 27, 20, 0.3);
}

.share-card__header strong {
  font-size: 18px;
}

.share-card__identity {
  font-size: 24px;
}
