/* vip2 定稿样式（源自 vip-static-demo.html），作用域 .vip2-page；本文件位于 template/vip2/，由 wp_enqueue_style 按模板加载，便于缓存 */
/* 与导航紧贴、无顶部金黄线：与 page-template-vip 一致 */
body.page-template-vip2 .main { padding-top: 0; }
body.page-template-vip2 .content-wrap { margin: 0; }
body.page-template-vip2 .single-content.vip2-page { padding: 0; margin: 0; background: transparent !important; }
/* 全宽 Banner 必须：主容器链不裁切伸出的 hero（主题可能对 .container 等设 overflow:hidden） */
body.page-template-vip2 .main,
body.page-template-vip2 .main .container,
body.page-template-vip2 .content-wrap,
body.page-template-vip2 .content,
body.page-template-vip2 .single-content.vip2-page { overflow: visible !important; }

/* 福字雨+烟花：仅当「活动区灯笼效果」开启时存在，层级在内容之下 */
.vip2-fu-fireworks {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.vip2-fu-fireworks--rocket {
  position: absolute;
  left: 0;
  bottom: 20px;
  width: 6px;
  height: 14px;
  margin-left: -3px;
  background: linear-gradient(to top, #b91c1c, var(--gold-light));
  border-radius: 2px;
  transform-origin: center bottom;
  box-shadow: 0 0 8px rgba(234, 179, 8, 0.6);
}
.vip2-fu-fireworks--particle {
  position: absolute;
  width: 6px;
  height: 6px;
  margin-left: -3px;
  margin-top: -3px;
  background: radial-gradient(circle, var(--gold-light), var(--gold-dark));
  border-radius: 50%;
  opacity: 1;
  animation: vip2-particle-out 0.6s ease-out forwards;
}
@keyframes vip2-particle-out {
  to {
    transform: translate(var(--particle-px, 0), var(--particle-py, 0));
    opacity: 0;
  }
}
.vip2-fu-fireworks--fu {
  position: absolute;
  object-fit: contain;
  opacity: 0.95;
}
/* 爆炸后福字四散：向随机方向飞出并淡出 */
.vip2-fu-fireworks--fu-scatter {
  animation: vip2-fu-scatter ease-out forwards;
}
@keyframes vip2-fu-scatter {
  to {
    transform: translate(var(--fu-dx, 0), var(--fu-dy, 0)) rotate(var(--fu-rotate, 0deg));
    opacity: 0;
  }
}
/* 顶部飘落的福字：向下落 + 左右漂移 */
.vip2-fu-fireworks--fu-fall {
  animation: vip2-fu-fall linear forwards;
}
@keyframes vip2-fu-fall {
  to {
    transform: translate(var(--fu-drift-x, 0), var(--fu-drop, 100vh)) rotate(var(--fu-rotate, 0deg));
    opacity: 0;
  }
}

:root {
  --bg: #FAFAF9;
  --text: #0C0A09;
  --text-muted: #44403C;
  --gold: #CA8A04;
  --gold-light: #EAB308;
  --gold-dark: #A16207;
  --activity-red: #b91c1c;
  --border: #E7E5E4;
  --card: #FFFFFF;
  --shadow: 0 4px 24px rgba(12, 10, 9, 0.06);
  --shadow-hover: 0 24px 48px rgba(12, 10, 9, 0.12);
  --font-display: Georgia, "Times New Roman", serif;
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --radius: 16px;
  --max-w: 1200px;
}
/* 主题 html{font-size:75%} 导致 rem 偏小，本页用基准 + em；基准随视口缩小（响应式字号） */
.vip2-page {
  font-family: var(--font-body);
  font-size: clamp(14px, 12px + 0.5vw, 16px);
  background: transparent;
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  margin-top: 0;
  padding: 0 clamp(1.5rem, 4vw, 2.5rem) clamp(2rem, 5vw, 4rem);
  padding-top: 0;
  box-sizing: border-box;
}
/* 消除与导航之间的空白：由主题 .content 产生的上间距在此页覆盖 */
.main .content .single-content.vip2-page { margin-top: 0; padding-top: 0; margin: 0 auto;}
.vip2-page::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  border-radius: var(--radius);
}
/* 原顶部金黄渐变横线已移除，避免与导航视觉割裂 */
/* Banner 全宽：100vw + 负 margin 居中；须配合上方 body.page-template-vip2 主容器链 overflow:visible */
body.page-template-vip2 .vip2-page .hero,
.vip2-page .hero {
  text-align: center;
  margin-bottom: clamp(3rem, 8vw, 5rem);
  animation: hero-fade-in 0.7s var(--ease) backwards;
  position: relative;
  z-index: 1;
  min-height: 340px;
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  padding-left: max(1.5rem, calc(50vw - 50% + 1.5rem));
  padding-right: max(1.5rem, calc(50vw - 50% + 1.5rem));
  padding-top: 20px;
  padding-bottom: 20px;
  box-sizing: border-box;
}
.vip2-page .hero > * { position: relative; z-index: 1; }
.vip2-page .hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%;
  background: linear-gradient(165deg, rgba(202, 138, 4, 0.28) 0%, rgba(234, 179, 8, 0.16) 30%, rgba(250, 249, 246, 0.92) 65%, transparent 100%),
              linear-gradient(105deg, transparent 0%, rgba(161, 98, 7, 0.08) 30%, transparent 60%),
              linear-gradient(255deg, transparent 40%, rgba(202, 138, 4, 0.06) 70%, transparent 100%);
  border-radius: 0 0 55% 55% / 0 0 28% 28%;
  z-index: 0;
  pointer-events: none;
}
.vip2-page .hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%;
  background: radial-gradient(ellipse 100% 50% at 50% 100%, rgba(202, 138, 4, 0.22) 0%, rgba(234, 179, 8, 0.08) 45%, transparent 70%);
  border-radius: 0 0 55% 55% / 0 0 28% 28%;
  z-index: 0;
  pointer-events: none;
  animation: banner-bottom-breathe 5s ease-in-out infinite;
}
@keyframes banner-bottom-breathe { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.55; transform: scale(1.06); } }
@keyframes hero-fade-in { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
.vip2-page .hero__label { font-family: var(--font-display); font-size: 0.75em; font-weight: 600; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.75rem; }
.vip2-page .hero__title { font-family: var(--font-display); font-size: clamp(2.75em, 7vw, 4.5em); font-weight: 600; letter-spacing: -0.03em; line-height: 1.05; color: var(--text); margin-bottom: 0.5rem; }
.vip2-page .hero__title span { color: var(--gold); }
.vip2-page .hero__title::after { content: ''; display: block; width: 3rem; height: 3px; background: linear-gradient(90deg, var(--gold), transparent); margin: 1rem auto 0; border-radius: 2px; }
.vip2-page .hero__desc { color: var(--text-muted); margin: 0 auto; }
.vip2-page .notice {
  background: linear-gradient(135deg, #1C1917 0%, #292524 100%);
  color: #FAFAF9;
  border-radius: var(--radius);
  padding: 1.25rem 1.75rem;
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
  text-align: center;
  font-size: 0.9375em;
  line-height: 1.7;
  border-left: 3px solid var(--gold);
  border-right: 3px solid var(--gold);
  box-shadow: var(--shadow);
  animation: notice-slide-up 0.6s var(--ease) 0.15s backwards;
}
@keyframes notice-slide-up { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
.vip2-page .notice strong { color: var(--gold-light); }
.vip2-page .notice .vip-activity-countdown { font-variant-numeric: tabular-nums; font-weight: 700; display: inline-block; }
.vip2-page .notice.notice--activity {
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
  color: #450a0a;
  border-left: 3px solid var(--activity-red);
  border-right: 3px solid var(--activity-red);
  box-shadow: 0 8px 32px rgba(185, 28, 28, 0.15);
  animation: notice-activity-glow 3s ease-in-out infinite, notice-activity-breathe 2.2s cubic-bezier(0.455, 0.03, 0.515, 0.955) infinite;
  position: relative;
  overflow: hidden;
  padding-left: 5rem;
  padding-right: 5rem;
}
.vip2-page .notice__lanterns {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  z-index: 1;
  pointer-events: none;
}
.vip2-page .notice__lanterns--left { left: 0; }
.vip2-page .notice__lanterns--right { right: 0; }
.vip2-page .notice__lantern {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  transform-origin: 50% 50%;
  animation: notice-lantern-swing 2.8s ease-in-out infinite;
}
.vip2-page .notice__lanterns--left .notice__lantern:first-child { margin-right: -18px; }
.vip2-page .notice__lanterns--left .notice__lantern:last-child { animation-delay: 0.15s; }
.vip2-page .notice__lanterns--right .notice__lantern { animation-name: notice-lantern-swing-right; }
.vip2-page .notice__lanterns--right .notice__lantern:last-child { margin-left: -18px; animation-delay: 0.15s; }
.vip2-page .notice__lantern-icon { display: block; width: 100%; height: 100%; }
@keyframes notice-lantern-swing {
  0%, 100% { transform: rotate(-5deg); }
  50% { transform: rotate(5deg); }
}
@keyframes notice-lantern-swing-right {
  0%, 100% { transform: rotate(5deg); }
  50% { transform: rotate(-5deg); }
}
@media (prefers-reduced-motion: reduce) {
  .vip2-page .notice__lantern { animation: none; }
  .vip2-page .plan__countdown.countdown-flip,
  .vip2-page .vip-activity-countdown.countdown-flip { animation: none; }
}
@keyframes notice-activity-glow {
  0%, 100% { box-shadow: 0 8px 32px rgba(185, 28, 28, 0.15); }
  50% { box-shadow: 0 12px 40px rgba(185, 28, 28, 0.22); }
}
@keyframes notice-activity-breathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.008); }
}
.vip2-page .notice.notice--activity strong { color: #b91c1c; }
.vip2-page .notice.notice--activity .vip-activity-countdown { color: #991b1b; }
.vip2-page .plans { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; list-style: none; margin: 0; padding: 0; }
.vip2-page .plan { animation: plan-in 0.6s var(--ease) backwards; }
.vip2-page .plan:nth-child(1) { animation-delay: 0.05s; }
.vip2-page .plan:nth-child(2) { animation-delay: 0.1s; }
.vip2-page .plan:nth-child(3) { animation-delay: 0.15s; }
.vip2-page .plan:nth-child(4) { animation-delay: 0.2s; }
.vip2-page .plan:nth-child(5) { animation-delay: 0.25s; }
@keyframes plan-in { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.vip2-page .plan--featured { animation-delay: 0.15s; transform: scale(1.03); animation-name: plan-in-featured; }
@keyframes plan-in-featured { from { opacity: 0; transform: translateY(20px) scale(1); } to { opacity: 1; transform: translateY(0) scale(1.03); } }
@media (max-width: 1024px) { .vip2-page .plans { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .vip2-page .plans { grid-template-columns: 1fr; } }
.vip2-page .plan {
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
  position: relative;
}
.vip2-page .plan:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); border-color: #D6D3D1; }
.vip2-page .plan:not(.plan--featured):not(.plan--activity):hover { border-top: 3px solid var(--gold); }
.vip2-page .plan--featured {
  border: 2px solid var(--gold);
  box-shadow: 0 8px 32px rgba(202, 138, 4, 0.12), var(--shadow);
  transform: scale(1.03);
}
.vip2-page .plan--featured:hover {
  border: 2px solid var(--gold);
  transform: scale(1.03) translateY(-6px);
  box-shadow: 0 24px 48px rgba(202, 138, 4, 0.18), var(--shadow-hover);
}
.vip2-page .plan__badge {
  position: absolute;
  top: 0;
  right: 1.25rem;
  background: var(--gold);
  color: #fff;
  font-size: 0.6875em;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.5rem;
  border-radius: 0 0 8px 8px;
  z-index: 2;
}
.vip2-page .plan__badge--main { background: var(--gold); font-size: 0.75em; }
.vip2-page .plan__badge--no { background: rgba(202, 138, 4, 0.1); color: var(--gold-dark); border: 1px solid rgba(202, 138, 4, 0.3); font-weight: 600; border-top: none;}
.vip2-page .plan__badge--activity { background: var(--activity-red); color: #fff; font-size: 0.75em;}
.vip2-page .plan__buca {
  display: inline-block;
  vertical-align: middle;
  font-size: 0.4375em;
  font-weight: 600;
  padding: 0.15rem 0.4rem;
  margin-left: 0.5rem;
  border-radius: 4px;
  background: rgba(202, 138, 4, 0.1);
  color: var(--gold-dark);
  border: 1px solid rgba(202, 138, 4, 0.3);
}
.vip2-page .plan--activity {
  border: 2px solid var(--activity-red);
  box-shadow: 0 8px 32px rgba(185, 28, 28, 0.15);
}
.vip2-page .plan--activity:hover {
  border: 2px solid var(--activity-red);
  box-shadow: 0 24px 48px rgba(185, 28, 28, 0.2);
}
.vip2-page .plan--activity .plan__features li::before { background: var(--activity-red); }
.vip2-page .plan--activity .plan__buca {
  background: rgba(185, 28, 28, 0.1);
  color: #991b1b;
  border-color: rgba(185, 28, 28, 0.35);
}
.vip2-page .plan__countdown { font-size: 0.875em; font-weight: 700; color: #991b1b; font-variant-numeric: tabular-nums; margin-top: 0.5rem; display: inline-block; }
.vip2-page .plan__countdown,
.vip2-page .vip-activity-countdown {
  transform-origin: 50% 50%;
  backface-visibility: hidden;
}
.vip2-page .plan__countdown.countdown-flip,
.vip2-page .vip-activity-countdown.countdown-flip {
  animation: countdown-flip 0.4s ease-in-out;
}
@keyframes countdown-flip {
  0% { transform: perspective(140px) rotateX(0deg); }
  50% { transform: perspective(140px) rotateX(-90deg); }
  100% { transform: perspective(140px) rotateX(0deg); }
}
.vip2-page .plan__head { padding: 1.5rem 1.5rem 1rem; text-align: center; border-bottom: 1px solid var(--border); }
.vip2-page .plan__name { font-family: var(--font-display); font-size: 1.375em; font-weight: 600; color: var(--text); }
.vip2-page .plan__price { margin-top: 0.75rem; font-family: var(--font-display); font-size: 2.25em; font-weight: 600; color: var(--text); line-height: 1.2; }
.vip2-page .plan__price del { font-size: 0.75em; font-weight: 400; color: #a8a29e; margin-right: 0.35rem; }
.vip2-page .plan__price small { font-family: var(--font-body); font-size: 0.9375em; font-weight: 400; color: var(--text-muted); margin-left: 0.25rem; }
.vip2-page .plan__period { font-size: 0.8125em; color: var(--text-muted); margin-top: 0.35rem; }
.vip2-page .plan__body { padding: 1.25rem 1.5rem 1.5rem; flex: 1; display: flex; flex-direction: column; }
.vip2-page .plan__features { font-size: 0.875em; color: var(--text-muted); line-height: 1.65; margin-bottom: 1.25rem; flex: 1; }
.vip2-page .plan__features ul { list-style: none; }
.vip2-page .plan__features li { padding: 0.4rem 0 0.4rem 1.25rem; position: relative; }
.vip2-page .plan__features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: calc(0.4rem + 0.825em - 2.5px);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}
.vip2-page .plan__cta {
  display: block;
  width: 100%;
  padding: 0.875rem 1.25rem;
  font-family: var(--font-body);
  font-size: 0.9375em;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-align: center;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(180deg, rgba(255,255,255,0.06) 0%, transparent 35%), linear-gradient(135deg, #1C1917 0%, #292524 100%);
  border-radius: 999px;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(12, 10, 9, 0.15), inset 0 1px 0 rgba(255,255,255,0.06);
  transition: background 0.25s var(--ease), transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.vip2-page .plan__cta:hover { background: linear-gradient(180deg, rgba(255,255,255,0.08) 0%, transparent 35%), linear-gradient(135deg, #292524 0%, #1C1917 100%); transform: translateY(-2px) scale(1.02); box-shadow: 0 8px 24px rgba(12, 10, 9, 0.22), 0 4px 16px rgba(202, 138, 4, 0.12), inset 0 1px 0 rgba(255,255,255,0.08); }
.vip2-page .plan__cta:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.vip2-page .plan--featured .plan__cta {
  background: linear-gradient(180deg, rgba(255,255,255,0.22) 0%, transparent 40%), linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #fff;
  border: none;
  box-shadow: 0 2px 12px rgba(202, 138, 4, 0.25), inset 0 1px 0 rgba(255,255,255,0.25);
}
.vip2-page .plan--featured .plan__cta:hover {
  background: linear-gradient(180deg, rgba(255,255,255,0.3) 0%, transparent 40%), linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 10px 28px rgba(202, 138, 4, 0.4), inset 0 1px 0 rgba(255,255,255,0.35);
}
.vip2-page .plan--activity .plan__cta {
  background: linear-gradient(180deg, rgba(255,255,255,0.12) 0%, transparent 35%), var(--activity-red);
  color: #fff;
  border: none;
  box-shadow: 0 2px 10px rgba(185, 28, 28, 0.2), inset 0 1px 0 rgba(255,255,255,0.1);
}
.vip2-page .plan--activity .plan__cta:hover { background: linear-gradient(180deg, rgba(255,255,255,0.15) 0%, transparent 35%), #dc2626; transform: translateY(-2px) scale(1.02); box-shadow: 0 10px 28px rgba(185, 28, 28, 0.35), inset 0 1px 0 rgba(255,255,255,0.12); }
.vip2-page .plan__cta.signin-loader { background: linear-gradient(180deg, rgba(255,255,255,0.5) 0%, transparent 50%), #e2e8f0; color: var(--text); border: none; box-shadow: 0 2px 8px rgba(12, 10, 9, 0.08); }
.vip2-page .plan__cta.signin-loader:hover { background: linear-gradient(180deg, rgba(255,255,255,0.6) 0%, transparent 50%), #cbd5e1; color: var(--text); box-shadow: 0 4px 12px rgba(12, 10, 9, 0.12); }
.vip2-page .plan__cta.disabled { opacity: 0.6; cursor: not-allowed; box-shadow: none; }
.vip2-page .plan__tip { font-size: 0.75em; color: var(--text-muted); margin-top: 0.75rem; text-align: center; }
.vip2-page .plan__tip em { color: var(--gold); font-style: normal; font-weight: 600; }
.vip2-page .vip-cat-section {
  margin-top: clamp(3rem, 6vw, 4rem);
  padding-top: clamp(2rem, 4vw, 3rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
  border-top: 2px solid #D6D3D1;
  position: relative;
}
.vip2-page .vip-cat-section::before {
  content: '';
  position: absolute;
  top: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 6rem;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  border-radius: 2px;
}
.vip2-page .section-title { font-family: var(--font-display); font-size: 1.75em; font-weight: 600; text-align: center; margin: 0 0 1rem; color: var(--text); }
.vip2-page .section-desc { text-align: center; color: var(--text-muted); margin: 0 auto 2rem; line-height: 1.7; }
.vip2-page .section-desc b { color: #B91C1C; }
.vip2-page .cat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; list-style: none; margin: 0; padding: 0; }
.vip2-page .cat-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}
.vip2-page .cat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); border-top: 3px solid var(--gold); }
.vip2-page .cat-card__name { font-family: var(--font-display); font-size: 1.375em; font-weight: 600; color: var(--text); margin-bottom: 0.5rem; }
.vip2-page .cat-card__meta { font-size: 0.9375em; color: var(--text-muted); margin-bottom: 0.75rem; }
.vip2-page .cat-card__meta-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.875em;
  color: var(--text-muted);
  text-decoration: none;
  padding: 0.25rem 0.5rem;
  border-radius: 999px;
  background: rgba(202, 138, 4, 0.08);
  border: 1px solid rgba(202, 138, 4, 0.2);
  transition: color 0.2s var(--ease), background 0.2s var(--ease), border-color 0.2s var(--ease);
}
.vip2-page .cat-card__meta-badge:hover { color: var(--gold-dark); background: rgba(202, 138, 4, 0.12); border-color: rgba(202, 138, 4, 0.35); }
.vip2-page .cat-card__meta-icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  flex-shrink: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23CA8A04' opacity='0.85'%3E%3Cpath d='M10 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2h-8l-2-2z'/%3E%3C/svg%3E") no-repeat center/contain;
}
.vip2-page .cat-card__desc { font-size: 0.8125em; color: var(--text-muted); line-height: 1.6; margin-bottom: 1rem; }
.vip2-page .cat-card__options { font-size: 1em; color: var(--text-muted); margin-bottom: 1rem; }
.vip2-page .cat-card__options ul { list-style: none; margin: 0; padding: 0; }
.vip2-page .cat-card__options li { padding: 0.5rem 0; display: flex; align-items: center; gap: 0.5rem; cursor: pointer; }
.vip2-page .cat-card__options li:hover { color: var(--text); }
.vip2-page .cat-card__options input[type="radio"] { width: 1rem; height: 1rem; accent-color: var(--gold); cursor: pointer; }
.vip2-page .cat-card__options label { cursor: pointer; flex: 1; }
.vip2-page .cat-card .plan__cta { margin-top: 0.5rem; }
.vip2-page .section-wrap { margin-top: clamp(3rem, 6vw, 4rem); padding-top: clamp(2rem, 4vw, 3rem); border-top: 1px solid var(--border); position: relative; }
.vip2-page .section-wrap::before { content: ''; position: absolute; top: -1px; left: 50%; transform: translateX(-50%); width: 4rem; height: 3px; background: linear-gradient(90deg, transparent, var(--gold), transparent); border-radius: 2px; }
.vip2-page .advantages { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-bottom: clamp(2rem, 4vw, 3rem); }
@media (max-width: 768px) { .vip2-page .advantages { grid-template-columns: repeat(2, 1fr); } }
.vip2-page .advantage { text-align: center; padding: 1.25rem 1rem; background: var(--card); border-radius: var(--radius); border: 1px solid var(--border); transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease), transform 0.25s var(--ease); animation: advantage-in 0.5s var(--ease) backwards; }
.vip2-page .advantage:nth-child(1) { animation-delay: 0.05s; }
.vip2-page .advantage:nth-child(2) { animation-delay: 0.15s; }
.vip2-page .advantage:nth-child(3) { animation-delay: 0.25s; }
.vip2-page .advantage:nth-child(4) { animation-delay: 0.35s; }
@keyframes advantage-in { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.vip2-page .advantage:hover { border-color: rgba(202, 138, 4, 0.3); box-shadow: var(--shadow); transform: translateY(-2px); }
.vip2-page .advantage__icon { width: 2.5rem; height: 2.5rem; margin: 0 auto 0.75rem; border-radius: 50%; background: linear-gradient(135deg, rgba(202, 138, 4, 0.15) 0%, rgba(202, 138, 4, 0.05) 100%); display: flex; align-items: center; justify-content: center; font-size: 0.875em; font-weight: 700; color: var(--gold-dark); }
.vip2-page .advantage__icon .dripicons { font-size: 1.25rem; line-height: 1; color: inherit; }
@media (min-width: 769px) {
  .vip2-page .advantage__icon { width: 3.25rem; height: 3.25rem; }
  .vip2-page .advantage__icon .dripicons { font-size: 1.625rem; }
}
.vip2-page .advantage__title { font-weight: 600; color: var(--text); margin-bottom: 0.35rem; }
.vip2-page .advantage__text { font-size: 0.9125em; color: var(--text-muted); line-height: 1.5; }
.vip2-page .footer-cta { text-align: center; margin-top: clamp(3rem, 6vw, 4rem); padding-top: 2rem; border-top: 1px solid var(--border); }
.vip2-page .footer-cta p { font-size: 0.9375em; color: var(--text-muted); }
.vip2-page .footer-cta a { color: var(--gold); font-weight: 600; text-decoration: none; }
.vip2-page .footer-cta a:hover { text-decoration: underline; }
.vip2-page .vip2-faq-section { margin-top: clamp(3rem, 6vw, 4rem); padding-bottom: clamp(2rem, 5vw, 4rem); }
.vip2-page .vip2-faq-list {
  margin-top: 1.5rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.vip2-page .vip2-faq-item {
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 1.5rem;
  transition: background 0.2s var(--ease);
}
.vip2-page .vip2-faq-item:last-child { border-bottom: none; }
.vip2-page .vip2-faq-item:hover { background: rgba(202, 138, 4, 0.03); }
.vip2-page .vip2-faq-item h5 { font-size: 1em; font-weight: 600; margin: 0 0 0.5rem; color: var(--text); line-height: 1.4; }
.vip2-page .vip2-faq-item .vip2-faq-ans { font-size: 0.875em; line-height: 1.65; color: var(--text-muted); margin: 0; }
.vip2-page .vip2-logs { margin-top: 0.75rem; margin-bottom: 0; max-width: 28rem; margin-left: auto; margin-right: auto; }
.vip2-page .vip2-logs__wrap {
  background: linear-gradient(135deg, #1c1917 0%, #292524 100%);
  border: 1px solid rgba(202, 138, 4, 0.4);
  border-radius: var(--radius);
  padding: 0 1rem;
  height: 2.5rem;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(202, 138, 4, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.vip2-page .vip2-logs ul { list-style: none; margin: 0; padding: 0; font-size: 0.875em; color: var(--gold-light); line-height: 1; transition: transform 0.5s var(--ease); }
.vip2-page .vip2-logs li {
  padding: 0;
  position: relative;
  height: 2.5rem;
  line-height: 2.5rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  box-sizing: border-box;
}
@media (prefers-reduced-motion: reduce) {
  .vip2-page .vip2-logs li { transition: none; }
  .vip2-page .plan, .vip2-page .plan--featured, .vip2-page .plan__cta, .vip2-page .cat-card, .vip2-page .hero, .vip2-page .notice, .vip2-page .advantage, .vip2-page .hero::before, .vip2-page .hero::after { transition: none; animation: none; }
  .vip2-page .plan:hover, .vip2-page .plan--featured:hover { transform: none; }
}

/* 深色模式：整页抽象柔光（无点阵） */
body.night.page-template-vip2,
body.night.page-template-template-vip2 {
  background-color: #121212 !important;
  background-image:
    radial-gradient(ellipse 120% 80% at 50% -20%, rgba(202, 138, 4, 0.12) 0%, rgba(234, 179, 8, 0.05) 38%, transparent 62%),
    radial-gradient(ellipse 70% 50% at 85% 25%, rgba(202, 138, 4, 0.06) 0%, transparent 55%),
    radial-gradient(ellipse 60% 45% at 15% 75%, rgba(161, 98, 7, 0.05) 0%, transparent 50%),
    radial-gradient(ellipse 50% 40% at 50% 95%, rgba(234, 179, 8, 0.04) 0%, transparent 45%) !important;
  background-size: 100% 100%, 100% 100%, 100% 100%, 100% 100% !important;
  background-repeat: no-repeat !important;
}
body.night .vip2-page {
  background: transparent;
  color: #999;
}
body.night .vip2-page .hero__label { color: var(--gold-light); }
body.night .vip2-page .hero__title { color: #eee; }
body.night .vip2-page .hero__title span { color: var(--gold-light); }
body.night .vip2-page .hero__desc { color: #999; }
body.night .vip2-page .hero::before {
  background: linear-gradient(165deg, rgba(202, 138, 4, 0.22) 0%, rgba(234, 179, 8, 0.1) 30%, rgba(18, 18, 18, 0.95) 65%, transparent 100%),
              linear-gradient(105deg, transparent 0%, rgba(161, 98, 7, 0.06) 30%, transparent 60%),
              linear-gradient(255deg, transparent 40%, rgba(202, 138, 4, 0.04) 70%, transparent 100%);
}
body.night .vip2-page .hero::after {
  background: radial-gradient(ellipse 100% 50% at 50% 100%, rgba(202, 138, 4, 0.18) 0%, rgba(234, 179, 8, 0.06) 45%, transparent 70%);
}
body.night .vip2-page .notice {
  background: linear-gradient(135deg, #1f1f1f 0%, #2a2a2a 100%);
  color: #ddd;
  border-left-color: var(--gold);
  border-right-color: var(--gold);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}
body.night .vip2-page .notice strong { color: var(--gold-light); }
body.night .vip2-page .notice.notice--activity {
  background: linear-gradient(135deg, #2a1515 0%, #3f1d1d 100%);
  color: #fecaca;
  border-left-color: #7f1d1d;
  border-right-color: #7f1d1d;
  box-shadow: 0 8px 32px rgba(127, 29, 29, 0.25), 0 4px 24px rgba(0, 0, 0, 0.2);
}
body.night .vip2-page .notice.notice--activity strong { color: #e57373; }
body.night .vip2-page .notice.notice--activity .vip-activity-countdown { color: #e57373; }
body.night .vip2-page .plan {
  background: #181818;
  border-color: #252525;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}
body.night .vip2-page .plan:hover {
  border-color: #333;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
}
body.night .vip2-page .plan:not(.plan--featured):not(.plan--activity):hover { border-top: 3px solid var(--gold); }
body.night .vip2-page .plan--featured {
  border-color: var(--gold);
  box-shadow: 0 8px 32px rgba(202, 138, 4, 0.15), 0 4px 24px rgba(0, 0, 0, 0.2);
}
body.night .vip2-page .plan--featured:hover {
  border-color: var(--gold);
  box-shadow: 0 24px 48px rgba(202, 138, 4, 0.2), 0 24px 48px rgba(0, 0, 0, 0.35);
}
body.night .vip2-page .plan--activity {
  border-color: #7f1d1d;
  box-shadow: 0 8px 32px rgba(127, 29, 29, 0.2), 0 4px 24px rgba(0, 0, 0, 0.2);
}
body.night .vip2-page .plan--activity:hover {
  border-color: #991b1b;
  box-shadow: 0 24px 48px rgba(127, 29, 29, 0.22), 0 24px 48px rgba(0, 0, 0, 0.35);
}
body.night .vip2-page .plan__badge--no { background: rgba(202, 138, 4, 0.2); color: var(--gold-light); border-color: rgba(202, 138, 4, 0.45); }
body.night .vip2-page .plan__buca {
  background: rgba(202, 138, 4, 0.2);
  color: var(--gold-light);
  border-color: rgba(202, 138, 4, 0.4);
}
body.night .vip2-page .plan__badge--activity { background: #991b1b; }
body.night .vip2-page .plan--activity .plan__buca {
  background: rgba(127, 29, 29, 0.35);
  color: #e57373;
  border-color: rgba(127, 29, 29, 0.5);
}
body.night .vip2-page .plan__head { border-bottom-color: #252525; }
body.night .vip2-page .plan__name { color: #bbb; }
body.night .vip2-page .plan__price { color: #ddd; }
body.night .vip2-page .plan__price del { color: #888; }
body.night .vip2-page .plan__price small { color: #999; }
body.night .vip2-page .plan__period { color: #999; }
body.night .vip2-page .plan__features { color: #999; }
body.night .vip2-page .plan__tip { color: #888; }
body.night .vip2-page .plan__tip em { color: var(--gold-light); }
body.night .vip2-page .plan__countdown { color: #e57373; }
body.night .vip2-page .plan__cta {
  background: linear-gradient(180deg, rgba(255,255,255,0.05) 0%, transparent 35%), linear-gradient(135deg, #2a2a2a 0%, #1f1f1f 100%);
  color: #ddd;
  border: none;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255,255,255,0.04);
}
body.night .vip2-page .plan__cta:hover {
  background: linear-gradient(180deg, rgba(255,255,255,0.07) 0%, transparent 35%), linear-gradient(135deg, #333 0%, #252525 100%);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45), 0 4px 16px rgba(202, 138, 4, 0.1), inset 0 1px 0 rgba(255,255,255,0.06);
}
body.night .vip2-page .plan--featured .plan__cta { background: linear-gradient(180deg, rgba(255,255,255,0.1) 0%, transparent 40%), linear-gradient(135deg, #a16207 0%, #92400e 100%); color: #fef3c7; border: none; box-shadow: 0 2px 10px rgba(161, 98, 7, 0.25), inset 0 1px 0 rgba(255,255,255,0.1); }
body.night .vip2-page .plan--featured .plan__cta:hover { background: linear-gradient(180deg, rgba(255,255,255,0.12) 0%, transparent 40%), linear-gradient(135deg, #ca8a04 0%, #a16207 100%); color: #fff; box-shadow: 0 8px 24px rgba(161, 98, 7, 0.28), inset 0 1px 0 rgba(255,255,255,0.12); }
body.night .vip2-page .plan--activity .plan__cta { background: linear-gradient(180deg, rgba(255,255,255,0.06) 0%, transparent 35%), #991b1b; color: #fecaca; border: none; box-shadow: 0 2px 10px rgba(127, 29, 29, 0.3), inset 0 1px 0 rgba(255,255,255,0.06); }
body.night .vip2-page .plan--activity .plan__cta:hover { background: linear-gradient(180deg, rgba(255,255,255,0.08) 0%, transparent 35%), #b91c1c; color: #fff; box-shadow: 0 8px 24px rgba(127, 29, 29, 0.28), inset 0 1px 0 rgba(255,255,255,0.08); }
body.night .vip2-page .plan__cta.signin-loader { background: #2f2f2f; color: #999; border: none; box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25); }
body.night .vip2-page .plan__cta.signin-loader:hover { background: #414243; color: #bbb; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35); }
body.night .vip2-page .vip-cat-section { border-top-color: #333; }
body.night .vip2-page .vip-cat-section::before { background: linear-gradient(90deg, transparent, var(--gold), transparent); }
body.night .vip2-page .section-title { color: #bbb; }
body.night .vip2-page .section-desc { color: #999; }
body.night .vip2-page .section-desc b { color: #f87171; }
body.night .vip2-page .cat-card {
  background: #181818;
  border-color: #252525;
}
body.night .vip2-page .cat-card:hover {
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
  border-top-color: var(--gold);
}
body.night .vip2-page .cat-card__name { color: #bbb; }
body.night .vip2-page .cat-card__meta { color: #999; }
body.night .vip2-page .cat-card__meta-badge {
  background: rgba(202, 138, 4, 0.15);
  border-color: rgba(202, 138, 4, 0.35);
  color: #ccc;
}
body.night .vip2-page .cat-card__meta-badge:hover { color: var(--gold-light); background: rgba(202, 138, 4, 0.22); border-color: rgba(202, 138, 4, 0.45); }
body.night .vip2-page .cat-card__desc { color: #999; }
body.night .vip2-page .cat-card__options { color: #999; }
body.night .vip2-page .cat-card__options li:hover { color: #bbb; }
body.night .vip2-page .section-wrap { border-top-color: #252525; }
body.night .vip2-page .section-wrap::before { background: linear-gradient(90deg, transparent, var(--gold), transparent); }
body.night .vip2-page .advantage {
  background: #181818;
  border-color: #252525;
}
body.night .vip2-page .advantage:hover { border-color: rgba(202, 138, 4, 0.4); box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25); }
body.night .vip2-page .advantage__icon {
  background: linear-gradient(135deg, rgba(202, 138, 4, 0.25) 0%, rgba(202, 138, 4, 0.1) 100%);
  color: var(--gold-light);
}
body.night .vip2-page .advantage__title { color: #bbb; }
body.night .vip2-page .advantage__text { color: #999; }
body.night .vip2-page .footer-cta { border-top-color: #252525; }
body.night .vip2-page .footer-cta p { color: #999; }
body.night .vip2-page .footer-cta a { color: var(--gold-light); }
body.night .vip2-page .footer-cta a:hover { color: var(--gold); }
body.night .vip2-page .vip2-faq-list { background: #181818; border-color: #252525; box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2); }
body.night .vip2-page .vip2-faq-item { border-bottom-color: #252525; }
body.night .vip2-page .vip2-faq-item:last-child { border-bottom: none; }
body.night .vip2-page .vip2-faq-item:hover { background: rgba(202, 138, 4, 0.06); }
body.night .vip2-page .vip2-faq-item h5 { color: #bbb; }
body.night .vip2-page .vip2-faq-item .vip2-faq-ans { color: #999; }
body.night .vip2-page .vip2-logs__wrap {
  background: linear-gradient(135deg, #18181b 0%, #27272a 100%);
  border-color: rgba(202, 138, 4, 0.45);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(202, 138, 4, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.03);
}
body.night .vip2-page .vip2-logs ul { color: var(--gold-light); }

/* ≤768px：避免主题 .container max-width + hero 负 margin 导致内容被裁切或不可见；与 page-template-vip 一致保证 content 可见 */
@media (max-width: 768px) {
  body.page-template-vip2 .main,
  body.page-template-vip2 .main .container,
  body.page-template-vip2 .content-wrap,
  body.page-template-vip2 .content { overflow: visible !important; }
  body.page-template-vip2 .content-wrap { margin: 0; float: none; width: 100%; }
  body.page-template-vip2 .content { width: 100%; }
  .vip2-page { width: 100% !important; max-width: 100% !important; min-width: 0; overflow: visible; box-sizing: border-box; }
  .vip2-page .hero {
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
}
