/* ==========================================================================
   小世界 · 入口页
   主题：星月与繁花的小世界（夜空 / 月亮 / 星辰 / 花 / 微光粒子 / 生长感）
   单页沉浸式，手机端优先；无外部字体、无第三方库。
   ========================================================================== */

/* ---------- 1. 变量 ---------- */
:root {
  --ink:        #f2eeff;
  --ink-soft:   rgba(222, 218, 255, .62);
  --ink-dim:    rgba(214, 210, 250, .40);

  --moon:       #f8f6ff;
  --lav:        #b3a4ec;
  --pink:       #efbcd6;
  --leaf:       #9ec9ac;
  --gold:       #f0dcb4;

  --line:       rgba(226, 232, 255, .15);
  --line-lit:   rgba(236, 236, 255, .34);

  --kai:  "Kaiti SC", "STKaiti", "KaiTi", "Kaiti TC", "楷体", "Songti SC", "STSong", "SimSun", serif;
  --sans: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", system-ui, -apple-system, "Segoe UI", sans-serif;

  --ease: cubic-bezier(.22, .8, .2, 1);
}

* { box-sizing: border-box; }

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

body {
  min-height: 100vh;
  min-height: 100dvh;
  overflow-x: hidden;
  background: #04050c;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.6;
  -webkit-tap-highlight-color: transparent;
  -webkit-font-smoothing: antialiased;
}

button { font: inherit; color: inherit; }

/* ---------- 2. 天幕 ---------- */
.sky-glow {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(88% 58% at 50% 6%,  rgba(96, 84, 178, .40) 0%, rgba(96, 84, 178, 0) 64%),
    radial-gradient(110% 62% at 50% 104%, rgba(74, 56, 122, .34) 0%, rgba(74, 56, 122, 0) 62%),
    radial-gradient(70% 40% at 12% 82%,  rgba(58, 84, 104, .22) 0%, rgba(58, 84, 104, 0) 70%),
    linear-gradient(180deg, #0a0d20 0%, #080a18 44%, #04060f 100%);
  opacity: 0;
  transition: opacity 2.2s var(--ease);
}
body.is-ready .sky-glow { opacity: 1; }

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

/* ---------- 3. 开场加载 ---------- */
.intro {
  position: fixed;
  inset: 0;
  z-index: 5;
  display: grid;
  place-items: center;
  padding: 0 24px;
  pointer-events: none;
}

.intro__line {
  margin: 0;
  padding-top: 30vh;           /* 落在月亮下方，不和月亮抢位置 */
  max-width: 84vw;
  font-family: var(--kai);
  font-size: clamp(16px, 4.9vw, 23px);
  letter-spacing: .2em;
  text-indent: .2em;
  text-align: center;
  color: #f4f1ff;
  text-shadow: 0 0 26px rgba(178, 166, 255, .55), 0 0 60px rgba(140, 128, 210, .35);
  opacity: 0;
  transform: translateY(12px);
  filter: blur(9px);
  transition: opacity 1.05s var(--ease), transform 1.25s var(--ease), filter 1.25s var(--ease);
}

.intro.is-on  .intro__line { opacity: 1; transform: none; filter: blur(0); }
.intro.is-off .intro__line { opacity: 0; transform: translateY(-14px); filter: blur(11px); }

/* ---------- 4. 页面骨架 ---------- */
.world {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
  min-height: 100dvh;
  padding:
    calc(30px + env(safe-area-inset-top))
    calc(20px + env(safe-area-inset-right))
    calc(20px + env(safe-area-inset-bottom))
    calc(20px + env(safe-area-inset-left));
  gap: clamp(8px, 1.6vh, 16px);
}

/* ---------- 5. 顶部标题 ---------- */
.head {
  text-align: center;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 1.15s var(--ease), transform 1.25s var(--ease);
}
body.is-ready .head { opacity: 1; transform: none; transition-delay: .1s; }

.head__eyebrow {
  margin: 0;
  font-size: 11.5px;
  letter-spacing: .38em;
  text-indent: .38em;
  color: var(--ink-dim);
}

.head__title {
  margin: 8px 0 10px;
  font-family: var(--kai);
  font-weight: 400;
  font-size: clamp(26px, 8.2vw, 38px);
  letter-spacing: .16em;
  text-indent: .16em;
  color: var(--moon);
  text-shadow: 0 0 22px rgba(206, 198, 255, .45), 0 0 54px rgba(150, 138, 220, .28);
}

.head__wish {
  margin: 0;
  font-family: var(--kai);
  font-size: clamp(13px, 3.7vw, 15px);
  letter-spacing: .18em;
  line-height: 1.85;
  color: var(--ink-soft);
}

/* ---------- 6. 中央舞台：月亮 ---------- */
.stage {
  position: relative;
  flex: 1 1 auto;
  width: min(100%, 580px);
  min-height: clamp(196px, 30vh, 420px);
}

.moon {
  position: absolute;
  left: 50%;
  top: 50%;
  width: clamp(126px, 40vw, 208px);
  height: clamp(126px, 40vw, 208px);
  transform: translate(-50%, -50%);
}

.moon__halo {
  position: absolute;
  inset: -64%;
  border-radius: 50%;
  background: radial-gradient(circle,
    rgba(214, 212, 255, .26) 0%,
    rgba(186, 174, 243, .13) 34%,
    rgba(150, 138, 220, .05) 56%,
    rgba(150, 138, 220, 0) 72%);
  opacity: 0;
  transition: opacity 2.4s var(--ease);
}
body.is-moon  .moon__halo { opacity: 1; }
body.is-ready .moon__halo { animation: haloBreath 11s ease-in-out infinite; }

@keyframes haloBreath {
  0%, 100% { opacity: 1;    transform: scale(1); }
  50%      { opacity: .78;  transform: scale(1.07); }
}

.moon__disc {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at 66% 70%, rgba(136, 138, 200, .34) 0%, rgba(136, 138, 200, 0) 21%),
    radial-gradient(circle at 32% 64%, rgba(148, 148, 208, .24) 0%, rgba(148, 148, 208, 0) 18%),
    radial-gradient(circle at 58% 28%, rgba(158, 156, 212, .20) 0%, rgba(158, 156, 212, 0) 16%),
    radial-gradient(circle at 34% 30%,
      #fffdf9 0%,
      #f5f2ff 28%,
      #e0e0f8 56%,
      #c0c0e6 80%,
      #a19fd0 100%);
  box-shadow:
    inset -12px -14px 30px rgba(112, 114, 178, .42),
    inset 6px 7px 20px rgba(255, 255, 255, .48),
    0 0 44px rgba(206, 208, 255, .28),
    0 0 128px rgba(146, 136, 220, .24);
  opacity: 0;
  transform: scale(.82);
  transition: opacity 1.3s var(--ease), transform 1.7s var(--ease);
}
body.is-moon .moon__disc { opacity: 1; transform: scale(1); }

/* ---------- 7. 星星 ---------- */
.star {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: calc(30px * var(--s, 1));
  height: calc(30px * var(--s, 1));
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  transform: translate(-50%, -50%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 1.2s var(--ease);
}
body.is-ready .star { opacity: 1; pointer-events: auto; }
.star:nth-of-type(1) { transition-delay: .30s; }
.star:nth-of-type(2) { transition-delay: .52s; }
.star:nth-of-type(3) { transition-delay: .74s; }
.star:nth-of-type(4) { transition-delay: .96s; }

.star svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: #f3eeff;
  fill: url(#starGrad);
  filter: drop-shadow(0 0 7px rgba(226, 220, 255, .75));
  animation: starTwinkle 5.4s ease-in-out infinite;
}
.star:nth-of-type(2) svg { animation-duration: 6.8s; animation-delay: -1.6s; }
.star:nth-of-type(3) svg { animation-duration: 7.6s; animation-delay: -3.4s; }
.star:nth-of-type(4) svg { animation-duration: 6.2s; animation-delay: -2.4s; }

@keyframes starTwinkle {
  0%, 100% { opacity: .62; transform: scale(.92) rotate(0deg); }
  50%      { opacity: 1;   transform: scale(1.06) rotate(9deg); }
}

.star.is-hit { animation: starPop .9s var(--ease); }
@keyframes starPop {
  0%   { transform: translate(-50%, -50%) scale(1); }
  34%  { transform: translate(-50%, -50%) scale(1.42); }
  100% { transform: translate(-50%, -50%) scale(1); }
}

@media (hover: hover) {
  .star:hover svg { animation-play-state: paused; opacity: 1; transform: scale(1.14); }
}

/* ---------- 8. 花 ---------- */
.flower {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: calc(42px * var(--s, 1));
  height: calc(42px * var(--s, 1));
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  transform: translate(-50%, -50%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 1.2s var(--ease);
}
body.is-ready .flower { opacity: .72; pointer-events: auto; }
.flower:nth-of-type(5) { transition-delay: 1.02s; }
.flower:nth-of-type(6) { transition-delay: 1.14s; }
.flower:nth-of-type(7) { transition-delay: 1.26s; }

.flower svg { display: block; width: 100%; height: 100%; overflow: visible; }

.flower__glow,
.flower__petals,
.flower__bud,
.flower__core,
.flower__pollen {
  transform-box: view-box;
  transform-origin: 50px 50px;
}

.flower__glow {
  fill: url(#softGlow);
  opacity: 0;
  transition: opacity 1.1s var(--ease);
}
.flower.is-bloomed .flower__glow { opacity: 1; }

.flower__petals {
  fill: #f0c3da;
  fill-opacity: .88;
  transform: scale(.4) rotate(-32deg);
  opacity: .34;
  transition: transform 1.25s var(--ease), opacity .9s var(--ease);
}
.flower.is-bloomed .flower__petals { transform: scale(1) rotate(0deg); opacity: 1; }

.flower__bud {
  fill: #c9b3e6;
  fill-opacity: .82;
  transition: opacity .7s var(--ease), transform 1s var(--ease);
}
.flower.is-bloomed .flower__bud { opacity: 0; transform: scale(.4); }

.flower__core { fill: #f6e6c4; fill-opacity: .9; transition: opacity .9s var(--ease) .3s; opacity: .5; }
.flower__pollen { fill: #fff6e2; transition: opacity .9s var(--ease) .3s; opacity: 0; }
.flower.is-bloomed .flower__core,
.flower.is-bloomed .flower__pollen { opacity: 1; }

.flower::after {
  content: "";
  position: absolute;
  inset: 16%;
  border-radius: 50%;
  border: 1px solid rgba(255, 214, 238, .7);
  opacity: 0;
  pointer-events: none;
}
.flower.is-bloomed::after { animation: bloomRing 1.15s var(--ease); }
.flower.is-bloomed { opacity: 1; }

@keyframes bloomRing {
  0%   { opacity: .85; transform: scale(.5); }
  100% { opacity: 0;   transform: scale(2.1); }
}

@media (hover: hover) {
  .flower:hover { opacity: 1; transition: opacity .45s var(--ease); }
  .flower:hover .flower__petals { transform: scale(.82) rotate(-14deg); opacity: .7; }
}

/* ---------- 9. 月亮下的小提示 ---------- */
.tip {
  margin: 0;
  font-size: 12px;
  letter-spacing: .2em;
  text-indent: .2em;
  color: var(--ink-dim);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 1.2s var(--ease), transform 1.2s var(--ease);
}
.tip span { display: inline-block; animation: tipBreath 4.8s ease-in-out infinite; }
body.is-ready .tip { opacity: 1; transform: none; transition-delay: 1.5s; }
.tip.is-off { opacity: 0 !important; transform: translateY(-6px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.tip.is-off span { animation: none; }

@keyframes tipBreath {
  0%, 100% { opacity: .42; }
  50%      { opacity: .86; }
}

/* ---------- 10. 三个入口 ---------- */
.entries {
  display: flex;
  flex-direction: column;
  gap: 11px;
  width: min(100%, 460px);
}

.entry {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px 18px;
  border-radius: 20px;
  text-decoration: none;
  color: var(--ink);
  background:
    linear-gradient(148deg,
      rgba(255, 255, 255, .085) 0%,
      rgba(255, 255, 255, .028) 52%,
      rgba(178, 162, 240, .055) 100%);
  border: 1px solid var(--line);
  box-shadow:
    0 14px 32px rgba(3, 5, 18, .48),
    inset 0 1px 0 rgba(255, 255, 255, .09);
  backdrop-filter: blur(14px) saturate(1.15);
  -webkit-backdrop-filter: blur(14px) saturate(1.15);
  overflow: hidden;
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition:
    opacity .5s var(--ease),
    transform .5s var(--ease),
    box-shadow .5s var(--ease),
    border-color .5s var(--ease);
}

/* 卡片逐个浮上来：动画只写起点，结束后不会压住悬停位移 */
body.is-ready .entry {
  opacity: 1;
  transform: none;
  pointer-events: auto;
  animation: entryIn 1.2s var(--ease) backwards;
  animation-delay: calc(.24s + var(--i) * .13s);
}

@keyframes entryIn {
  from { opacity: 0; transform: translateY(16px); }
}

/* 卡片上缓缓扫过的一道微光 */
.entry::after {
  content: "";
  position: absolute;
  top: -60%;
  left: -35%;
  width: 34%;
  height: 220%;
  background: linear-gradient(100deg, rgba(255, 255, 255, .13), rgba(255, 255, 255, 0));
  transform: rotate(14deg);
  animation: sweep 8.5s ease-in-out infinite;
  animation-delay: calc(var(--i) * 1.7s);
  pointer-events: none;
}

@keyframes sweep {
  0%   { transform: translateX(0) rotate(14deg); opacity: 0; }
  14%  { opacity: .85; }
  48%  { transform: translateX(520%) rotate(14deg); opacity: 0; }
  100% { transform: translateX(520%) rotate(14deg); opacity: 0; }
}

.entry:active { transform: scale(.985); }

@media (hover: hover) {
  .entry:hover {
    transform: translateY(-5px);
    border-color: var(--line-lit);
    box-shadow:
      0 20px 44px rgba(3, 5, 18, .55),
      0 0 38px rgba(168, 154, 240, .20),
      inset 0 1px 0 rgba(255, 255, 255, .14);
  }
  .entry:hover .entry__icon {
    transform: scale(1.07);
    color: #fbf8ff;
    box-shadow: 0 0 22px rgba(178, 164, 245, .32), inset 0 1px 0 rgba(255, 255, 255, .16);
  }
  .entry:hover .entry__arrow { opacity: 1; transform: translateX(3px); }
}

.entry__icon {
  flex: none;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 13px;
  color: #ece7ff;
  background: linear-gradient(150deg, rgba(255, 255, 255, .12), rgba(178, 162, 240, .08));
  border: 1px solid rgba(226, 232, 255, .14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .12);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), color .5s var(--ease);
}
.entry__icon svg { width: 21px; height: 21px; }

.entry__text { display: flex; flex-direction: column; gap: 3px; min-width: 0; flex: 1 1 auto; }

.entry__title {
  font-family: var(--kai);
  font-size: 18px;
  letter-spacing: .08em;
  color: var(--moon);
}

.entry__sub {
  font-size: 12.5px;
  letter-spacing: .06em;
  color: var(--ink-soft);
}

.entry__arrow {
  flex: none;
  margin-left: auto;
  width: 7px;
  height: 7px;
  border-top: 1.4px solid rgba(226, 232, 255, .7);
  border-right: 1.4px solid rgba(226, 232, 255, .7);
  transform: rotate(45deg);
  opacity: .38;
  transition: opacity .5s var(--ease), transform .5s var(--ease);
}

.entry__soon {
  display: none;
  flex: none;
  position: absolute;
  top: 11px;
  right: 14px;
  padding: 3px 9px;
  border-radius: 999px;
  font-size: 10.5px;
  letter-spacing: .12em;
  color: var(--ink-dim);
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(226, 232, 255, .12);
}
.entry.is-soon .entry__soon { display: inline-block; }
.entry.is-soon .entry__icon { color: rgba(236, 231, 255, .72); }
.entry.is-soon { border-color: rgba(226, 232, 255, .10); }
.entry.is-soon .entry__arrow { display: none; }

/* ---------- 11. 小秘密计数 ---------- */
.secrets {
  margin: 2px 0 0;
  min-height: 17px;
  font-size: 11.5px;
  letter-spacing: .22em;
  text-indent: .22em;
  text-align: center;
  color: var(--ink-dim);
  opacity: 0;
  transition: opacity .9s var(--ease);
}
.secrets.is-on { opacity: 1; }

/* 页脚（备案号）出现时，把底部内容轻轻抬一点，别压住上面那行小字。
   --beian-h 是页脚的实际高度，由 js/beian.js 量好写在 <html> 上。 */
body.has-beian .world { padding-bottom: calc(var(--beian-h, 26px) + 14px); }

/* ---------- 12. 角落里的小植物 ---------- */
.plant {
  position: fixed;
  z-index: 4;
  left: calc(6px + env(safe-area-inset-left));
  top: calc(6px + env(safe-area-inset-top));
  width: 48px;
  height: 63px;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 1.4s var(--ease), transform 1.4s var(--ease);
}
body.is-ready .plant { opacity: .58; transform: none; pointer-events: auto; transition-delay: 1.9s; }
.plant svg { display: block; width: 100%; height: 100%; overflow: visible; }

@media (hover: hover) {
  .plant:hover { opacity: .95; transition: opacity .5s var(--ease); }
}

.plant__g {
  transform-box: view-box;
  transform-origin: 32px 78px;
  opacity: 0;
  transform: scale(.32);
  transition: opacity 1.6s var(--ease), transform 1.9s var(--ease);
}
.plant__stem { fill: none; stroke: var(--leaf); stroke-width: 1.6; stroke-linecap: round; }
.plant__leaf { fill: var(--leaf); fill-opacity: .72; }
.plant__g--leaf  .plant__leaf { fill-opacity: .62; }
.plant__bud { fill: #cdb6e8; fill-opacity: .8; }
.plant__g--bloom .plant__petals ellipse { fill: #f0c3da; fill-opacity: .85; }
.plant__core { fill: var(--gold); fill-opacity: .9; }

.plant.is-stage-1 .plant__g--sprout,
.plant.is-stage-2 .plant__g--sprout,
.plant.is-stage-2 .plant__g--leaf,
.plant.is-stage-3 .plant__g--sprout,
.plant.is-stage-3 .plant__g--leaf,
.plant.is-stage-3 .plant__g--bud,
.plant.is-stage-4 .plant__g--sprout,
.plant.is-stage-4 .plant__g--leaf,
.plant.is-stage-4 .plant__g--bud,
.plant.is-stage-4 .plant__g--bloom { opacity: 1; transform: scale(1); }

.plant__g--leaf  { transition-delay: .1s; }
.plant__g--bud   { transition-delay: .2s; }
.plant__g--bloom { transition-delay: .3s; }
.plant.is-stage-4 .plant__g--bloom { filter: drop-shadow(0 0 7px rgba(240, 190, 218, .75)); }

.plant.is-poked { animation: plantPoke 1.1s var(--ease); }
@keyframes plantPoke {
  0%   { transform: translateY(6px) rotate(0deg); }
  30%  { transform: translateY(0) rotate(-3.5deg); }
  65%  { transform: translateY(0) rotate(2.5deg); }
  100% { transform: translateY(0) rotate(0deg); }
}

/* ---------- 13. 悄悄话 ---------- */
.whisper {
  position: fixed;
  z-index: 6;
  left: 50%;
  top: 50%;
  max-width: min(78vw, 340px);
  padding: 9px 17px;
  border-radius: 999px;
  font-family: var(--kai);
  font-size: 13.5px;
  letter-spacing: .1em;
  line-height: 1.5;
  text-align: center;
  color: #f7f4ff;
  background: rgba(13, 15, 32, .58);
  border: 1px solid rgba(228, 232, 255, .17);
  box-shadow: 0 10px 32px rgba(3, 5, 18, .5), 0 0 30px rgba(160, 148, 236, .14);
  backdrop-filter: blur(9px);
  -webkit-backdrop-filter: blur(9px);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -120%);
}
.whisper.is-on { animation: whisperUp 3.2s var(--ease) both; }

@keyframes whisperUp {
  0%   { opacity: 0; transform: translate(-50%, -72%) scale(.94); filter: blur(7px); }
  14%  { opacity: 1; transform: translate(-50%, -100%) scale(1);  filter: blur(0); }
  74%  { opacity: 1; transform: translate(-50%, -112%) scale(1); }
  100% { opacity: 0; transform: translate(-50%, -142%) scale(1); }
}

/* ---------- 14. 杂项 ---------- */
.svg-defs { position: absolute; width: 0; height: 0; overflow: hidden; }

/* ---------- 15. 响应式 ---------- */
@media (max-height: 730px) {
  .head__title { font-size: clamp(23px, 7.4vw, 30px); margin: 6px 0 8px; }
  .head__wish  { font-size: 12.5px; line-height: 1.7; }
  .stage       { min-height: 178px; }
  .entry       { padding: 12px 16px; gap: 12px; border-radius: 18px; }
  .entry__icon { width: 34px; height: 34px; border-radius: 11px; }
  .entry__title { font-size: 16.5px; }
  .plant       { width: 42px; height: 55px; }
}

@media (max-height: 620px) {
  .tip { display: none; }
  .moon { width: clamp(104px, 32vw, 150px); height: clamp(104px, 32vw, 150px); }
}

/* 矮屏（iPhone SE 一类）：整体收紧，尽量一屏放得下 */
@media (max-height: 640px) {
  .world {
    padding-top: calc(16px + env(safe-area-inset-top));
    padding-bottom: calc(14px + env(safe-area-inset-bottom));
    gap: 6px;
  }
  .head__eyebrow { font-size: 11px; }
  .head__wish { font-size: 12px; line-height: 1.65; }
  .stage { min-height: 148px; }
  .entries { gap: 9px; }
  .entry { padding: 10px 15px; border-radius: 16px; }
  .entry__icon { width: 32px; height: 32px; border-radius: 10px; }
  .entry__title { font-size: 16px; }
  .entry__sub { font-size: 11.5px; }
  .secrets { min-height: 15px; font-size: 11px; }
}

/* 矮屏 + 有备案页脚：再收紧一点，保证三张卡片和底部那行小字都不被压住 */
@media (max-height: 640px) {
  body.has-beian .world {
    padding-top: calc(10px + env(safe-area-inset-top));
    padding-bottom: calc(var(--beian-h, 22px) + 5px);
    gap: 5px;
  }
  body.has-beian .stage { min-height: 136px; }
  body.has-beian .entries { gap: 8px; }
  body.has-beian .entry { padding: 9px 14px; border-radius: 15px; }
}

/* 桌面 / 横屏充裕时：三张卡片并排 */
@media (min-width: 880px) and (min-height: 640px) {
  .entries { flex-direction: row; width: min(100%, 950px); gap: 16px; }
  .entry {
    flex: 1 1 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
    min-height: 176px;
    padding: 22px;
  }
  .entry__text { flex: 1 1 auto; }
  .entry__sub  { font-size: 13px; }
  .entry__arrow { position: absolute; right: 20px; bottom: 22px; margin: 0; }
  .entry__soon  { position: absolute; top: 18px; right: 18px; margin: 0; }
}

/* ---------- 16. 降低动效 ---------- */
@media (prefers-reduced-motion: reduce) {
  .sky-glow, .head, .star, .flower, .entry, .tip, .plant,
  .intro__line, .moon__disc, .moon__halo,
  .flower__petals, .flower__bud, .flower__glow, .plant__g {
    transition-duration: .01ms !important;
    transition-delay: 0ms !important;
  }
  .moon__halo, .star svg, .tip, .entry::after { animation: none !important; }
  .tip span { animation: none; }
  .star svg { opacity: .92; }
  .tip { opacity: .6 !important; }
}
