/* 心愿树 · 站点视觉（品牌条 / 许愿墙 / 氛围） */
:root {
  --rose: #c41e3a;
  --rose-soft: #e85a6b;
  --ink: #2a1a1e;
  --cream: #fff7f4;
  --mist: #ffe8ec;
}

body.wish-site {
  background:
    radial-gradient(ellipse at 50% -10%, #ffe0e6 0%, transparent 55%),
    linear-gradient(180deg, #fff5f6 0%, #ffe8ec 40%, #fff7f4 100%);
  color: var(--ink);
  overflow-x: auto;
  overflow-y: auto;
}

/* ===== 树冠闪闪发光 ===== */
#tree-sparkles {
  position: absolute;
  left: 0;
  top: 0;
  width: 1100px;
  height: 680px;
  pointer-events: none;
  z-index: 6;
  overflow: hidden;
  opacity: 0;
  transition: opacity 1s ease;
}
#tree-sparkles.is-on {
  opacity: 1;
}
#tree-sparkles::before {
  content: "";
  position: absolute;
  left: 28%;
  top: 4%;
  width: 58%;
  height: 58%;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 240, 245, 0.28) 0%,
    rgba(255, 190, 200, 0.1) 38%,
    transparent 72%
  );
  animation: treeCanopyShimmer 4.8s ease-in-out infinite;
  pointer-events: none;
}
.tree-sparkle {
  position: absolute;
  display: block;
  margin: 0;
  padding: 0;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0.35);
  opacity: 0;
  animation-name: treeTwinkle;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  will-change: transform, opacity;
  pointer-events: none;
}
.tree-sparkle--dot {
  background: #fff;
  box-shadow:
    0 0 4px 1px rgba(255, 255, 255, 0.95),
    0 0 10px 2px rgba(255, 180, 195, 0.65);
}
.tree-sparkle--soft {
  background: #fff8fb;
  box-shadow:
    0 0 5px 1px rgba(255, 255, 255, 0.9),
    0 0 12px 3px rgba(255, 160, 180, 0.55);
}
.tree-sparkle--warm {
  background: #fff6e8;
  box-shadow:
    0 0 5px 1px rgba(255, 250, 230, 0.95),
    0 0 12px 3px rgba(255, 200, 140, 0.5);
}
.tree-sparkle--star {
  background: transparent;
  box-shadow: none;
  border-radius: 0;
}
.tree-sparkle--star::before,
.tree-sparkle--star::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: #fff;
  border-radius: 1px;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 6px 1px rgba(255, 220, 230, 0.85);
}
.tree-sparkle--star::before {
  width: 100%;
  height: 22%;
}
.tree-sparkle--star::after {
  width: 22%;
  height: 100%;
}
.tree-sparkle--orb {
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.55) 0%, rgba(255, 190, 205, 0.2) 45%, transparent 72%);
  box-shadow: none;
  animation-name: treeOrbPulse;
  filter: blur(0.4px);
}
@keyframes treeTwinkle {
  0%, 100% {
    opacity: 0.05;
    transform: translate(-50%, -50%) scale(0.25) rotate(0deg);
  }
  40% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.15) rotate(12deg);
  }
  70% {
    opacity: 0.45;
    transform: translate(-50%, -50%) scale(0.7) rotate(-6deg);
  }
}
@keyframes treeOrbPulse {
  0%, 100% {
    opacity: 0.08;
    transform: translate(-50%, -50%) scale(0.7);
  }
  50% {
    opacity: 0.42;
    transform: translate(-50%, -50%) scale(1.15);
  }
}
@keyframes treeCanopyShimmer {
  0%, 100% {
    opacity: 0.35;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.06);
  }
}

.site-hero-bar {
  text-align: center;
  padding: 18px 16px 4px;
  animation: heroIn .8s ease both;
}
.brand-mark {
  font-family: "STKaiti", "KaiTi", "楷体", "Songti SC", serif;
  font-size: clamp(28px, 5vw, 40px);
  letter-spacing: .18em;
  color: var(--rose);
  font-weight: 600;
  text-shadow: 0 2px 0 rgba(255,255,255,.6);
}
.brand-sub {
  margin: 6px 0 0;
  color: #8a5a64;
  font-size: 14px;
  letter-spacing: .06em;
}

@keyframes heroIn {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: none; }
}

#page-loading {
  position: fixed;
  left: 50%;
  top: 18px;
  transform: translateX(-50%);
  z-index: 50;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(196, 30, 58, .92);
  color: #fff;
  font-size: 13px;
  pointer-events: none;
  box-shadow: 0 8px 24px rgba(180, 40, 60, .25);
}

#music-toggle {
  position: fixed;
  right: 16px;
  top: 16px;
  z-index: 40;
  width: 40px;
  height: 40px;
  border: 1px solid #e8a0aa;
  border-radius: 50%;
  background: #fff;
  color: var(--rose);
  cursor: pointer;
  font-size: 16px;
  box-shadow: 0 4px 14px rgba(180, 40, 60, .15);
}
#music-toggle.is-on {
  background: linear-gradient(135deg, var(--rose), var(--rose-soft));
  color: #fff;
  border-color: transparent;
}

/* ===== 操作按钮：开花完成后再显示；默认手机底栏 / 电脑树旁 ===== */
#wish-btn-group {
  display: none !important;
}
#wish-btn-group.wish-btns-on,
#wish-btn-group.wish-btns-ready {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 12px !important;
  position: fixed !important;
  left: 50% !important;
  right: auto !important;
  top: auto !important;
  bottom: max(14px, env(safe-area-inset-bottom, 0px)) !important;
  margin: 0 !important;
  transform: translateX(-50%) !important;
  z-index: 100020 !important;
  padding: 8px 10px !important;
  max-width: 96vw !important;
  width: auto !important;
  box-sizing: border-box;
  background: rgba(255,247,248,.95) !important;
  border: 1px solid rgba(232, 160, 170, .7) !important;
  border-radius: 999px !important;
  box-shadow: 0 10px 28px rgba(160,40,60,.18) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  overflow: visible !important;
  pointer-events: auto !important;
}
@media (min-width: 921px) {
  #wish-btn-group {
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    gap: 8px !important;
    position: absolute !important;
    left: 50% !important;
    top: 220px !important;
    bottom: auto !important;
    margin: 0 0 0 420px !important;
    transform: none !important;
    z-index: 40 !important;
    padding: 8px !important;
    max-width: 118px !important;
    width: auto !important;
    background:
      linear-gradient(165deg, rgba(255,255,255,.88), rgba(255,242,245,.55)) !important;
    border-radius: 16px !important;
    box-shadow:
      0 10px 24px rgba(160, 50, 70, .12),
      inset 0 1px 0 rgba(255,255,255,.95) !important;
  }

  /* 电脑：时钟区缩小，避免撑满左下角 */
  #clock-box {
    left: 60px !important;
    top: 560px !important;
    font-size: 15px !important;
    line-height: 1.45 !important;
    max-width: 420px !important;
    z-index: 20;
  }
  #clock-box a,
  #clock-box font,
  #clock-box .STYLE1 {
    font-size: 15px !important;
  }
  #clock {
    margin-left: 0 !important;
    margin-top: 4px !important;
    font-size: 14px !important;
    white-space: nowrap;
  }
  #clock .digit {
    font-size: 28px !important;
    font-weight: 600;
    letter-spacing: 0;
    margin: 0 1px;
  }
}

#wish-btn-group .tree-action,
#wish-btn.tree-action,
#wish-list-btn.tree-action,
#wish-wall-link.tree-action {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative !important;
  flex: 0 0 auto !important;
  float: none !important;
  min-width: 100px;
  width: auto !important;
  margin: 0 !important;
  padding: 12px 16px !important;
  border-radius: 999px !important;
  border: none !important;
  outline: none !important;
  font-family: "PingFang SC", "Microsoft YaHei", "Segoe UI", sans-serif !important;
  font-size: 14px !important;
  font-weight: 600;
  letter-spacing: .1em;
  line-height: 1.2;
  text-decoration: none !important;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  box-sizing: border-box;
  -webkit-appearance: none !important;
  appearance: none !important;
  transition:
    transform .28s cubic-bezier(.2,.8,.2,1),
    box-shadow .28s ease,
    background .28s ease,
    border-color .28s ease,
    color .28s ease,
    filter .28s ease;
}
@media (min-width: 921px) {
  #wish-btn-group .tree-action,
  #wish-btn.tree-action,
  #wish-list-btn.tree-action,
  #wish-wall-link.tree-action {
    min-width: 0;
    width: 100% !important;
    border-radius: 12px !important;
    padding: 8px 10px !important;
    font-size: 12px !important;
    letter-spacing: .06em !important;
    gap: 5px !important;
  }
  #wish-btn.tree-action--wish,
  #wish-btn-group #wish-btn {
    min-height: 34px !important;
    padding: 8px 10px !important;
    font-size: 12px !important;
    box-shadow:
      0 6px 16px rgba(196, 30, 58, .32),
      0 1px 0 rgba(255,255,255,.25) inset !important;
  }
  #wish-btn .tree-action__icon {
    font-size: 13px !important;
  }
  #wish-count.tree-action__count,
  #wish-btn-group #wish-count {
    min-width: 15px;
    height: 15px;
    padding: 0 4px;
    font-size: 10px !important;
    line-height: 15px;
  }
}

#wish-btn-group .tree-action::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.35) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform .55s ease;
  z-index: 0;
  pointer-events: none;
}
#wish-btn-group .tree-action:hover::before {
  transform: translateX(120%);
}

#wish-btn-group .tree-action__icon,
#wish-btn-group .tree-action__label,
#wish-btn-group .tree-action__count {
  position: relative;
  z-index: 1;
}
#wish-btn-group .tree-action__icon {
  font-size: 15px;
  line-height: 1;
  transition: transform .3s ease;
}
#wish-btn-group .tree-action:hover .tree-action__icon {
  transform: scale(1.15);
}

/* 许愿：主按钮 —— 树旁始终可见 */
#wish-btn.tree-action--wish,
#wish-btn-group #wish-btn {
  display: none !important;
  min-height: 48px;
  padding: 13px 16px !important;
  font-size: 15px !important;
  letter-spacing: .12em !important;
  background:
    radial-gradient(circle at 18% 15%, rgba(255,255,255,.42), transparent 42%),
    linear-gradient(145deg, #e0455c 0%, #c41e3a 48%, #a81830 100%) !important;
  color: #fff !important;
  border: 1px solid rgba(255,255,255,.35) !important;
  box-shadow:
    0 10px 26px rgba(196, 30, 58, .42),
    0 2px 0 rgba(255,255,255,.25) inset !important;
  text-shadow: 0 1px 0 rgba(100, 15, 28, .28);
}
#wish-btn-group.wish-btns-ready #wish-btn.tree-action--wish,
#wish-btn-group.wish-btns-on #wish-btn.tree-action--wish,
#wish-btn-group.wish-btns-ready #wish-btn,
#wish-btn-group.wish-btns-on #wish-btn {
  display: inline-flex !important;
  animation: wishBtnIn .55s cubic-bezier(.2,.8,.2,1) both;
}
#wish-btn .tree-action__glow {
  position: absolute;
  inset: -40% -20%;
  background: radial-gradient(circle, rgba(255,255,255,.35), transparent 55%);
  opacity: .55;
  pointer-events: none;
  animation: wishGlow 2.4s ease-in-out infinite;
  z-index: 0;
}
#wish-btn-group #wish-btn:hover {
  transform: translateX(-5px) scale(1.03) !important;
  box-shadow:
    0 14px 32px rgba(196, 30, 58, .52),
    0 2px 0 rgba(255,255,255,.3) inset !important;
  filter: saturate(1.1);
}
#wish-btn-group #wish-btn:active {
  transform: translateX(-2px) scale(.98) !important;
}
#wish-btn .tree-action__icon {
  font-size: 17px;
  animation: heartSoft 1.8s ease-in-out infinite;
}

#wish-count.tree-action__count,
#wish-btn-group #wish-count {
  display: none;
  margin-left: 0;
  min-width: 18px;
  height: 18px;
  padding: 0 6px;
  border-radius: 999px;
  background: rgba(255,255,255,.28);
  border: 1px solid rgba(255,255,255,.35);
  font-size: 11px !important;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 18px;
  text-align: center;
  vertical-align: middle;
}
#wish-btn-group #wish-count.is-on {
  display: inline-block !important;
}

/* 许愿墙：次级 */
#wish-wall-link.tree-action--wall,
#wish-btn-group .wish-side-link {
  background: rgba(255,255,255,.82) !important;
  color: #7a3d4a !important;
  border: 1px solid #ecc0c8 !important;
  box-shadow: 0 4px 14px rgba(160, 50, 70, .10) !important;
}
#wish-btn-group #wish-wall-link:hover {
  transform: translateX(-4px) !important;
  background: #fff !important;
  border-color: #d98a96 !important;
  color: #c41e3a !important;
  box-shadow: 0 8px 20px rgba(160, 50, 70, .16) !important;
}

/* 管理：描边精致按钮 */
#wish-list-btn.tree-action--admin,
#wish-btn-group #wish-list-btn {
  background:
    linear-gradient(180deg, rgba(255,255,255,.95), rgba(255,246,247,.88)) !important;
  color: #b4233a !important;
  border: 1px solid #e39aaa !important;
  box-shadow:
    0 4px 14px rgba(180, 40, 60, .12),
    inset 0 1px 0 #fff !important;
}
#wish-btn-group #wish-list-btn:hover {
  transform: translateX(-5px) !important;
  color: #fff !important;
  background: linear-gradient(145deg, #8f1730, #c41e3a) !important;
  border-color: #8f1730 !important;
  box-shadow: 0 10px 24px rgba(140, 25, 45, .28) !important;
}
#wish-btn-group #wish-list-btn:hover .tree-action__icon {
  transform: rotate(18deg) scale(1.12);
}

@keyframes wishBtnIn {
  from { opacity: 0; transform: translateX(12px) scale(.92); }
  to { opacity: 1; transform: none; }
}
@keyframes heartSoft {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.18); }
}
@keyframes wishGlow {
  0%, 100% { opacity: .35; transform: translateY(0); }
  50% { opacity: .7; transform: translateY(4px); }
}

/* ===== 许愿填写弹窗美化 ===== */
#wish-mask.is-open {
  background: rgba(42, 18, 24, .48) !important;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

#wish-dialog.wish-dialog-card,
#wish-dialog {
  position: fixed !important;
  left: 50% !important;
  top: 50% !important;
  width: min(420px, 92vw) !important;
  padding: 0 !important;
  border: none !important;
  border-radius: 22px !important;
  overflow: hidden !important;
  background: #fff !important;
  box-shadow:
    0 28px 60px rgba(120, 30, 50, .32),
    0 0 0 1px rgba(255, 220, 226, .55) !important;
}

#wish-dialog .wish-dialog-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 5;
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,.22);
  color: #fff;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}
#wish-dialog .wish-dialog-close:hover {
  background: rgba(255,255,255,.38);
  transform: rotate(90deg);
}

#wish-dialog .wish-form-hero {
  position: relative;
  padding: 30px 28px 22px !important;
  text-align: center;
  background:
    radial-gradient(ellipse at 80% -10%, rgba(255,255,255,.35), transparent 45%),
    linear-gradient(155deg, #b81832 0%, #d9364e 45%, #f0a0a8 100%) !important;
  overflow: hidden;
}
#wish-dialog .wish-form-icon {
  width: 56px !important;
  height: 56px !important;
  line-height: 56px !important;
  margin: 0 auto 10px !important;
  border-radius: 50%;
  background: rgba(255,255,255,.24) !important;
  border: 1px solid rgba(255,255,255,.45) !important;
  font-size: 26px !important;
  box-shadow: 0 8px 20px rgba(100, 20, 35, .2);
  animation: heartSoft 2s ease-in-out infinite;
}
#wish-dialog .wish-form-hero h3 {
  margin: 0 0 8px !important;
  font-family: "STKaiti", "KaiTi", "楷体", "Songti SC", serif !important;
  font-size: 26px !important;
  letter-spacing: .14em !important;
  font-weight: 600 !important;
  color: #fff !important;
}
#wish-dialog .wish-form-hero .wish-tip {
  margin: 0 !important;
  font-size: 13px !important;
  color: rgba(255,255,255,.92) !important;
  letter-spacing: .04em;
}

#wish-dialog .wish-form-body {
  padding: 22px 24px 26px !important;
  background: linear-gradient(180deg, #fffefc 0%, #fff4f6 100%) !important;
}

#wish-dialog .wish-field {
  margin-bottom: 16px;
}
#wish-dialog .wish-field label {
  display: flex !important;
  justify-content: space-between;
  align-items: baseline;
  margin: 0 0 8px !important;
  font-size: 13px !important;
  color: #8b4a55 !important;
  font-weight: 600;
}
#wish-dialog .wish-field label em {
  font-style: normal;
  font-weight: 400;
  color: #c49aa2;
  font-size: 12px;
}
#wish-dialog #wish-len {
  float: none !important;
  color: #c49aa2 !important;
  font-weight: 400 !important;
  font-size: 12px;
}

#wish-dialog .wish-field input,
#wish-dialog .wish-field textarea,
#wish-dialog .wish-form-body input,
#wish-dialog .wish-form-body textarea {
  width: 100% !important;
  box-sizing: border-box !important;
  margin: 0 !important;
  padding: 13px 15px !important;
  border: 1.5px solid #f0c8ce !important;
  border-radius: 14px !important;
  font-size: 15px !important;
  font-family: "PingFang SC", "Microsoft YaHei", sans-serif !important;
  outline: none !important;
  background: #fff !important;
  color: #2a1a1e !important;
  box-shadow: 0 2px 0 rgba(255,255,255,.8) inset;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
#wish-dialog .wish-field textarea {
  min-height: 96px !important;
  resize: vertical;
  line-height: 1.55 !important;
}
#wish-dialog .wish-field input:focus,
#wish-dialog .wish-field textarea:focus {
  border-color: #e85a6b !important;
  box-shadow: 0 0 0 4px rgba(232, 90, 107, .18) !important;
}

#wish-dialog .wish-form-actions {
  display: flex !important;
  gap: 12px;
  margin-top: 6px;
}
#wish-dialog .wish-form-ghost,
#wish-dialog .wish-form-primary {
  flex: 1;
  min-height: 46px;
  border-radius: 14px !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  letter-spacing: .06em;
  cursor: pointer;
  border: none !important;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
#wish-dialog .wish-form-ghost {
  background: #fff !important;
  color: #8a5a64 !important;
  border: 1.5px solid #ecc0c8 !important;
}
#wish-dialog .wish-form-ghost:hover {
  background: #fff6f7 !important;
  border-color: #d98a96 !important;
  color: #c41e3a !important;
}
#wish-dialog .wish-form-primary {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(145deg, #d9364e, #c41e3a 55%, #a81830) !important;
  color: #fff !important;
  box-shadow: 0 10px 24px rgba(196, 30, 58, .35) !important;
}
#wish-dialog .wish-form-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(196, 30, 58, .42) !important;
}
#wish-dialog .wish-form-primary:active {
  transform: translateY(0);
}
#wish-dialog .wish-form-primary:disabled {
  opacity: .7;
  cursor: wait;
  transform: none;
}
#wish-dialog .wish-form-primary__ico {
  font-size: 14px;
}

/* 许愿墙：改为弹窗展示（心想事成） */
.wish-wall:not(.wish-wall-panel),
#wish-wall:not(.wish-wall-panel) {
  display: none !important;
}

#wish-wall.wish-wall-panel {
  display: none;
  position: fixed !important;
  left: 50% !important;
  top: 50% !important;
  transform: translate(-50%, -50%) !important;
  -webkit-transform: translate(-50%, -50%) !important;
  width: min(560px, 94vw) !important;
  max-height: min(86vh, 720px) !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  border: none !important;
  border-radius: 22px !important;
  background: #fff !important;
  box-shadow:
    0 28px 60px rgba(120, 30, 50, .32),
    0 0 0 1px rgba(255, 220, 226, .55) !important;
  z-index: 100050 !important;
  box-sizing: border-box;
}
#wish-wall.wish-wall-panel.is-open {
  display: flex !important;
  flex-direction: column !important;
}

#wish-wall .wish-dialog-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 5;
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,.22);
  color: #fff;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}
#wish-wall .wish-dialog-close:hover {
  background: rgba(255,255,255,.38);
  transform: rotate(90deg);
}

#wish-wall .wish-wall-hero {
  position: relative;
  flex: 0 0 auto;
  padding: 28px 28px 18px !important;
  text-align: center;
  background:
    radial-gradient(ellipse at 80% -10%, rgba(255,255,255,.35), transparent 45%),
    linear-gradient(155deg, #b81832 0%, #d9364e 45%, #f0a0a8 100%) !important;
  overflow: hidden;
}
#wish-wall .wish-wall-hero .wish-form-icon {
  width: 52px !important;
  height: 52px !important;
  line-height: 52px !important;
  margin: 0 auto 8px !important;
  border-radius: 50%;
  background: rgba(255,255,255,.24) !important;
  border: 1px solid rgba(255,255,255,.45) !important;
  font-size: 22px !important;
  color: #fff;
  box-shadow: 0 8px 20px rgba(100, 20, 35, .2);
}
#wish-wall .wish-wall-hero h3 {
  margin: 0 0 6px !important;
  font-family: "STKaiti", "KaiTi", "楷体", "Songti SC", serif !important;
  font-size: 24px !important;
  letter-spacing: .14em !important;
  font-weight: 600 !important;
  color: #fff !important;
}
#wish-wall .wish-wall-hero .wish-tip {
  margin: 0 !important;
  font-size: 13px !important;
  color: rgba(255,255,255,.92) !important;
  letter-spacing: .04em;
}

#wish-wall .wish-wall-body {
  flex: 1 1 auto;
  min-height: 0;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 16px 18px 8px !important;
  background: linear-gradient(180deg, #fffefc 0%, #fff4f6 100%) !important;
}
#wish-wall .wall-stats {
  text-align: center;
  color: #9a6a74;
  font-size: 13px;
  margin: 0 0 14px;
}
#wish-wall .wall-stats strong {
  color: var(--rose, #c41e3a);
  font-size: 18px;
}

#wish-wall .wish-wall-foot {
  flex: 0 0 auto;
  display: flex;
  gap: 12px;
  padding: 12px 18px 18px;
  background: linear-gradient(180deg, #fff4f6, #fff);
  border-top: 1px solid rgba(240, 200, 208, .6);
}
#wish-wall .wish-wall-foot .wish-form-ghost,
#wish-wall .wish-wall-foot .wish-form-primary {
  flex: 1;
  min-height: 44px;
  border-radius: 14px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  letter-spacing: .06em;
  cursor: pointer;
  border: none !important;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
#wish-wall .wish-wall-foot .wish-form-ghost {
  background: #fff !important;
  color: #8a5a64 !important;
  border: 1.5px solid #ecc0c8 !important;
}
#wish-wall .wish-wall-foot .wish-form-ghost:hover {
  background: #fff6f7 !important;
  border-color: #d98a96 !important;
  color: #c41e3a !important;
}
#wish-wall .wish-wall-foot .wish-form-primary {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(145deg, #d9364e, #c41e3a 55%, #a81830) !important;
  color: #fff !important;
  box-shadow: 0 10px 24px rgba(196, 30, 58, .35) !important;
}
#wish-wall .wish-wall-foot .wish-form-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(196, 30, 58, .42) !important;
}

#wish-wall-link.tree-action--wall,
#wish-btn-group #wish-wall-link {
  display: none !important;
}
#wish-btn-group.wish-btns-ready #wish-wall-link,
#wish-btn-group.wish-btns-on #wish-wall-link {
  display: inline-flex !important;
  animation: wishBtnIn .55s cubic-bezier(.2,.8,.2,1) both;
  animation-delay: .08s;
}

/* ===== 树上许愿牌：多彩挂牌样式 ===== */
.wish-tag {
  position: absolute;
  pointer-events: auto;
  cursor: pointer;
  width: 90px;
  padding: 12px 10px 12px;
  text-align: center;
  word-break: break-all;
  transform-origin: 50% 0;
  z-index: 16;
  font-size: 12px;
  line-height: 1.35;
  box-sizing: border-box;
  transition: filter .2s ease, box-shadow .2s ease, transform .2s ease;
}
.wish-tag:hover {
  filter: brightness(1.06) saturate(1.05);
  z-index: 20;
  box-shadow: 2px 6px 16px rgba(140, 40, 60, .28);
}
.wish-tag.size-sm { width: 78px; font-size: 11px; padding: 10px 8px; }
.wish-tag.size-md { width: 90px; }
.wish-tag.size-lg { width: 102px; font-size: 13px; padding: 13px 11px; }

.wish-tag .wish-string {
  position: absolute;
  left: 50%;
  top: -16px;
  width: 2px;
  height: 16px;
  margin-left: -1px;
  background: linear-gradient(180deg, #9a3a48, #c41e3a);
  border-radius: 1px;
}
.wish-tag .wish-knot {
  position: absolute;
  left: 50%;
  top: -6px;
  width: 8px;
  height: 8px;
  margin-left: -4px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #fff, #e85a6b 55%, #a81830);
  box-shadow: 0 1px 2px rgba(120, 20, 35, .35);
  z-index: 2;
}
.wish-tag .wish-heart {
  display: block;
  font-size: 15px;
  margin-bottom: 3px;
  line-height: 1;
}
.wish-tag .wish-text {
  display: block;
  max-height: 3.9em;
  overflow: hidden;
  font-weight: 500;
}
.wish-tag .wish-name {
  display: block;
  margin-top: 5px;
  font-size: 10px;
  opacity: .85;
}
.wish-tag .wish-corner {
  position: absolute;
  right: 5px;
  bottom: 4px;
  width: 10px;
  height: 10px;
  opacity: .35;
  background:
    linear-gradient(135deg, transparent 50%, currentColor 50%);
  border-radius: 0 0 4px 0;
}

/* 形状 */
.wish-tag.shape-card {
  border-radius: 6px 6px 12px 12px;
}
.wish-tag.shape-ticket {
  border-radius: 4px;
  background-image:
    radial-gradient(circle at 0 50%, transparent 5px, currentColor 5.5px);
}
.wish-tag.shape-ticket::after {
  content: "";
  position: absolute;
  left: 6px;
  right: 6px;
  top: 50%;
  border-top: 1px dashed rgba(0,0,0,.12);
  pointer-events: none;
}
.wish-tag.shape-lantern {
  border-radius: 40% 40% 18px 18px;
  padding-top: 14px;
}
.wish-tag.shape-scroll {
  border-radius: 14px 4px 14px 4px;
  box-shadow:
    inset 4px 0 0 rgba(255,255,255,.35),
    inset -4px 0 0 rgba(0,0,0,.05),
    1px 3px 10px rgba(120, 40, 55, .2);
}
.wish-tag.shape-badge {
  border-radius: 16px;
  border-width: 2px !important;
}
.wish-tag.shape-petal {
  border-radius: 18px 8px 18px 8px;
}
.wish-tag.shape-oval {
  border-radius: 50% / 28%;
  padding: 14px 12px;
}
.wish-tag.shape-capsule {
  border-radius: 999px;
  padding: 12px 14px;
}
.wish-tag.shape-cloud {
  border-radius: 22px 22px 18px 18px;
  box-shadow:
    0 -6px 0 -2px rgba(255,255,255,.55) inset,
    1px 4px 12px rgba(120, 40, 55, .18);
}
.wish-tag.shape-envelope {
  border-radius: 4px 4px 10px 10px;
  padding-top: 16px;
}
.wish-tag.shape-envelope .wish-corner {
  opacity: .5;
  width: 100%;
  height: 12px;
  left: 0;
  right: 0;
  top: 0;
  bottom: auto;
  background:
    linear-gradient(135deg, transparent 49%, rgba(0,0,0,.06) 50%),
    linear-gradient(-135deg, transparent 49%, rgba(0,0,0,.06) 50%);
  background-size: 50% 100%, 50% 100%;
  background-position: left top, right top;
  background-repeat: no-repeat;
  border-radius: 0;
}
.wish-tag.shape-leaf {
  border-radius: 4px 28px 4px 28px;
}
.wish-tag.shape-gem {
  border-radius: 8px 8px 18px 18px;
  clip-path: polygon(8% 0, 92% 0, 100% 18%, 100% 100%, 0 100%, 0 18%);
}
.wish-tag.shape-heart {
  border-radius: 50% 50% 8px 8px / 40% 40% 18px 18px;
  padding-top: 16px;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.55),
    1px 5px 14px rgba(160, 40, 70, .22);
}
.wish-tag.shape-banner {
  border-radius: 4px 4px 0 0;
  clip-path: polygon(0 0, 100% 0, 100% 78%, 50% 100%, 0 78%);
  padding-bottom: 18px;
}
.wish-tag.shape-tag {
  border-radius: 4px 14px 14px 4px;
  padding-left: 14px;
}
.wish-tag.shape-tag::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 50%;
  width: 6px;
  height: 6px;
  margin-top: -3px;
  border-radius: 50%;
  background: rgba(255,255,255,.75);
  box-shadow: inset 0 0 0 1.5px rgba(0,0,0,.12);
  z-index: 2;
}
.wish-tag.shape-fan {
  border-radius: 4px 4px 28px 28px;
  padding-top: 10px;
}
.wish-tag.shape-drop {
  border-radius: 50% 50% 50% 50% / 35% 35% 65% 65%;
  padding: 14px 10px 16px;
}
.wish-tag.shape-hex {
  clip-path: polygon(50% 0, 95% 25%, 95% 75%, 50% 100%, 5% 75%, 5% 25%);
  padding: 16px 12px;
  border-radius: 0;
}

/* 吊绳样式 */
.wish-tag .wish-string--b,
.wish-tag .wish-bead,
.wish-tag .wish-bow {
  display: none;
}
.wish-tag.hang-ribbon .wish-string {
  width: 5px;
  margin-left: -2.5px;
  border-radius: 2px;
  background: linear-gradient(180deg, #c45a6a, #e88a98);
  box-shadow: 0 0 0 1px rgba(255,255,255,.25) inset;
}
.wish-tag.hang-ribbon .wish-bow {
  display: block;
  position: absolute;
  left: 50%;
  top: -10px;
  width: 18px;
  height: 10px;
  margin-left: -9px;
  background:
    radial-gradient(circle at 25% 50%, #ffb0c0 0 42%, transparent 43%),
    radial-gradient(circle at 75% 50%, #ffb0c0 0 42%, transparent 43%);
  z-index: 3;
  pointer-events: none;
}
.wish-tag.hang-twin .wish-string {
  left: 38%;
  margin-left: 0;
}
.wish-tag.hang-twin .wish-string--b {
  display: block;
  left: 62%;
  margin-left: 0;
}
.wish-tag.hang-twin .wish-knot {
  width: 10px;
  height: 6px;
  margin-left: -5px;
  border-radius: 3px;
}
.wish-tag.hang-bead .wish-bead {
  display: block;
  position: absolute;
  left: 50%;
  width: 5px;
  height: 5px;
  margin-left: -2.5px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #fff, #f0a0b0 60%, #c04058);
  z-index: 2;
  box-shadow: 0 0 2px rgba(180, 40, 60, .3);
}
.wish-tag.hang-bead .wish-bead--1 { top: -14px; }
.wish-tag.hang-bead .wish-bead--2 { top: -9px; width: 4px; height: 4px; margin-left: -2px; }
.wish-tag.hang-loop .wish-string {
  height: 14px;
  top: -14px;
  border-radius: 8px 8px 0 0;
  width: 12px;
  margin-left: -6px;
  background: transparent;
  border: 2px solid #c45a6a;
  border-bottom: none;
  box-sizing: border-box;
}
.wish-tag.hang-loop .wish-knot {
  top: -4px;
  width: 7px;
  height: 7px;
  margin-left: -3.5px;
}
.wish-tag.hang-thread .wish-string {
  width: 1px;
  height: 20px;
  top: -20px;
  opacity: .85;
}
.wish-tag.hang-thread .wish-knot {
  top: -5px;
  width: 6px;
  height: 6px;
  margin-left: -3px;
}
.wish-tag.hang-pearl .wish-bead {
  display: block;
  position: absolute;
  left: 50%;
  border-radius: 50%;
  z-index: 2;
  background: radial-gradient(circle at 30% 28%, #fff 0%, #f8e8f0 45%, #e0a8c0 100%);
  box-shadow: 0 1px 2px rgba(140, 60, 90, .25);
}
.wish-tag.hang-pearl .wish-bead--1 {
  top: -15px;
  width: 7px;
  height: 7px;
  margin-left: -3.5px;
}
.wish-tag.hang-pearl .wish-bead--2 {
  top: -9px;
  width: 5px;
  height: 5px;
  margin-left: -2.5px;
  opacity: .9;
}
.wish-tag.hang-pearl .wish-string {
  height: 18px;
  top: -18px;
  width: 1.5px;
  background: linear-gradient(180deg, #c08098, #e0a8b8);
}
.wish-tag.hang-pearl .wish-knot {
  background: radial-gradient(circle at 35% 35%, #fff, #f0c0d0 50%, #c07090);
  width: 9px;
  height: 9px;
  margin-left: -4.5px;
}
.wish-tag.hang-charm .wish-bead {
  display: block;
  position: absolute;
  left: 50%;
  z-index: 2;
}
.wish-tag.hang-charm .wish-bead--1 {
  top: -16px;
  width: 8px;
  height: 8px;
  margin-left: -4px;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  background: linear-gradient(135deg, #ff8aa0, #c41e3a);
  box-shadow: 0 1px 2px rgba(160, 30, 50, .35);
}
.wish-tag.hang-charm .wish-bead--2 {
  display: none;
}
.wish-tag.hang-charm .wish-string {
  height: 14px;
  top: -14px;
}
.wish-tag.hang-braid .wish-string {
  width: 4px;
  margin-left: -2px;
  background:
    repeating-linear-gradient(
      135deg,
      #c45a6a 0 2px,
      #e898a8 2px 4px
    );
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(255,255,255,.2) inset;
}
.wish-tag.hang-braid .wish-knot {
  width: 10px;
  height: 7px;
  margin-left: -5px;
  border-radius: 3px;
  background: linear-gradient(180deg, #f0a0b0, #c04860);
}

/* 配色皮肤 */
.wish-tag.skin-rose {
  background: linear-gradient(180deg, #fff7f8 0%, #ffd0d8 100%);
  border: 1px solid #f0a0ab;
  color: #8b1e2d;
  box-shadow: 1px 4px 12px rgba(180, 40, 60, .22);
}
.wish-tag.skin-rose .wish-heart { color: #c41e3a; }
.wish-tag.skin-rose .wish-name { color: #b85a68; }

.wish-tag.skin-peach {
  background: linear-gradient(180deg, #fff8f1 0%, #ffd7bf 100%);
  border: 1px solid #f0b894;
  color: #8a4a2e;
  box-shadow: 1px 4px 12px rgba(180, 90, 40, .2);
}
.wish-tag.skin-peach .wish-heart { color: #e07850; }
.wish-tag.skin-peach .wish-name { color: #c08060; }
.wish-tag.skin-peach .wish-string { background: linear-gradient(180deg, #c07040, #e07850); }
.wish-tag.skin-peach .wish-knot { background: radial-gradient(circle at 35% 35%, #fff, #f0a878 55%, #c06030); }

.wish-tag.skin-cream {
  background: linear-gradient(180deg, #fffcf5 0%, #f5e6c8 100%);
  border: 1px solid #e2c98a;
  color: #6e5420;
  box-shadow: 1px 4px 12px rgba(150, 110, 40, .18);
}
.wish-tag.skin-cream .wish-heart { color: #c9a227; }
.wish-tag.skin-cream .wish-name { color: #a08040; }
.wish-tag.skin-cream .wish-string { background: linear-gradient(180deg, #a08040, #c9a227); }
.wish-tag.skin-cream .wish-knot { background: radial-gradient(circle at 35% 35%, #fff8e0, #e0c060 55%, #a08030); }

.wish-tag.skin-berry {
  background: linear-gradient(180deg, #fff0f3 0%, #f5b0c0 100%);
  border: 1px solid #d87088;
  color: #7a1530;
  box-shadow: 1px 4px 12px rgba(150, 30, 55, .25);
}
.wish-tag.skin-berry .wish-heart { color: #b02040; }

.wish-tag.skin-sakura {
  background: linear-gradient(180deg, #fff9fb 0%, #ffe0ea 100%);
  border: 1px solid #f2b8cc;
  color: #8a4060;
  box-shadow: 1px 4px 12px rgba(180, 70, 100, .18);
}
.wish-tag.skin-sakura .wish-heart { color: #e07098; }
.wish-tag.skin-sakura .wish-string { background: linear-gradient(180deg, #c06080, #e07098); }
.wish-tag.skin-sakura .wish-knot { background: radial-gradient(circle at 35% 35%, #fff, #f0a0b8 55%, #c05070); }

.wish-tag.skin-champagne {
  background: linear-gradient(180deg, #fffdf8 0%, #f0e0c0 100%);
  border: 1px solid #dcc8a0;
  color: #6a5030;
  box-shadow: 1px 4px 12px rgba(140, 100, 50, .16);
}
.wish-tag.skin-champagne .wish-heart { color: #c0a060; }
.wish-tag.skin-champagne .wish-string { background: linear-gradient(180deg, #a08050, #c0a060); }

.wish-tag.skin-coral {
  background: linear-gradient(180deg, #fff6f4 0%, #ffc8bc 100%);
  border: 1px solid #f0a090;
  color: #8a3028;
  box-shadow: 1px 4px 12px rgba(180, 60, 50, .2);
}
.wish-tag.skin-coral .wish-heart { color: #e06050; }
.wish-tag.skin-coral .wish-string { background: linear-gradient(180deg, #c05040, #e06050); }

.wish-tag.skin-wine {
  background: linear-gradient(180deg, #fff5f6 0%, #e8a0b0 55%, #d87890 100%);
  border: 1px solid #c06078;
  color: #5c1028;
  box-shadow: 1px 4px 14px rgba(120, 20, 45, .28);
}
.wish-tag.skin-wine .wish-heart { color: #a01838; }
.wish-tag.skin-wine .wish-string { background: linear-gradient(180deg, #801028, #a01838); }

.wish-tag.skin-honey {
  background: linear-gradient(180deg, #fffaf0 0%, #f5d9a0 100%);
  border: 1px solid #e0b860;
  color: #6a4820;
  box-shadow: 1px 4px 12px rgba(160, 110, 40, .2);
}
.wish-tag.skin-honey .wish-heart { color: #d4a017; }
.wish-tag.skin-honey .wish-string { background: linear-gradient(180deg, #b88830, #d4a017); }
.wish-tag.skin-honey .wish-knot { background: radial-gradient(circle at 35% 35%, #fff8e0, #f0c860 55%, #b88820); }

.wish-tag.skin-blush {
  background: linear-gradient(180deg, #fff8f9 0%, #ffcdd8 100%);
  border: 1px solid #f0a8b8;
  color: #8a3048;
  box-shadow: 1px 4px 12px rgba(180, 60, 90, .18);
}
.wish-tag.skin-blush .wish-heart { color: #e06080; }
.wish-tag.skin-blush .wish-string { background: linear-gradient(180deg, #c05070, #e06080); }

.wish-tag.skin-ivory {
  background: linear-gradient(180deg, #fffcf8 0%, #f2e8dc 100%);
  border: 1px solid #e0d0c0;
  color: #6a5040;
  box-shadow: 1px 4px 12px rgba(120, 90, 70, .14);
}
.wish-tag.skin-ivory .wish-heart { color: #c08070; }
.wish-tag.skin-ivory .wish-string { background: linear-gradient(180deg, #a07060, #c08070); }
.wish-tag.skin-ivory .wish-knot { background: radial-gradient(circle at 35% 35%, #fff, #e8c8b8 55%, #a07060); }

.wish-tag.skin-mist {
  background: linear-gradient(180deg, #f8fbff 0%, #d8e8f5 100%);
  border: 1px solid #b0c8e0;
  color: #3a5570;
  box-shadow: 1px 4px 12px rgba(70, 100, 140, .16);
}
.wish-tag.skin-mist .wish-heart { color: #6088b0; }
.wish-tag.skin-mist .wish-string { background: linear-gradient(180deg, #5078a0, #6088b0); }
.wish-tag.skin-mist .wish-knot { background: radial-gradient(circle at 35% 35%, #fff, #b0d0e8 55%, #5078a0); }

.wish-tag.skin-amber {
  background: linear-gradient(180deg, #fff9f2 0%, #ffd0a8 100%);
  border: 1px solid #f0b878;
  color: #7a4020;
  box-shadow: 1px 4px 12px rgba(180, 100, 40, .2);
}
.wish-tag.skin-amber .wish-heart { color: #e08840; }
.wish-tag.skin-amber .wish-string { background: linear-gradient(180deg, #c06830, #e08840); }

.wish-tag.skin-lilac {
  background: linear-gradient(180deg, #fcf8ff 0%, #e8d4f0 100%);
  border: 1px solid #d0b0e0;
  color: #604070;
  box-shadow: 1px 4px 12px rgba(120, 70, 140, .16);
}
.wish-tag.skin-lilac .wish-heart { color: #a070c0; }
.wish-tag.skin-lilac .wish-string { background: linear-gradient(180deg, #8060a0, #a070c0); }
.wish-tag.skin-lilac .wish-knot { background: radial-gradient(circle at 35% 35%, #fff, #d8b8e8 55%, #8060a0); }

.wish-tag.skin-mint {
  background: linear-gradient(165deg, #f5fffb 0%, #d4f0e4 55%, #b8e4d4 100%);
  border: 1px solid #9ed4c0;
  color: #2a5c4a;
  box-shadow: 1px 4px 14px rgba(40, 120, 90, .16);
}
.wish-tag.skin-mint .wish-heart { color: #3a9a78; }
.wish-tag.skin-mint .wish-string { background: linear-gradient(180deg, #3a8a68, #5cbc98); }
.wish-tag.skin-mint .wish-knot { background: radial-gradient(circle at 35% 35%, #fff, #a0e0c8 55%, #3a8a68); }

.wish-tag.skin-sunset {
  background: linear-gradient(160deg, #fff6f0 0%, #ffd0b8 45%, #ffb0a0 100%);
  border: 1px solid #f0a888;
  color: #7a3020;
  box-shadow: 1px 5px 14px rgba(200, 80, 50, .22);
}
.wish-tag.skin-sunset .wish-heart { color: #e06848; }
.wish-tag.skin-sunset .wish-string { background: linear-gradient(180deg, #c05038, #e87858); }
.wish-tag.skin-sunset .wish-knot { background: radial-gradient(circle at 35% 35%, #fff, #f0a888 55%, #c05038); }

.wish-tag.skin-pearl {
  background:
    linear-gradient(145deg, rgba(255,255,255,.7), transparent 50%),
    linear-gradient(180deg, #fffcfe 0%, #f0e4ec 100%);
  border: 1px solid #e0d0d8;
  color: #6a4858;
  box-shadow:
    1px 4px 14px rgba(120, 80, 100, .14),
    inset 0 1px 0 rgba(255,255,255,.8);
}
.wish-tag.skin-pearl .wish-heart { color: #c090a8; }
.wish-tag.skin-pearl .wish-string { background: linear-gradient(180deg, #a08090, #c0a0b0); }
.wish-tag.skin-pearl .wish-knot { background: radial-gradient(circle at 30% 30%, #fff, #f0d8e4 50%, #c090a8); }

.wish-tag.skin-rosegold {
  background: linear-gradient(165deg, #fff8f4 0%, #f5d8c8 50%, #e8b8a8 100%);
  border: 1px solid #d4a090;
  color: #6a3830;
  box-shadow: 1px 5px 14px rgba(160, 80, 60, .2);
}
.wish-tag.skin-rosegold .wish-heart { color: #c08070; }
.wish-tag.skin-rosegold .wish-string { background: linear-gradient(180deg, #a06858, #c09080); }
.wish-tag.skin-rosegold .wish-knot { background: radial-gradient(circle at 35% 35%, #fff5f0, #e8b8a8 55%, #a06858); }

.wish-tag.skin-cotton {
  background: linear-gradient(180deg, #ffffff 0%, #ffe8ee 100%);
  border: 1px solid #f5c8d4;
  color: #8a4058;
  box-shadow: 1px 4px 12px rgba(180, 80, 110, .14);
}
.wish-tag.skin-cotton .wish-heart { color: #e888a0; }
.wish-tag.skin-cotton .wish-string { background: linear-gradient(180deg, #d07088, #e888a0); }

.wish-tag.skin-matcha {
  background: linear-gradient(170deg, #f8fff4 0%, #e0f0c8 55%, #c8e0a8 100%);
  border: 1px solid #b0c888;
  color: #3a5020;
  box-shadow: 1px 4px 12px rgba(90, 120, 40, .16);
}
.wish-tag.skin-matcha .wish-heart { color: #789840; }
.wish-tag.skin-matcha .wish-string { background: linear-gradient(180deg, #608030, #90b050); }
.wish-tag.skin-matcha .wish-knot { background: radial-gradient(circle at 35% 35%, #fff, #c8e090 55%, #608030); }

.wish-tag.skin-crimson {
  background: linear-gradient(175deg, #fff0f2 0%, #f0a0b0 40%, #d85070 100%);
  border: 1px solid #c04060;
  color: #5a1028;
  box-shadow: 1px 5px 16px rgba(140, 20, 50, .28);
}
.wish-tag.skin-crimson .wish-heart { color: #c01840; }
.wish-tag.skin-crimson .wish-name { color: #8a2848; }
.wish-tag.skin-crimson .wish-string { background: linear-gradient(180deg, #801028, #c01840); }
.wish-tag.skin-crimson .wish-knot { background: radial-gradient(circle at 35% 35%, #fff, #e07088 50%, #a01838); }

.wish-tag.skin-seafoam {
  background: linear-gradient(160deg, #f4fffc 0%, #c8ebe4 100%);
  border: 1px solid #90c8c0;
  color: #2a5850;
  box-shadow: 1px 4px 12px rgba(40, 110, 100, .15);
}
.wish-tag.skin-seafoam .wish-heart { color: #48a098; }
.wish-tag.skin-seafoam .wish-string { background: linear-gradient(180deg, #388880, #58b8b0); }
.wish-tag.skin-seafoam .wish-knot { background: radial-gradient(circle at 35% 35%, #fff, #a0ddd4 55%, #388880); }

.wish-tag.skin-tangerine {
  background: linear-gradient(165deg, #fff8f0 0%, #ffd4a8 55%, #ffb878 100%);
  border: 1px solid #f0a860;
  color: #7a4010;
  box-shadow: 1px 4px 14px rgba(200, 110, 30, .2);
}
.wish-tag.skin-tangerine .wish-heart { color: #e88830; }
.wish-tag.skin-tangerine .wish-string { background: linear-gradient(180deg, #c06820, #e88830); }
.wish-tag.skin-tangerine .wish-knot { background: radial-gradient(circle at 35% 35%, #fff8f0, #ffc888 55%, #c06820); }

.wish-tag.skin-mauve {
  background: linear-gradient(170deg, #fdf6f8 0%, #e8c8d4 100%);
  border: 1px solid #d0a0b0;
  color: #5a3040;
  box-shadow: 1px 4px 12px rgba(120, 60, 80, .16);
}
.wish-tag.skin-mauve .wish-heart { color: #b07088; }
.wish-tag.skin-mauve .wish-string { background: linear-gradient(180deg, #905868, #b07088); }
.wish-tag.skin-mauve .wish-knot { background: radial-gradient(circle at 35% 35%, #fff, #e0b0c0 55%, #905868); }

/* 光泽层 + 文字层级 */
.wish-tag .wish-shine {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 46%;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255,255,255,.42) 0%, rgba(255,255,255,0) 100%);
  pointer-events: none;
  z-index: 0;
}
.wish-tag .wish-heart,
.wish-tag .wish-text,
.wish-tag .wish-name {
  position: relative;
  z-index: 1;
}

/* 摇摆节奏差异 */
.wish-tag.sway-1 { animation: wish-sway-a 3.2s ease-in-out infinite; }
.wish-tag.sway-2 { animation: wish-sway-b 3.8s ease-in-out infinite; }
.wish-tag.sway-3 { animation: wish-sway-a 4.2s ease-in-out infinite; }
.wish-tag.sway-4 { animation: wish-sway-b 3.5s ease-in-out infinite; }
.wish-tag.sway-5 { animation: wish-sway-a 4.6s ease-in-out infinite; }
.wish-tag.sway-6 { animation: wish-sway-c 3.9s ease-in-out infinite; }
.wish-tag.sway-7 { animation: wish-sway-c 4.8s ease-in-out infinite; }
.wish-tag.hanging.sway-1,
.wish-tag.hanging.sway-2,
.wish-tag.hanging.sway-3,
.wish-tag.hanging.sway-4,
.wish-tag.hanging.sway-5,
.wish-tag.hanging.sway-6,
.wish-tag.hanging.sway-7 {
  animation: wish-drop .55s ease-out, wish-sway-a 3.6s ease-in-out .55s infinite;
}

@keyframes wish-sway-a {
  0%, 100% { transform: rotate(-3.5deg); }
  50% { transform: rotate(3.5deg); }
}
@keyframes wish-sway-b {
  0%, 100% { transform: rotate(2.5deg); }
  50% { transform: rotate(-4deg); }
}
@keyframes wish-sway-c {
  0%, 100% { transform: rotate(-2deg) translateX(-1px); }
  50% { transform: rotate(4.5deg) translateX(1px); }
}

/* 覆盖旧 ::before 吊绳，改用 .wish-string */
.wish-tag::before { display: none !important; }
.wish-wall::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #e8b0b8, transparent);
}
.wall-inner { max-width: 960px; margin: 0 auto; }
.wish-wall h2 {
  margin: 0;
  text-align: center;
  font-family: "STKaiti", "KaiTi", "楷体", "Songti SC", serif;
  font-size: clamp(26px, 4vw, 34px);
  color: var(--rose);
  letter-spacing: .12em;
  font-weight: 600;
}
.wall-intro {
  text-align: center;
  color: #8a5a64;
  margin: 8px 0 18px;
  font-size: 14px;
}
.wall-cta {
  display: block;
  margin: 0 auto 18px;
  padding: 12px 28px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--rose), var(--rose-soft));
  color: #fff;
  font-size: 15px;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(196, 30, 58, .28);
  transition: transform .2s ease, box-shadow .2s ease;
}
.wall-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(196, 30, 58, .36);
}
.wall-stats {
  text-align: center;
  color: #9a6a74;
  font-size: 13px;
  margin-bottom: 22px;
}
.wall-stats strong { color: var(--rose); font-size: 18px; }

.wall-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
}
.wall-card {
  background: rgba(255, 255, 255, .78);
  border: 1px solid #f0d0d6;
  border-radius: 16px;
  padding: 16px 16px 12px;
  box-shadow: 0 8px 24px rgba(160, 60, 80, .06);
  transition: transform .25s ease, box-shadow .25s ease;
  animation: cardIn .5s ease both;
}
.wall-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(160, 60, 80, .12);
}
.wall-card.is-new {
  animation: cardPop .6s ease;
}
.wall-empty {
  grid-column: 1 / -1;
  text-align: center;
  color: #9a6a74;
  padding: 28px;
  background: rgba(255,255,255,.5);
  border-radius: 14px;
  border: 1px dashed #e8b0b8;
}
.wall-text {
  margin: 0 0 10px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink);
  min-height: 2.8em;
}
.wall-meta {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  font-size: 12px;
  color: #9a6a74;
  margin-bottom: 10px;
}
.bless-btn {
  border: 1px solid #f0c8ce;
  background: #fff;
  color: var(--rose);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 12px;
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
}
.bless-btn:hover, .bless-btn.blessed {
  background: var(--rose);
  color: #fff;
  border-color: var(--rose);
}

@keyframes cardIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: none; }
}
@keyframes cardPop {
  0% { transform: scale(.92); }
  60% { transform: scale(1.03); }
  100% { transform: scale(1); }
}

.site-footer {
  display: none !important;
}

@media (max-width: 920px) {
  .site-hero-bar { padding-top: 8px; }
  .brand-mark { letter-spacing: .1em; font-size: 22px; }
  .wish-wall:not(.wish-wall-panel),
  #wish-wall:not(.wish-wall-panel) { display: none !important; }
  #wish-wall.wish-wall-panel.is-open {
    display: flex !important;
    width: min(520px, 94vw) !important;
    max-height: min(84vh, 680px) !important;
    top: 46% !important;
  }
  .site-footer { display: none !important; }

  /* 手机吊牌：略缩小并水平居中到挂点，保持均匀且可读 */
  .wish-tag,
  .wish-tag.size-sm,
  .wish-tag.size-md,
  .wish-tag.size-lg,
  .wish-tag.is-mobile-tag {
    width: 66px !important;
    max-width: 66px !important;
    font-size: 11px !important;
    line-height: 1.3 !important;
    padding: 8px 5px 9px !important;
    margin-left: -33px !important;
  }
  .wish-tag .wish-heart {
    font-size: 12px !important;
    margin-bottom: 2px !important;
  }
  .wish-tag .wish-text {
    max-height: 3.8em !important;
  }
  .wish-tag .wish-name {
    font-size: 9px !important;
    margin-top: 2px !important;
  }
  .wish-tag .wish-string {
    height: 14px !important;
    top: -14px !important;
  }

  /* 手机：底栏横排胶囊（覆盖桌面树旁样式） */
  #wish-btn-group {
    position: fixed !important;
    left: 50% !important;
    right: auto !important;
    top: auto !important;
    bottom: max(14px, env(safe-area-inset-bottom, 0px)) !important;
    margin: 0 !important;
    transform: translateX(-50%) !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 10px !important;
    z-index: 100020 !important;
    padding: 8px 10px !important;
    max-width: 96vw !important;
    width: auto !important;
    background: rgba(255,247,248,.95) !important;
    border-radius: 999px !important;
    box-shadow: 0 10px 28px rgba(160,40,60,.18) !important;
  }
  #wish-btn-group .tree-action,
  #wish-btn-group #wish-btn,
  #wish-btn-group #wish-list-btn,
  #wish-btn-group #wish-wall-link {
    width: auto !important;
    min-width: 0 !important;
    border-radius: 999px !important;
    padding: 12px 14px !important;
    font-size: 14px !important;
  }
  #wish-btn-group #wish-btn:hover,
  #wish-btn-group #wish-list-btn:hover,
  #wish-btn-group #wish-wall-link:hover {
    transform: translateY(-2px) !important;
  }
}
