/* ============================================================
   reserve-premium.css — WOW 预约官网设计系统
   2026-08-12 改版：深色霓虹（Neon Genesis）
   设计原则：深紫夜空底 + 霓虹紫/青描边 + 金色数字高光 / 克制但有存在感的发光动效
   自包含：不依赖 genesis-value / kol / reserve 旧样式
   ============================================================ */

/* ---------- 设计变量 ---------- */
:root {
  /* 底色三层：页面底 / 区块底 / 高光底 */
  --bg: #08051a;
  --bg-2: #0f0930;
  --bg-3: #1a0f45;
  /* 卡片：深紫玻璃 */
  --surface: rgba(28, 18, 68, 0.72);
  --surface-2: rgba(38, 24, 88, 0.62);
  --surface-solid: #150d38;
  --ink: #f4f1ff;
  --copy: #bdb2e6;
  --muted: #8479b8;
  --line: rgba(140, 108, 255, 0.24);
  --line-strong: rgba(140, 108, 255, 0.5);
  --accent: #8b5cff;
  --accent-2: #22d3ee;
  --accent-soft: rgba(139, 92, 255, 0.16);
  --gold: #ffd25e;
  --gold-2: #ff9f2e;
  --green: #24e5a0;
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-sm: 9px;
  /* 深色下用「黑投影 + 霓虹外发光」代替浅色的柔和阴影 */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.45);
  --shadow-md: 0 16px 40px rgba(3, 1, 14, 0.55);
  --shadow-hover: 0 24px 58px rgba(3, 1, 14, 0.72), 0 0 0 1px rgba(139, 92, 255, 0.4);
  --glow-purple: 0 0 26px rgba(139, 92, 255, 0.45);
  --glow-cyan: 0 0 22px rgba(34, 211, 238, 0.4);
  --glow-gold: 0 0 26px rgba(255, 210, 94, 0.45);
  --grad-gold: linear-gradient(135deg, #ffe89a 0%, var(--gold) 42%, var(--gold-2) 100%);
  --grad-neon: linear-gradient(135deg, var(--accent) 0%, #5b8cff 52%, var(--accent-2) 100%);
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC",
    "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; background: var(--bg); }

body {
  margin: 0;
  background:
    radial-gradient(1100px 620px at 12% -6%, rgba(139, 92, 255, 0.3), transparent 62%),
    radial-gradient(980px 560px at 88% 2%, rgba(34, 211, 238, 0.16), transparent 60%),
    radial-gradient(1200px 700px at 50% 100%, rgba(93, 63, 211, 0.24), transparent 66%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 46%, var(--bg) 100%);
  background-attachment: fixed;
  color: var(--ink);
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* 星野 + 网格：极淡，只提供纵深，不抢内容 */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(139, 92, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139, 92, 255, 0.055) 1px, transparent 1px);
  background-size: 68px 68px, 68px 68px;
  mask-image: radial-gradient(circle at 50% 22%, #000 0%, transparent 72%);
  -webkit-mask-image: radial-gradient(circle at 50% 22%, #000 0%, transparent 72%);
}

.rv-shell { position: relative; z-index: 1; min-height: 100vh; }

/* ---------- 顶部细条 ---------- */
.rv-topbar {
  padding: 8px 20px;
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

/* ---------- 导航 ---------- */
.rv-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 14px 24px;
  background: rgba(10, 6, 30, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.rv-brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink); }
.rv-brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  font-weight: 800;
  font-size: 16px;
}
.rv-brand-copy { display: flex; flex-direction: column; line-height: 1.15; }
.rv-brand-copy strong { font-size: 16px; letter-spacing: 0.01em; }
.rv-brand-copy small { font-size: 11px; color: var(--muted); letter-spacing: 0.04em; }

.rv-nav-links { display: flex; gap: 26px; }
.rv-nav-links a {
  font-size: 14px;
  color: var(--copy);
  text-decoration: none;
  transition: color 0.2s var(--ease);
}
.rv-nav-links a:hover { color: var(--accent); }

.rv-nav-cta {
  padding: 9px 20px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s var(--ease), background 0.2s var(--ease);
}
.rv-nav-cta:hover { background: var(--accent); transform: translateY(-1px); }

/* ---------- 按钮 ---------- */
.rv-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border: 0;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font);
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease),
    background 0.2s var(--ease), opacity 0.2s var(--ease);
}
.rv-btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  box-shadow: 0 8px 20px rgba(139, 92, 255, 0.28);
}
.rv-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(139, 92, 255, 0.34); }
.rv-btn-ghost {
  background: var(--surface);
  color: var(--ink);
  border: 1px solid var(--line);
}
.rv-btn-ghost:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.rv-btn:disabled { opacity: 0.45; cursor: not-allowed; transform: none !important; box-shadow: none !important; }
.rv-btn-block { width: 100%; }

/* ---------- 通用 section ---------- */
main { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

.rv-anchor { display: block; height: 0; overflow: hidden; }

.rv-eyebrow {
  margin: 0 0 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}
.rv-eyebrow-light { color: rgba(255, 255, 255, 0.65); }

.rv-section { padding: 64px 0 8px; }
.rv-sec-head { max-width: 720px; margin-bottom: 32px; }
.rv-sec-head h2 { margin: 0 0 10px; font-size: 30px; font-weight: 700; letter-spacing: -0.02em; }
.rv-sec-head p:last-child { margin: 0; color: var(--copy); font-size: 14.5px; }

/* ---------- 入场动效 ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
[data-reveal].is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  * { animation-duration: 0.01ms !important; }
}

/* ============================================================
   HERO
   ============================================================ */
.rv-hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 40px;
  padding: 72px 0 40px;
}
.rv-hero h1 {
  margin: 0 0 18px;
  font-size: clamp(36px, 5vw, 54px);
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: -0.03em;
}
.rv-hero h1 em {
  font-style: normal;
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.rv-lede {
  margin: 0 0 26px;
  max-width: 480px;
  font-size: 15.5px;
  color: var(--copy);
}
.rv-lede b { color: var(--ink); font-weight: 700; }
.rv-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.rv-hero-meta {
  margin: 22px 0 0;
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.rv-hero-stage { position: relative; display: grid; place-items: center; }
.rv-hero-stage::before {
  content: "";
  position: absolute;
  width: 72%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 92, 255, 0.12), rgba(34, 211, 238, 0.05) 60%, transparent 72%);
  filter: blur(6px);
}
.rv-hero-art {
  position: relative;
  width: min(100%, 460px);
  height: auto;
  filter: drop-shadow(0 30px 50px rgba(139, 92, 255, 0.22));
  animation: rv-float 7s ease-in-out infinite;
}
@keyframes rv-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

/* ---------- 数据条 ---------- */
.rv-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  margin: 16px 0 0;
}
.rv-stat {
  padding: 22px 20px 18px;
  border-bottom: 1px solid var(--line);
}
.rv-stat + .rv-stat { border-left: 1px solid var(--line); }
.rv-stat > span { display: block; font-size: 13px; color: var(--muted); margin-bottom: 6px; }
.rv-stat b {
  display: block;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  color: var(--ink);
}
.rv-stat small { font-size: 10.5px; letter-spacing: 0.12em; color: var(--muted); }

/* ============================================================
   预约表单
   ============================================================ */
.rv-form-section { padding: 72px 0 8px; }
.rv-form-head { text-align: center; max-width: 520px; margin: 0 auto 34px; }
.rv-form-head h2 { margin: 0 0 10px; font-size: 32px; font-weight: 700; letter-spacing: -0.02em; }
.rv-form-head p:last-child { margin: 0; color: var(--copy); font-size: 14.5px; }

.rv-form-card {
  max-width: 760px;
  margin: 0 auto;
  padding: 36px 40px 32px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.rv-form { display: grid; grid-template-columns: 1fr 1fr; gap: 20px 18px; }
.rv-field-wide { grid-column: 1 / -1; }
.rv-field { display: grid; gap: 7px; }
.rv-label { font-size: 13px; font-weight: 600; color: var(--ink); }
.rv-label em { color: var(--accent); font-style: normal; }
.rv-label small { font-weight: 400; color: var(--muted); }
.rv-input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.05);
  font-size: 14.5px;
  font-family: var(--font);
  color: var(--ink);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease);
  appearance: none;
  -webkit-appearance: none;
}
.rv-input:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(24, 14, 60, 0.92);
  box-shadow: 0 0 0 3px var(--accent-soft), var(--glow-purple);
}
.rv-input::placeholder { color: #6f639f; }
select.rv-input {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238479b8' stroke-width='1.6' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
}
.rv-hint { font-size: 12px; color: var(--muted); }
.rv-honeypot { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }

.rv-consent {
  grid-column: 1 / -1;
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 12.5px;
  color: var(--copy);
}
.rv-consent input { margin-top: 2px; accent-color: var(--accent); }

.rv-status { grid-column: 1 / -1; margin: 0; min-height: 20px; font-size: 13.5px; text-align: center; }
.rv-status[style*="color: rgb(226, 84, 75)"] { color: #e2544b !important; }
.rv-status[style*="color: #e2544b"] { color: #e2544b !important; }

/* 预约成功视图 */
.rv-success { text-align: center; padding: 14px 0 4px; }
.rv-success-mark {
  width: 62px;
  height: 62px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  font-size: 28px;
  font-weight: 800;
  box-shadow: 0 12px 26px rgba(139, 92, 255, 0.3);
  animation: rv-pop 0.45s var(--ease);
}
@keyframes rv-pop {
  0% { transform: scale(0.6); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
.rv-success h3 { margin: 0 0 8px; font-size: 26px; }
.rv-success-copy { margin: 0 0 22px; color: var(--copy); }
.rv-success-copy strong { color: var(--ink); }
.rv-success-id {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 16px 18px;
  border: 1px dashed var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.05);
  margin-bottom: 20px;
}
.rv-success-id span { font-size: 13px; color: var(--muted); }
.rv-success-id b { font-size: 17px; letter-spacing: 0.02em; font-variant-numeric: tabular-nums; }
.rv-success-id button {
  border: 0;
  background: none;
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}
.rv-success-invite { margin-bottom: 20px; }
.rv-success-invite > p { margin: 0 0 12px; font-size: 13.5px; color: var(--copy); }
.rv-invite-row { display: flex; gap: 10px; max-width: 460px; margin: 0 auto; }
.rv-invite-row .rv-input { flex: 1; min-width: 0; }

/* ============================================================
   三列主区
   ============================================================ */
.rv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 72px 0 8px;
}

.rv-card {
  display: flex;
  flex-direction: column;
  padding: 26px 24px 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.rv-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }

.rv-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}
.rv-card-head h3 { margin: 0; font-size: 16.5px; font-weight: 700; letter-spacing: -0.01em; }
.rv-card-sub { margin: 0 0 18px; font-size: 13.5px; color: var(--copy); }
.rv-card-sub b { color: var(--ink); }

.rv-chip {
  flex: 0 0 auto;
  padding: 3px 11px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 11.5px;
  font-weight: 600;
  white-space: nowrap;
}
/* R8-3：身份角标做成可点击按钮（未连接时直接触发连接+签名） */
.rv-chip-btn {
  border: 1px solid var(--accent);
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}
.rv-chip-btn:hover { background: var(--accent); color: #fff; }
.rv-chip-btn.is-ok {
  border-color: transparent;
}

/* 邀请码 */
.rv-code { margin-bottom: 14px; }
.rv-code-line {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.05);
}
.rv-code-line span { font-size: 12px; color: var(--muted); }
.rv-code-line b {
  flex: 1;
  min-width: 0;
  font-size: 14.5px;
  letter-spacing: 0.03em;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.rv-code-line button {
  border: 0;
  background: none;
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}
.rv-code-line button:disabled { color: var(--muted); cursor: not-allowed; }

/* 钱包绑定 */
.rv-wallet-row { display: flex; gap: 8px; margin-bottom: 12px; }
.rv-wallet-row input {
  flex: 1;
  min-width: 0;
  padding: 11px 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.05);
  font-size: 13.5px;
  font-family: var(--font);
  color: var(--ink);
}
.rv-wallet-row input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
.rv-wallet-row button {
  padding: 11px 16px;
  border: 0;
  border-radius: var(--radius-sm);
  background: var(--ink);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s var(--ease);
}
.rv-wallet-row button:hover { background: var(--accent); }
.rv-wallet-row button:disabled { opacity: 0.4; cursor: not-allowed; }

/* 工具按钮 */
.rv-tools { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 18px; }
.rv-tools button {
  padding: 7px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--copy);
  font-size: 12.5px;
  font-family: var(--font);
  cursor: pointer;
  transition: all 0.2s var(--ease);
}
.rv-tools button:hover:not(:disabled) { border-color: var(--accent); color: var(--accent); }
.rv-tools button:disabled { opacity: 0.4; cursor: not-allowed; }

/* 指标 */
.rv-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.rv-metrics > div { padding: 4px 2px; }
.rv-metrics span { display: block; font-size: 12px; color: var(--muted); }
.rv-metrics strong {
  display: block;
  font-size: 21px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  margin: 2px 0;
}
.rv-metrics small { font-size: 11.5px; color: var(--muted); }
.rv-metrics button {
  border: 0;
  background: none;
  padding: 0;
  color: var(--accent);
  font-size: 12.5px;
  font-weight: 600;
  cursor: pointer;
}
.rv-metrics button:disabled { color: var(--muted); cursor: not-allowed; }

/* 榜单 tab */
.rv-tabs { display: flex; gap: 6px; margin-bottom: 14px; }
.rv-tabs button {
  padding: 6px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--copy);
  font-size: 12.5px;
  font-weight: 500;
  font-family: var(--font);
  cursor: pointer;
  transition: all 0.2s var(--ease);
}
.rv-tabs button.is-active {
  background: var(--grad-neon);
  border-color: transparent;
  color: #fff;
  box-shadow: var(--glow-purple);
}

/* 榜单行（park-home.js 动态渲染） */
.invite-leaderboard-list { display: grid; gap: 4px; min-height: 148px; }
.invite-leaderboard-row {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  transition: background 0.15s var(--ease);
}
.invite-leaderboard-row:hover { background: rgba(139, 92, 255, 0.12); }
.invite-leaderboard-row .invite-rank {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.09);
  color: var(--copy);
  font-weight: 600;
  font-size: 12px;
  font-variant-numeric: tabular-nums;
}
.invite-leaderboard-row .invite-rank-1 { background: linear-gradient(135deg, #f5c542, #e8a713); color: #fff; }
.invite-leaderboard-row .invite-rank-2 { background: linear-gradient(135deg, #b9c2cc, #8f9aa8); color: #fff; }
.invite-leaderboard-row .invite-rank-3 { background: linear-gradient(135deg, #d9916b, #b96f47); color: #fff; }
.invite-leaderboard-row > span:nth-child(2) { color: var(--copy); }
.invite-leaderboard-row strong { font-weight: 600; font-variant-numeric: tabular-nums; }
.invite-record-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-height: 148px;
  text-align: center;
  color: var(--muted);
}
.invite-record-empty strong { font-size: 13.5px; color: var(--copy); font-weight: 600; }
.invite-record-empty span { font-size: 12px; }

.rv-rank-self {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  font-size: 12.5px;
  color: var(--muted);
}
.rv-rank-self span { flex: 1; }
.rv-rank-self b { font-size: 14px; color: var(--ink); font-variant-numeric: tabular-nums; }
.rv-rank-self em { font-style: normal; font-variant-numeric: tabular-nums; }

/* 进度环 */
.rv-ring {
  --progress: 0;
  position: relative;
  width: 148px;
  height: 148px;
  margin: 18px auto 14px;
  border-radius: 50%;
  background: conic-gradient(var(--accent) calc(var(--progress) * 1%), rgba(255, 255, 255, 0.09) 0);
  display: grid;
  place-items: center;
  transition: background 0.6s var(--ease);
}
.rv-ring::before {
  content: "";
  position: absolute;
  inset: 9px;
  border-radius: 50%;
  background: var(--surface);
}
.rv-ring > div {
  position: relative;
  text-align: center;
}
.rv-ring strong {
  display: block;
  font-size: 26px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.rv-ring span { font-size: 11.5px; color: var(--muted); }

.rv-ring-count { text-align: center; margin: 0 0 16px; font-size: 13px; color: var(--muted); }
.rv-ring-count em { font-style: normal; font-weight: 700; color: var(--ink); font-variant-numeric: tabular-nums; }

.rv-milestones {
  display: flex;
  justify-content: space-between;
  padding: 0 6px;
}
.rv-milestones span { position: relative; font-size: 12px; color: var(--muted); transition: color 0.2s; }
.rv-milestones span.is-unlocked { color: var(--green); font-weight: 700; }
.rv-milestones span.is-unlocked::after { content: "✓"; position: absolute; top: -11px; right: -5px; font-size: 10px; }

/* ============================================================
   宝箱召唤（深色强调区）
   ============================================================ */
.rv-chest {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 36px;
  align-items: center;
  margin-top: 72px;
  padding: 46px 48px;
  border-radius: 22px;
  background:
    radial-gradient(900px 420px at 88% -10%, rgba(34, 211, 238, 0.35), transparent 60%),
    radial-gradient(700px 380px at -10% 110%, rgba(139, 92, 255, 0.4), transparent 55%),
    linear-gradient(135deg, #171336, #23205c);
  color: #fff;
  overflow: hidden;
}
.rv-chest h2 { margin: 0 0 14px; font-size: clamp(24px, 3vw, 32px); font-weight: 700; letter-spacing: -0.02em; line-height: 1.3; }
.rv-chest h2 em { font-style: normal; color: #ffd36b; }
.rv-chest-copy > p:not(.rv-eyebrow-light) { margin: 0 0 20px; font-size: 14px; color: rgba(255, 255, 255, 0.72); }
.rv-chest-tools { display: flex; gap: 10px; flex-wrap: wrap; }
.rv-chest-tools button {
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 13px;
  font-family: var(--font);
  cursor: pointer;
  transition: background 0.2s var(--ease), transform 0.2s var(--ease);
}
.rv-chest-tools button:hover:not(:disabled) { background: rgba(255, 255, 255, 0.16); transform: translateY(-1px); }
.rv-chest-tools button:disabled { opacity: 0.4; cursor: not-allowed; }

.rv-chest-side { text-align: center; }
.rv-chest-art {
  width: min(100%, 220px);
  height: auto;
  margin: 0 auto 12px;
  filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.35));
  animation: rv-float 6.5s ease-in-out infinite;
}
.rv-chest-side > p { margin: 0 0 14px; font-size: 14px; color: rgba(255, 255, 255, 0.8); }
.rv-chest-side > p b { font-size: 22px; color: #ffd36b; font-variant-numeric: tabular-nums; }
.rv-chest-actions { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.rv-chest-actions button {
  padding: 11px 20px;
  border: 0;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 600;
  font-family: var(--font);
  cursor: pointer;
  transition: transform 0.2s var(--ease), opacity 0.2s var(--ease);
}
.rv-chest-actions button[data-chest-open] { background: linear-gradient(135deg, #ffd36b, #f5b83c); color: #2a2140; }
.rv-chest-actions button[data-chest-exchange] { background: rgba(255, 255, 255, 0.14); color: #fff; border: 1px solid rgba(255, 255, 255, 0.25); }
.rv-chest-actions button:hover:not(:disabled) { transform: translateY(-2px); }
.rv-chest-actions button:disabled { opacity: 0.4; cursor: not-allowed; }
.rv-chest-side > small { display: block; margin-top: 12px; font-size: 12px; color: rgba(255, 255, 255, 0.55); }

/* ============================================================
   KOL 等级
   ============================================================ */
.rv-level { max-width: 640px; margin-bottom: 30px; }
.rv-level > span { font-size: 13.5px; color: var(--copy); }
.rv-level b { color: var(--ink); font-weight: 700; font-variant-numeric: tabular-nums; }
.rv-bar {
  margin-top: 12px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  overflow: hidden;
}
.rv-bar i {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transition: width 0.8s var(--ease);
}

/* 等级卡（park-home.js 动态渲染） */
.kol-tier-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.kol-tier {
  position: relative;
  padding: 18px 14px 16px;
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}
.kol-tier:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); border-color: rgba(139, 92, 255, 0.4); }
.kol-tier-badge {
  display: block;
  width: 62px;
  height: 62px;
  object-fit: contain;
  margin: 0 auto 8px;
  filter: drop-shadow(0 6px 14px rgba(139, 92, 255, 0.2));
  transition: transform 0.3s var(--ease);
}
.kol-tier:hover .kol-tier-badge { transform: scale(1.08); }
.kol-tier-no {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.09);
  padding: 2px 8px;
  border-radius: 999px;
}
.kol-tier h3 { margin: 0 0 4px; font-size: 14.5px; font-weight: 700; }
.kol-tier p { margin: 0; font-size: 12px; color: var(--muted); }
.kol-tier ul { list-style: none; margin: 10px 0 0; padding: 10px 0 0; border-top: 1px solid var(--line); }
.kol-tier li { font-size: 12px; color: var(--copy); padding: 2px 0; }
.kol-tier li i { color: var(--green); font-style: normal; margin-right: 4px; }

/* ============================================================
   KOL 权益
   ============================================================ */
.rv-perks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.rv-perks article {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.rv-perks article:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.rv-perks article > span {
  width: 52px;
  height: 52px;
  margin-bottom: 14px;
}
.rv-perks article > span img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 6px 14px rgba(139, 92, 255, 0.22));
  transition: transform 0.3s var(--ease);
}
.rv-perks article:hover > span img { transform: scale(1.1); }
.rv-perks h3 { margin: 0 0 6px; font-size: 15.5px; font-weight: 700; }
.rv-perks p { margin: 0; font-size: 13px; color: var(--copy); line-height: 1.6; }

/* ============================================================
   游戏乐园
   ============================================================ */
.rv-gameverse {
  position: relative;
  margin-bottom: 18px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.rv-gameverse img {
  display: block;
  width: 100%;
  height: clamp(220px, 28vw, 340px);
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.rv-gameverse:hover img { transform: scale(1.03); }
.rv-gameverse-copy {
  position: absolute;
  inset: auto 0 0 0;
  padding: 30px 26px 20px;
  background: linear-gradient(180deg, transparent, rgba(13, 10, 34, 0.88));
  color: #fff;
}
.rv-gameverse-copy b { display: block; font-size: 21px; letter-spacing: 0.05em; }
.rv-gameverse-copy span { font-size: 13px; opacity: 0.8; }

.rv-games {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.rv-games article {
  position: relative;
  padding: 22px 16px 16px;
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.rv-games article:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.rv-games article > span {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: linear-gradient(135deg, #f5f3ff, #eaf6ff);
  font-size: 26px;
  margin-bottom: 12px;
}
.rv-games h3 { margin: 0 0 4px; font-size: 14.5px; font-weight: 700; }
.rv-games p { margin: 0 0 10px; font-size: 12px; color: var(--muted); }
.rv-games b {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

/* ============================================================
   生态预览
   ============================================================ */
.rv-eco {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.rv-eco article {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 26px 20px 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.rv-eco article:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.rv-eco article > img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  margin-bottom: 14px;
  filter: drop-shadow(0 6px 14px rgba(139, 92, 255, 0.2));
  transition: transform 0.3s var(--ease);
}
.rv-eco article:hover > img { transform: scale(1.08); }
.rv-eco h3 { margin: 0 0 6px; font-size: 15px; font-weight: 700; }
.rv-eco p { margin: 0; font-size: 12.5px; color: var(--copy); }
.rv-eco b {
  margin-top: auto;
  padding-top: 10px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--muted);
}
.rv-eco-community img { width: auto; max-width: 180px; height: auto; border-radius: 8px; }

/* ============================================================
   FAQ
   ============================================================ */
.rv-faq { max-width: 760px; }
.rv-faq details {
  border-bottom: 1px solid var(--line);
}
.rv-faq details:first-child { border-top: 1px solid var(--line); }
.rv-faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 4px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  transition: color 0.2s var(--ease);
}
.rv-faq summary::-webkit-details-marker { display: none; }
.rv-faq summary::after {
  content: "+";
  flex: 0 0 auto;
  font-size: 20px;
  font-weight: 400;
  color: var(--muted);
  transition: transform 0.25s var(--ease), color 0.2s var(--ease);
}
.rv-faq summary:hover { color: var(--accent); }
.rv-faq details[open] summary::after { transform: rotate(45deg); color: var(--accent); }
.rv-faq details p {
  margin: 0;
  padding: 0 4px 20px;
  font-size: 14px;
  color: var(--copy);
  max-width: 640px;
}

/* ============================================================
   底部
   ============================================================ */
.rv-footer {
  margin-top: 72px;
  border-top: 1px solid var(--line);
  background: var(--surface);
}
.rv-footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 36px 24px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.rv-footer-inner > p { margin: 0; font-size: 12.5px; color: var(--muted); max-width: 420px; }
.rv-footer-links { display: flex; gap: 18px; }
.rv-footer-links span { font-size: 13px; color: var(--copy); cursor: pointer; transition: color 0.2s var(--ease); }
.rv-footer-links span:hover { color: var(--accent); }
.rv-footer-copy {
  margin: 0;
  padding: 0 24px 26px;
  text-align: center;
  font-size: 12px;
  color: var(--muted);
}

/* ---------- Toast ---------- */
.rv-toast {
  position: fixed;
  left: 50%;
  bottom: 32px;
  transform: translate(-50%, 24px);
  max-width: min(88vw, 480px);
  padding: 12px 22px;
  border-radius: 999px;
  /* R8-8：--ink 在深色主题下是浅色文字（#f4f1ff），拿它当背景就成了
     白底白字。改回深紫底 + 霓虹描边 */
  background: rgba(15, 9, 42, 0.96);
  border: 1px solid rgba(139, 92, 255, 0.55);
  color: #f4f1ff;
  font-size: 14px;
  box-shadow: 0 24px 58px rgba(3, 1, 14, 0.72), 0 0 26px rgba(139, 92, 255, 0.35);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
  z-index: 200;
}
.rv-toast.is-show { opacity: 1; transform: translate(-50%, 0); }

/* ============================================================
   响应式
   ============================================================ */
@media (max-width: 1024px) {
  .rv-grid { grid-template-columns: 1fr 1fr; }
  .rv-grid > .rv-card:last-child { grid-column: 1 / -1; }
  .rv-perks, .rv-eco { grid-template-columns: 1fr 1fr; }
  .rv-games { grid-template-columns: repeat(3, 1fr); }
  .kol-tier-list { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  /* ---------- 全局防溢出 ---------- */
  html, body { overflow-x: hidden; }
  body { font-size: 14.5px; }
  main { padding: 0 18px; }

  /* ---------- 导航 ---------- */
  .rv-nav { padding: 12px 18px; min-height: 60px; }
  .rv-nav-links { display: none; }
  .rv-nav-cta { padding: 8px 18px; font-size: 13px; }
  .rv-brand-mark { width: 30px; height: 30px; border-radius: 9px; font-size: 14px; }
  .rv-brand-copy strong { font-size: 15px; }
  .rv-brand-copy small { font-size: 10px; }

  /* ---------- 锚点偏移(sticky nav 遮挡) ---------- */
  .rv-anchor { scroll-margin-top: 76px; }

  /* ---------- Hero ---------- */
  .rv-hero { grid-template-columns: 1fr; padding: 36px 0 8px; gap: 6px; }
  .rv-hero-stage { order: -1; }
  .rv-hero-stage::before { width: 86%; }
  .rv-hero-art { width: min(72%, 280px); }
  .rv-hero h1 { font-size: 32px; letter-spacing: -0.02em; margin-bottom: 14px; }
  .rv-lede { font-size: 14.5px; margin-bottom: 20px; }
  .rv-hero-actions { flex-direction: column; align-items: stretch; }
  .rv-hero-actions .rv-btn { width: 100%; }
  .rv-hero-meta { margin-top: 16px; font-size: 12px; }

  /* ---------- 数据条 ---------- */
  .rv-stats { grid-template-columns: 1fr 1fr; margin-top: 10px; }
  .rv-stat { padding: 16px 14px 14px; }
  .rv-stat + .rv-stat { border-left: 1px solid var(--line); }
  .rv-stat:nth-child(3) { border-left: 0; }
  .rv-stat b { font-size: 26px; }
  .rv-stat > span { font-size: 12px; }
  .rv-stat small { font-size: 9px; }

  /* ---------- 表单 ---------- */
  .rv-form-section { padding: 48px 0 0; }
  .rv-form-head h2 { font-size: 26px; }
  .rv-form-head p:last-child { font-size: 13.5px; }
  .rv-form-card { padding: 24px 18px 22px; border-radius: 16px; }
  .rv-form { grid-template-columns: 1fr; gap: 16px; }
  .rv-field-wide { grid-column: auto; }
  .rv-btn-block { padding: 13px 20px; }
  .rv-success-id { flex-direction: column; gap: 6px; }

  /* ---------- 三列主区(修复移动端两列溢出) ---------- */
  .rv-grid { grid-template-columns: 1fr; padding: 48px 0 0; }
  .rv-card { padding: 22px 20px 20px; }
  .rv-card-head h3 { font-size: 15.5px; }
  .rv-metrics { gap: 6px; }
  .rv-metrics strong { font-size: 19px; }
  .rv-code-line { padding: 10px 12px; }
  .rv-code-line b { font-size: 13px; }
  .rv-wallet-row { flex-direction: column; gap: 8px; }
  .rv-wallet-row button { width: 100%; }
  .rv-tabs { flex-wrap: wrap; }
  .rv-rank-self { flex-wrap: wrap; }

  /* ---------- 深色宝箱区 ---------- */
  .rv-chest { grid-template-columns: 1fr; padding: 30px 22px; gap: 24px; margin-top: 48px; border-radius: 18px; }
  .rv-chest h2 { font-size: 23px; }
  .rv-chest-copy > p:not(.rv-eyebrow-light) { font-size: 13px; }
  .rv-chest-tools { flex-direction: column; align-items: stretch; }
  .rv-chest-tools button { width: 100%; }
  .rv-chest-art { width: min(70%, 190px); }
  .rv-chest-actions { flex-direction: column; align-items: stretch; }
  .rv-chest-actions button { width: 100%; }

  /* ---------- KOL 等级 ---------- */
  .rv-section { padding: 44px 0 0; }
  .rv-sec-head h2 { font-size: 24px; }
  .rv-sec-head p:last-child { font-size: 13.5px; }
  .kol-tier-list { grid-template-columns: 1fr 1fr; gap: 10px; }
  .kol-tier { padding: 14px 10px 12px; }
  .kol-tier-badge { width: 52px; height: 52px; }
  .kol-tier h3 { font-size: 13.5px; }
  .kol-tier li { font-size: 11px; }
  .rv-level > span { font-size: 12.5px; }

  /* ---------- KOL 权益:2 列 ---------- */
  .rv-perks { grid-template-columns: 1fr 1fr; gap: 10px; }
  .rv-perks article { padding: 16px 14px; }
  .rv-perks article > span { width: 44px; height: 44px; margin-bottom: 10px; }
  .rv-perks h3 { font-size: 14px; }
  .rv-perks p { font-size: 12px; }

  /* ---------- 游戏乐园 ---------- */
  .rv-gameverse img { height: 200px; }
  .rv-gameverse-copy b { font-size: 17px; }
  .rv-games { grid-template-columns: 1fr 1fr; gap: 10px; }
  .rv-games article { padding: 16px 10px 12px; }
  .rv-games article > span { width: 44px; height: 44px; font-size: 22px; border-radius: 13px; margin-bottom: 8px; }
  .rv-games h3 { font-size: 13px; }
  .rv-games p { font-size: 11px; }

  /* ---------- 生态预览:2 列 ---------- */
  .rv-eco { grid-template-columns: 1fr 1fr; gap: 10px; }
  .rv-eco article { padding: 20px 12px 14px; }
  .rv-eco article > img { width: 52px; height: 52px; margin-bottom: 10px; }
  .rv-eco h3 { font-size: 13.5px; }
  .rv-eco-community { grid-column: 1 / -1; }
  .rv-eco-community img { max-width: 150px; }
  .rv-eco-community p { font-size: 11.5px; }

  /* ---------- FAQ / 底部 ---------- */
  .rv-faq summary { font-size: 14px; padding: 15px 2px; }
  .rv-faq details p { font-size: 13px; }
  .rv-footer { margin-top: 48px; }
  .rv-footer-inner { flex-direction: column; align-items: flex-start; gap: 14px; padding: 28px 18px 16px; }
  .rv-footer-copy { padding: 0 18px 22px; }

  /* ---------- Toast ---------- */
  .rv-toast { bottom: 24px; max-width: calc(100vw - 32px); font-size: 13px; padding: 11px 18px; }
}

/* ---------- 超小屏(≤420px) ---------- */
@media (max-width: 420px) {
  .rv-hero-art { width: min(80%, 260px); }
  .rv-hero h1 { font-size: 29px; }
  .rv-stat b { font-size: 23px; }
  .rv-stat { padding: 14px 12px 12px; }
  .rv-metrics { grid-template-columns: 1fr 1fr; }
  .rv-code-line { flex-wrap: wrap; }
  .rv-code-line b { flex-basis: 100%; order: 2; }
  .rv-code-line button { order: 3; margin-left: auto; }
  /* 权益/生态保持 2 列(单列过长);社群卡跨整行 */
  .rv-perks { grid-template-columns: 1fr 1fr; }
  .rv-eco { grid-template-columns: 1fr 1fr; }
  .rv-eco-community { grid-column: 1 / -1; }
  .rv-gameverse img { height: 170px; }
}

/* ============================================================
   premium4 酷动效层（2026-08-11）
   倒计时 / Hero 漂浮 / 实时通知 / 3D 倾斜 / 彩带 / 悬浮按钮
   颜色全部沿用设计变量：浅色底 + 紫蓝点缀
   ============================================================ */

/* ---------- 顶部倒计时 ---------- */
.rv-topbar-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px 16px;
  flex-wrap: wrap;
}
.rv-countdown {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  font-size: 12px;
  color: var(--ink);
  letter-spacing: 0.04em;
}
.rv-cd-label { color: var(--muted); font-size: 11px; letter-spacing: 0.1em; margin-right: 2px; }
.rv-countdown b {
  min-width: 1.75em;
  text-align: center;
  padding: 1px 4px;
  border-radius: 6px;
  background: rgba(139, 92, 255, 0.16);
  color: var(--gold);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  box-shadow: inset 0 0 0 1px rgba(139, 92, 255, 0.35);
}
.rv-countdown i { font-style: normal; color: var(--muted); font-size: 11px; }
.rv-countdown.is-open { background: rgba(36, 229, 160, 0.1); }
.rv-countdown.is-open .rv-cd-label { color: var(--green); font-weight: 700; letter-spacing: 0.06em; }
.rv-countdown.is-open b, .rv-countdown.is-open i { display: none; }

/* ---------- Hero 光晕 / 漂浮装饰 ---------- */
.rv-hero-stage { z-index: 0; }
.rv-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(46px);
  pointer-events: none;
  z-index: 0;
}
.rv-glow-a {
  width: 340px; height: 340px;
  top: -40px; right: 4%;
  background: rgba(139, 92, 255, 0.16);
  animation: rv-drift 11s ease-in-out infinite;
}
.rv-glow-b {
  width: 280px; height: 280px;
  bottom: -30px; left: -6%;
  background: rgba(34, 211, 238, 0.14);
  animation: rv-drift 13s ease-in-out infinite reverse;
}
@keyframes rv-drift {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(18px, -22px, 0) scale(1.12); }
}
.rv-hero-art { z-index: 1; }
.rv-deco {
  position: absolute;
  z-index: 2;
  width: 68px;
  height: 68px;
  object-fit: contain;
  filter: drop-shadow(0 12px 22px rgba(139, 92, 255, 0.22));
  pointer-events: none;
}
.rv-deco-chest { top: 6%; right: 2%; width: 88px; height: 88px; animation: rv-float 6s ease-in-out infinite; }
.rv-deco-points { bottom: 10%; left: 5%; width: 58px; height: 58px; animation: rv-float 5.2s ease-in-out 0.6s infinite; }
.rv-deco-bolt { top: 46%; right: -2%; width: 44px; height: 44px; animation: rv-float 7s ease-in-out 1.2s infinite; }
.rv-sparkle {
  position: absolute;
  z-index: 3;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: radial-gradient(circle, #fff, var(--accent));
  opacity: 0;
  animation: rv-twinkle 3.2s ease-in-out infinite;
}
.rv-sparkle-1 { top: 12%; left: 9%; }
.rv-sparkle-2 { top: 32%; right: 10%; width: 6px; height: 6px; animation-delay: 1.1s; }
.rv-sparkle-3 { bottom: 18%; right: 24%; width: 5px; height: 5px; animation-delay: 2s; }
@keyframes rv-twinkle {
  0%, 100% { opacity: 0; transform: scale(0.6); }
  50% { opacity: 1; transform: scale(1.15); }
}

/* ---------- 今日新增 LIVE 点 ---------- */
.rv-live-dot {
  display: inline-block;
  width: 7px; height: 7px;
  margin-left: 6px;
  border-radius: 50%;
  background: var(--green);
  vertical-align: 1px;
  animation: rv-ping 1.8s ease-out infinite;
}
@keyframes rv-ping {
  0% { box-shadow: 0 0 0 0 rgba(36, 229, 160, 0.45); }
  70% { box-shadow: 0 0 0 7px rgba(36, 229, 160, 0); }
  100% { box-shadow: 0 0 0 0 rgba(36, 229, 160, 0); }
}

/* ---------- 移动端悬浮预约按钮 ---------- */
.rv-float-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: fixed;
  left: 50%;
  bottom: calc(20px + env(safe-area-inset-bottom));
  transform: translate(-50%, 130%);
  z-index: 160;
  padding: 14px 36px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(139, 92, 255, 0.4);
  visibility: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.2s var(--ease), visibility 0.35s;
}
.rv-float-cta.is-show { transform: translate(-50%, 0); visibility: visible; }
.rv-float-cta:hover { box-shadow: 0 16px 38px rgba(139, 92, 255, 0.48); }

/* ---------- 彩带（预约成功 / 开箱） ---------- */
.rv-confetti-layer {
  position: fixed;
  inset: 0;
  z-index: 300;
  pointer-events: none;
  overflow: hidden;
}
.rv-confetti-piece {
  position: absolute;
  top: -24px;
  border-radius: 2px;
  opacity: 0;
  animation: rv-confetti-fall var(--dur, 3s) var(--ease) var(--delay, 0s) forwards;
}
@keyframes rv-confetti-fall {
  0% { transform: translate3d(0, 0, 0) rotate(0deg); opacity: 1; }
  12% { opacity: 1; }
  100% { transform: translate3d(var(--x), 108vh, 0) rotate(var(--rot)); opacity: 0.6; }
}

/* ---------- 进度环 / 里程碑动效 ---------- */
.rv-ring { transition: background 0.8s var(--ease), --progress 0.8s var(--ease); }
.rv-ring.is-pop { animation: rv-ring-pop 0.55s var(--ease); }
@keyframes rv-ring-pop {
  0% { transform: scale(1); }
  45% { transform: scale(1.07); }
  100% { transform: scale(1); }
}
.rv-milestones span.is-unlocked { animation: rv-pop 0.4s var(--ease); }

/* ---------- 宝箱开箱抖动 ---------- */
.rv-chest-art.is-bursting { animation: rv-chest-burst 0.9s var(--ease); }
@keyframes rv-chest-burst {
  0% { transform: scale(1) rotate(0); }
  30% { transform: scale(1.12) rotate(-3deg); }
  55% { transform: scale(1.02) rotate(2deg); }
  70% { transform: scale(1.06) rotate(-1deg); }
  100% { transform: scale(1) rotate(0); }
}

/* ---------- 卡片 3D 倾斜 + 高光 ---------- */
.rv-card[data-tilt],
.rv-form-card[data-tilt] {
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.18s var(--ease), box-shadow 0.25s var(--ease);
}
.rv-card[data-tilt]:hover,
.rv-form-card[data-tilt]:hover {
  transform: perspective(900px) rotateX(var(--tx, 0deg)) rotateY(var(--ty, 0deg)) translateY(-3px);
  box-shadow: var(--shadow-hover);
}
.rv-card[data-tilt]::after,
.rv-form-card[data-tilt]::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(420px circle at var(--gx, 50%) var(--gy, 50%), rgba(255, 255, 255, 0.55), transparent 45%);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
  pointer-events: none;
}
.rv-card[data-tilt]:hover::after,
.rv-form-card[data-tilt]:hover::after { opacity: 1; }

/* ---------- 预约成功：打字机光标 + 徽章光环 ---------- */
.rv-success-id b.is-typing::after {
  content: "▍";
  margin-left: 1px;
  color: var(--accent);
  animation: rv-blink 0.8s steps(2) infinite;
}
@keyframes rv-blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }
.rv-success-mark { position: relative; }
.rv-success-mark::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  opacity: 0;
}
.rv-success-mark.is-celebrating::after { animation: rv-ring-expand 0.8s var(--ease) 1; }
@keyframes rv-ring-expand {
  0% { transform: scale(0.8); opacity: 0.8; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* ---------- premium4 响应式 ---------- */
@media (max-width: 768px) {
  .rv-topbar { padding: 8px 14px; }
  .rv-countdown { gap: 3px; font-size: 11.5px; padding: 3px 10px; }
  .rv-countdown b { min-width: 1.6em; padding: 0 3px; }
  .rv-deco-chest { width: 62px; height: 62px; }
  .rv-deco-points { width: 44px; height: 44px; }
  .rv-deco-bolt { display: none; }
  body.rv-float-space .rv-toast { bottom: calc(84px + env(safe-area-inset-bottom)); }
}
@media (max-width: 420px) {
  .rv-cd-label { display: none; }
  .rv-sparkle { display: none; }
  .rv-float-cta { padding: 13px 30px; font-size: 14px; }
}

/* ============================================================
   premium5 视觉升级（2026-08-11）
   Hero 面板化 / 数据条卡片化 / 玻璃徽章 / 流光按钮 / 发光表单
   ============================================================ */

/* ---------- Hero 面板：圆角 + 渐变氛围 + 投影 ---------- */
.rv-hero {
  position: relative;
  padding: 72px 48px 44px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background:
    radial-gradient(560px 320px at 84% -6%, rgba(139, 92, 255, 0.3), transparent 62%),
    radial-gradient(480px 300px at 4% 108%, rgba(34, 211, 238, 0.18), transparent 60%),
    linear-gradient(180deg, rgba(26, 15, 69, 0.9) 0%, rgba(12, 7, 36, 0.94) 100%);
  box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  overflow: hidden;
}
/* 标题入场 + 渐变流光 */
.rv-hero h1 { animation: rv-head-in 0.9s var(--ease) both; }
@keyframes rv-head-in {
  from { opacity: 0; transform: translateY(28px) scale(0.98); }
  to { opacity: 1; transform: none; }
}
.rv-hero h1 em {
  background: linear-gradient(120deg, var(--accent), var(--accent-2), var(--accent));
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: rv-shimmer 5s linear infinite;
}
@keyframes rv-shimmer { to { background-position: 220% center; } }
.rv-eyebrow { animation: rv-head-in 0.7s var(--ease) 0.1s both; }
.rv-lede { animation: rv-head-in 0.7s var(--ease) 0.22s both; }
.rv-hero-actions { animation: rv-head-in 0.7s var(--ease) 0.34s both; }
.rv-hero-meta { animation: rv-head-in 0.7s var(--ease) 0.46s both; }

/* ---------- Hero 玻璃徽章 ---------- */
.rv-chip-glass {
  position: absolute;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 15px;
  border-radius: 999px;
  background: rgba(32, 20, 78, 0.72);
  border: 1px solid rgba(140, 108, 255, 0.4);
  box-shadow: 0 12px 28px rgba(3, 1, 14, 0.5), var(--glow-purple);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-size: 12.5px;
  font-weight: 700;
  color: var(--ink);
  white-space: nowrap;
  animation: rv-float 6s ease-in-out infinite;
}
.rv-chip-glass-1 { top: 9%; left: 3%; animation-delay: 0.3s; }
.rv-chip-glass-2 { bottom: 20%; right: 1%; animation-delay: 1.1s; }
.rv-chip-glass-3 { top: 40%; left: -1%; animation-delay: 1.9s; }

/* ---------- 数据条：卡片化 + 图标 ---------- */
.rv-stats {
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 20px;
  border-top: 0;
}
.rv-stat {
  position: relative;
  padding: 20px 18px 16px;
  border: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.rv-stat::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  opacity: 0;
  transition: opacity 0.25s var(--ease);
}
.rv-stat:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.rv-stat:hover::before { opacity: 1; }
.rv-stat + .rv-stat { border-left: 1px solid var(--line); }
.rv-stat img {
  display: block;
  width: 38px;
  height: 38px;
  object-fit: contain;
  margin-bottom: 10px;
  filter: drop-shadow(0 6px 12px rgba(139, 92, 255, 0.18));
  transition: transform 0.3s var(--ease);
}
.rv-stat:hover img { transform: scale(1.12) rotate(-4deg); }
.rv-stat b {
  background: linear-gradient(120deg, var(--ink), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- 按钮：流光扫过 ---------- */
.rv-btn-primary {
  position: relative;
  overflow: hidden;
}
.rv-btn-primary::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 38%;
  left: -60%;
  transform: skewX(-20deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.38), transparent);
  animation: rv-shine-sweep 3.6s ease-in-out infinite;
  pointer-events: none;
}
@keyframes rv-shine-sweep {
  0% { left: -60%; }
  55%, 100% { left: 135%; }
}
.rv-nav-cta {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 6px 16px rgba(139, 92, 255, 0.26);
}
.rv-nav-cta:hover { background: linear-gradient(135deg, var(--accent-2), var(--accent)); }

/* ---------- 表单卡：旋转渐变发光边框 ---------- */
@property --rv-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}
.rv-form-card[data-tilt] {
  border: 1px solid transparent;
  background:
    linear-gradient(var(--surface), var(--surface)) padding-box,
    conic-gradient(
      from var(--rv-angle),
      rgba(139, 92, 255, 0.08),
      rgba(139, 92, 255, 0.75),
      rgba(34, 211, 238, 0.75),
      rgba(139, 92, 255, 0.08)
    ) border-box;
  animation: rv-border-spin 6s linear infinite;
  box-shadow: var(--shadow-md);
}
@keyframes rv-border-spin { to { --rv-angle: 360deg; } }

/* ---------- 区块标题：渐变强调 ---------- */
.rv-sec-head h2 {
  display: inline-block;
  background: linear-gradient(120deg, var(--ink) 30%, var(--accent) 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- premium5 响应式 ---------- */
@media (max-width: 768px) {
  .rv-hero { padding: 36px 22px 30px; border-radius: 20px; }
  .rv-stats { grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 14px; }
  .rv-stat { padding: 14px 12px 12px; }
  .rv-stat img { width: 30px; height: 30px; margin-bottom: 6px; }
  .rv-chip-glass { font-size: 11px; padding: 6px 11px; }
  .rv-chip-glass-3 { display: none; }
  .rv-deco-chest { width: 56px; height: 56px; }
  .rv-deco-points { width: 40px; height: 40px; }
}

/* ============================================================
   premium6 大改版（2026-08-11）
   全屏 Hero 画报 / 超大排版 / 网格光效 / 权益滚动条 /
   悬浮胶囊导航 / 表单双栏 / 卡片系统升级
   ============================================================ */

/* ---------- 顶部滚动进度条 ---------- */
.rv-scrollbar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  z-index: 400;
  background: linear-gradient(90deg, var(--accent), var(--accent-2), var(--accent));
  box-shadow: 0 0 12px rgba(139, 92, 255, 0.55);
  transition: width 0.12s linear;
  pointer-events: none;
}

/* ---------- 导航：悬浮胶囊 ---------- */
.rv-nav {
  top: 12px;
  margin: 12px auto 0;
  padding: 10px 20px;
  border-radius: 999px;
  background: rgba(14, 8, 38, 0.78);
  border: 1px solid var(--line);
  box-shadow: 0 10px 34px rgba(3, 1, 14, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* ---------- Hero：全屏画报 ---------- */
.rv-hero {
  margin-inline: calc(50% - 50vw);
  padding: 100px max(24px, calc(50vw - 580px)) 72px;
  min-height: 86vh;
  border-radius: 0 0 36px 36px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(900px 460px at 80% -4%, rgba(139, 92, 255, 0.34), transparent 62%),
    radial-gradient(760px 420px at 2% 106%, rgba(34, 211, 238, 0.2), transparent 60%),
    linear-gradient(180deg, rgba(13, 8, 40, 0.6) 0%, rgba(8, 5, 26, 0.9) 100%);
}
/* 网格科技线（向中心淡出） */
.rv-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(139, 92, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139, 92, 255, 0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse 92% 72% at 58% 42%, #000 25%, transparent 76%);
  mask-image: radial-gradient(ellipse 92% 72% at 58% 42%, #000 25%, transparent 76%);
}
.rv-hero-copy, .rv-hero-stage { position: relative; z-index: 1; }

/* 超大排版 */
.rv-hero h1 {
  margin: 0 0 22px;
  font-size: clamp(46px, 6.6vw, 92px);
  line-height: 1.04;
  letter-spacing: -0.045em;
}
.rv-eyebrow { font-size: 12px; letter-spacing: 0.18em; }
.rv-lede { margin-bottom: 30px; font-size: 17px; max-width: 520px; line-height: 1.75; }
.rv-hero-actions .rv-btn { padding: 16px 34px; font-size: 16px; }
.rv-hero-meta { margin-top: 26px; font-size: 13.5px; }
.rv-hero-art { width: min(100%, 520px); }

/* ---------- 权益滚动条 ---------- */
.rv-marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: rgba(18, 10, 48, 0.72);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.rv-marquee-track {
  display: flex;
  width: max-content;
  animation: rv-marquee 30s linear infinite;
}
.rv-marquee:hover .rv-marquee-track { animation-play-state: paused; }
.rv-marquee-group {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 15px 0;
}
.rv-marquee-group span {
  display: inline-flex;
  align-items: center;
  gap: 30px;
  padding-right: 30px;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--copy);
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.rv-marquee-group span::after {
  content: "✦";
  color: var(--accent);
  font-size: 11px;
}
@keyframes rv-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- 数据条：更大更重 ---------- */
.rv-stats { gap: 18px; margin-top: 28px; }
.rv-stat {
  padding: 26px 22px 20px;
  border-radius: 22px;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 2px 10px rgba(3, 1, 14, 0.5);
}
.rv-stat img { width: 44px; height: 44px; margin-bottom: 12px; }
.rv-stat b { font-size: 40px; }

/* ---------- 我的 WOW 积分（R8-4：客户说积分看不到、不好找） ---------- */
.rv-mine {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 18px;
  margin-top: 18px;
  padding: 20px 24px;
  border-radius: 22px;
  border: 1px solid rgba(255, 210, 94, 0.34);
  background:
    radial-gradient(120% 160% at 0% 0%, rgba(255, 210, 94, 0.16), transparent 60%),
    linear-gradient(180deg, rgba(32, 21, 74, 0.92), rgba(16, 10, 44, 0.95));
  box-shadow: 0 10px 30px rgba(3, 1, 14, 0.5);
}
.rv-mine-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 210, 94, 0.9);
  letter-spacing: 0.02em;
}
.rv-mine-num {
  display: block;
  margin: 2px 0 4px;
  font-size: 40px;
  font-weight: 900;
  line-height: 1.05;
  color: #ffd36b;
  font-variant-numeric: tabular-nums;
}
.rv-mine-main small { font-size: 12.5px; color: var(--copy); }
.rv-mine-side { display: flex; gap: 26px; flex-wrap: wrap; }
.rv-mine-side > div { text-align: center; }
.rv-mine-side span { display: block; font-size: 12px; color: var(--muted); }
.rv-mine-side b {
  display: block;
  margin: 2px 0 1px;
  font-size: 24px;
  font-weight: 800;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.rv-mine-side i { font-style: normal; font-size: 11px; color: var(--muted); }
.rv-mine-cta { white-space: nowrap; }
.rv-mine-cta.is-ok {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--line);
  box-shadow: none;
  color: var(--copy);
}
@media (max-width: 720px) {
  .rv-mine {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    padding: 18px 16px;
    text-align: left;
  }
  .rv-mine-num { font-size: 34px; }
  .rv-mine-side { justify-content: flex-end; gap: 14px 18px; }
  /* 现金红包第三个格子：窄屏换行到整行，数字别被挤扁 */
  .rv-mine-side > div:last-child { flex: 1 0 100%; justify-content: flex-end; text-align: right; }
  .rv-mine-cta { grid-column: 1 / -1; width: 100%; justify-content: center; }
}

/* ---------- 表单区：双栏布局 ---------- */
.rv-form-section { padding: 104px 0 8px; }
.rv-form-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: start;
}
.rv-form-side { position: sticky; top: 120px; padding-top: 6px; }
.rv-form-side h2 {
  margin: 0 0 12px;
  font-size: clamp(30px, 3.4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
}
.rv-form-side > p:last-of-type { margin: 0; color: var(--copy); font-size: 14.5px; max-width: 400px; }
.rv-steps {
  list-style: none;
  margin: 30px 0 0;
  padding: 0;
}
.rv-steps li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px dashed var(--line);
}
.rv-steps li:last-child { border-bottom: 0; }
.rv-steps b {
  font-size: 24px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  flex: 0 0 auto;
  width: 46px;
}
.rv-steps strong { display: block; font-size: 15.5px; font-weight: 700; }
.rv-steps small { display: block; margin-top: 2px; font-size: 12.5px; color: var(--muted); }
.rv-side-points {
  list-style: none;
  margin: 26px 0 0;
  padding: 0;
  display: grid;
  gap: 11px;
}
.rv-side-points li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--copy);
}
.rv-side-points li::before {
  content: "✓";
  display: grid;
  place-items: center;
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: rgba(36, 229, 160, 0.12);
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
}
.rv-form-card { padding: 44px 44px 38px; border-radius: 22px; }

/* ---------- 三列卡：卡片系统升级 ---------- */
.rv-grid { padding: 104px 0 8px; gap: 22px; }
.rv-card {
  position: relative;
  padding: 32px 28px 26px;
  border-radius: 22px;
  border: 1px solid var(--line);
  overflow: hidden;
}
.rv-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 22px 22px 0 0;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  opacity: 0;
  transition: opacity 0.25s var(--ease);
}
.rv-card:hover::before { opacity: 1; }

/* ---------- 区块节奏 ---------- */
.rv-section { padding: 104px 0 8px; }
.rv-sec-head { margin-bottom: 40px; }
.rv-sec-head h2 { font-size: clamp(28px, 3.6vw, 40px); letter-spacing: -0.03em; }
.rv-sec-head p:last-child { font-size: 15px; }
.rv-perks article { border-radius: 20px; }
.rv-eco article { border-radius: 20px; }
.rv-games article { border-radius: 16px; }

/* ---------- premium6 响应式 ---------- */
@media (max-width: 1024px) {
  .rv-form-layout { grid-template-columns: 1fr; gap: 36px; }
  .rv-form-side { position: static; }
  .rv-form-side h2 { font-size: 30px; }
}
@media (max-width: 768px) {
  .rv-nav { top: 8px; margin: 8px auto 0; padding: 8px 16px; border-radius: 999px; }
  .rv-hero {
    margin-inline: calc(50% - 50vw);
    padding: 56px 18px 44px;
    min-height: 0;
    border-radius: 0 0 24px 24px;
  }
  .rv-hero h1 { font-size: 38px; }
  .rv-lede { font-size: 15px; }
  .rv-hero-actions .rv-btn { padding: 14px 24px; font-size: 15px; }
  .rv-hero-art { width: min(100%, 300px); }
  .rv-stats { gap: 10px; }
  .rv-stat { padding: 16px 12px 14px; }
  .rv-stat b { font-size: 26px; }
  .rv-stat img { width: 32px; height: 32px; }
  .rv-marquee-group span { font-size: 12.5px; gap: 20px; padding-right: 20px; }
  .rv-form-section { padding: 72px 0 0; }
  .rv-form-card { padding: 26px 18px 24px; border-radius: 18px; }
  .rv-grid { padding: 72px 0 0; }
  .rv-section { padding: 72px 0 0; }
  .rv-steps li { padding: 15px 0; }
}

/* ============================================================
   premium7 钱包签名预约（2026-08-11）
   防假邮箱羊毛：钱包为预约必填，连接钱包签名验证身份
   ============================================================ */

.rv-wallet-box {
  display: flex;
  gap: 10px;
}
.rv-wallet-box .rv-input { flex: 1; min-width: 0; }
.rv-wallet-connect {
  flex: 0 0 auto;
  padding: 0 22px;
  border: 0;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  font-size: 13.5px;
  font-weight: 700;
  font-family: var(--font);
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 6px 16px rgba(139, 92, 255, 0.28);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.rv-wallet-connect:hover { transform: translateY(-1px); box-shadow: 0 10px 22px rgba(139, 92, 255, 0.36); }
#r-wallet-status.is-ok { color: var(--green); font-weight: 600; }

/* 成功视图：积分到账状态 */
.rv-credit-status {
  margin: 0 0 20px;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  background: rgba(245, 158, 11, 0.1);
  color: #b45309;
  font-size: 13.5px;
  font-weight: 600;
}
.rv-credit-status.is-ok {
  background: rgba(36, 229, 160, 0.1);
  color: var(--green);
}

@media (max-width: 768px) {
  .rv-wallet-box { flex-direction: column; }
  .rv-wallet-connect { padding: 13px 18px; width: 100%; }
}

/* ==========================================================================
   R7（2026-08-11）邀请体系升级：下一目标 / 里程碑 / 直推列表 / 奖池 / 海报
   ========================================================================== */

/* 身份 chip：已连接钱包时转绿 */
.rv-card-head [data-kol-identity] {
  background: rgba(148, 163, 184, 0.14);
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}
.rv-card-head [data-kol-identity].is-ok {
  background: rgba(36, 229, 160, 0.12);
  color: var(--green);
}

/* ---------- 下一目标进度 ---------- */
.rv-next-goal {
  margin-top: 16px;
  padding: 14px 16px 16px;
  border: 1px dashed rgba(139, 92, 255, 0.28);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(139, 92, 255, 0.05), rgba(34, 211, 238, 0.04));
}
.rv-next-goal-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}
.rv-next-goal-head span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--accent);
  text-transform: uppercase;
}
.rv-next-goal-head b {
  font-size: 20px;
  font-weight: 900;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.rv-next-goal-head b em { font-style: normal; color: var(--accent); }
.rv-next-goal-head b i { font-style: normal; color: var(--muted); font-size: 15px; }
.rv-goal-bar {
  position: relative;
  height: 10px;
  margin: 10px 0 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}
.rv-goal-bar i {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transition: width 0.7s var(--ease);
}
.rv-next-goal-copy {
  margin: 0;
  font-size: 13.5px;
  color: var(--copy);
}
.rv-next-goal-copy b { color: var(--ink); }

/* ---------- 里程碑时间轴（R8-2 轨道式，按客户参考图重做） ---------- */
.rv-milestone-track {
  display: grid;
  grid-auto-flow: column;
  /* 列宽两值交替：节点 / 连线（DOM 顺序是 节点,连线,节点,连线…）。
     只写一个值时连线也会拿到整列宽度，把节点挤出屏幕 */
  grid-auto-columns: minmax(96px, 1fr) 18px;
  align-items: start;
  gap: 4px;
  padding: 14px 2px 18px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
}
/* 节点之间的轨道连线 */
.rv-ms-link {
  display: block;
  height: 3px;
  margin-top: 30px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}
.rv-ms-link[data-state="done"] {
  background: linear-gradient(90deg, var(--green), rgba(36, 229, 160, 0.55));
  box-shadow: 0 0 8px rgba(36, 229, 160, 0.5);
}
.rv-ms-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 14px 8px 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(28, 18, 68, 0.7), rgba(15, 9, 42, 0.85));
  box-shadow: var(--shadow-sm);
  scroll-snap-align: start;
  text-align: center;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
/* 图标圆形底座（礼盒/勾/锁） */
.rv-ms-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 5px;
  border-radius: 50%;
  background: rgba(139, 92, 255, 0.14);
  box-shadow: inset 0 0 0 1px rgba(139, 92, 255, 0.3);
  font-size: 20px;
  line-height: 1;
}
.rv-ms-item b { font-size: 15px; font-weight: 800; color: var(--ink); }
.rv-ms-item small { font-size: 12px; color: var(--copy); }
.rv-ms-item > i {
  font-style: normal;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--muted);
}
/* 已领取：绿勾 + 绿色圆底 + 连线已变绿 */
.rv-ms-item.is-claimed {
  border-color: rgba(36, 229, 160, 0.45);
  background: linear-gradient(180deg, rgba(36, 229, 160, 0.1), rgba(15, 9, 42, 0.85));
}
.rv-ms-item.is-claimed .rv-ms-icon {
  background: var(--green);
  color: #06281c;
  font-weight: 900;
  box-shadow: 0 0 14px rgba(36, 229, 160, 0.55);
}
.rv-ms-item.is-claimed > i { color: var(--green); }
/* 可领取：金色呼吸光效 */
.rv-ms-item.is-claimable {
  border-color: rgba(255, 210, 94, 0.6);
  background: linear-gradient(180deg, rgba(255, 210, 94, 0.16), rgba(15, 9, 42, 0.85));
  box-shadow: 0 10px 26px rgba(255, 159, 46, 0.24);
}
.rv-ms-item.is-claimable .rv-ms-icon {
  background: linear-gradient(135deg, rgba(255, 210, 94, 0.3), rgba(255, 159, 46, 0.18));
  box-shadow: inset 0 0 0 1px rgba(255, 210, 94, 0.55), 0 0 16px rgba(255, 210, 94, 0.5);
  animation: rv-ms-breathe 1.9s ease-in-out infinite;
}
.rv-ms-item.is-claimable > i { color: var(--gold); }
@keyframes rv-ms-breathe {
  50% { box-shadow: inset 0 0 0 1px rgba(255, 210, 94, 0.55), 0 0 30px rgba(255, 210, 94, 0.85); }
}
/* 当前目标节点：放大 + 高亮进度 */
.rv-ms-item.is-current {
  transform: scale(1.06);
  border-color: rgba(139, 92, 255, 0.7);
  box-shadow: var(--glow-purple);
}
.rv-ms-item.is-current > i { color: var(--accent-2); font-weight: 800; }
/* 未达成：灰 + 锁 */
.rv-ms-item.is-locked { opacity: 0.72; }
.rv-ms-item.is-locked .rv-ms-icon { background: rgba(255, 255, 255, 0.06); box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14); }
/* 整组卡片统一宽度，避免轨道连线长短不齐（移动端在 720px 断点内改为 0） */
.rv-milestone-track .rv-ms-item { min-width: 96px; }

.rv-milestone-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 4px;
}
.rv-milestone-actions small { font-size: 13px; color: var(--copy); }

/* ---------- 我的直推好友 ---------- */
.rv-invitees {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.rv-invitees-head,
.rv-invitee-row {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr) minmax(0, 1.2fr) 78px;
  gap: 10px;
  align-items: center;
  padding: 12px 18px;
}
.rv-invitees-head {
  background: rgba(255, 255, 255, 0.045);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--muted);
}
.rv-invitee-row {
  border-top: 1px solid var(--line);
  font-size: 13.5px;
  color: var(--copy);
}
.rv-invitee-row:hover { background: rgba(139, 92, 255, 0.03); }
.rv-invitee-who {
  font-weight: 700;
  color: var(--ink);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.rv-invitee-row b {
  justify-self: end;
  padding: 2px 9px;
  border-radius: 999px;
  background: rgba(36, 229, 160, 0.12);
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
}
.rv-invitees-body .invite-record-empty { padding: 30px 18px; }

/* ---------- 宝箱区补充 ---------- */
.rv-chest-paths {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin: 18px 0 4px;
}
.rv-chest-paths > div {
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.07);
}
.rv-chest-paths b { display: block; font-size: 15px; color: #fff; }
.rv-chest-paths span { font-size: 12.5px; color: rgba(255, 255, 255, 0.72); }
/* 现金池注资前的主区提示（R8-2 方案 C） */
.rv-chest-note {
  margin: 12px 0 0;
  padding: 8px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255, 210, 94, 0.3);
  background: rgba(255, 210, 94, 0.08);
  font-size: 12.5px;
  color: rgba(255, 210, 94, 0.85);
}

/* R8-3：开箱积分进度（我的积分 / 300） */
.rv-open-progress { margin: 12px auto 6px; max-width: 260px; }
.rv-open-progress-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 6px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.72);
}
.rv-open-progress-head b {
  font-size: 13px;
  color: #ffd36b;
  font-variant-numeric: tabular-nums;
}
.rv-open-progress-head em,
.rv-open-progress-head i { font-style: normal; }
.rv-open-progress .rv-goal-bar {
  background: rgba(255, 255, 255, 0.18);
  margin: 0;
}

/* ---------- 通用弹窗（奖池 / 海报） ---------- */
body.rv-modal-open { overflow: hidden; }
.rv-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.rv-modal[hidden] { display: none; }
.rv-modal-mask {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: rgba(4, 2, 16, 0.78);
  backdrop-filter: blur(4px);
}
.rv-modal-card {
  position: relative;
  z-index: 2;
  width: min(720px, 100%);
  max-height: min(88vh, 900px);
  overflow-y: auto;
  padding: 28px 26px 24px;
  border-radius: 22px;
  /* 深色下弹窗必须是不透明卡，用 --surface 会透出底层内容 */
  border: 1px solid var(--line-strong);
  background:
    radial-gradient(600px 300px at 88% -10%, rgba(139, 92, 255, 0.22), transparent 62%),
    linear-gradient(180deg, #1b1046 0%, #120a34 100%);
  box-shadow: 0 30px 70px rgba(2, 1, 10, 0.75), var(--glow-purple);
  animation: rv-modal-in 0.28s var(--ease);
}
@keyframes rv-modal-in {
  from { opacity: 0; transform: translateY(14px) scale(0.98); }
  to { opacity: 1; transform: none; }
}
.rv-modal-card h3 { margin: 4px 0 16px; font-size: 24px; }
.rv-modal-card h4 {
  margin: 22px 0 10px;
  font-size: 15px;
  color: var(--ink);
}
.rv-modal-close {
  position: absolute;
  z-index: 3;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--copy);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}
.rv-modal-close:hover { color: var(--ink); border-color: var(--muted); }

/* ---------- 开箱奖励揭晓（R8-9） ---------- */
.rv-result-card {
  max-width: 420px;
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 34px 28px 30px;
}
/* 金色径向光晕 + 旋转光柱 */
.rv-result-card::before {
  content: "";
  position: absolute;
  inset: -40% -30%;
  background:
    radial-gradient(60% 50% at 50% 38%, rgba(255, 210, 94, 0.32), transparent 70%),
    radial-gradient(45% 40% at 50% 62%, rgba(139, 92, 255, 0.22), transparent 72%);
  pointer-events: none;
}
.rv-result-rays {
  position: absolute;
  inset: -35%;
  background: repeating-conic-gradient(
    from 0deg,
    rgba(255, 210, 94, 0.14) 0deg 8deg,
    transparent 8deg 22deg
  );
  animation: rv-rays-spin 26s linear infinite;
  pointer-events: none;
  opacity: 0.8;
}
@keyframes rv-rays-spin { to { transform: rotate(360deg); } }
.rv-result-card > * { position: relative; }
.rv-result-card .rv-modal-close { position: absolute; top: 10px; right: 10px; }
.rv-result-amount {
  margin: 6px 0 2px;
  font-size: 58px;
  font-weight: 900;
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
  opacity: 0;
  transform: scale(0.6) translateY(10px);
}
.rv-result-amount.is-in { animation: rv-result-pop 0.7s var(--ease) forwards; }
.rv-result-amount.is-cash {
  color: #ffe89a;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: none;
  filter: drop-shadow(0 4px 22px rgba(255, 210, 94, 0.55));
}
.rv-result-amount.is-points {
  color: var(--accent-2);
  text-shadow: 0 0 26px rgba(34, 211, 238, 0.55);
}
@keyframes rv-result-pop {
  0% { opacity: 0; transform: scale(0.6) translateY(10px); }
  55% { opacity: 1; transform: scale(1.12) translateY(-2px); }
  75% { transform: scale(0.97); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}
.rv-result-desc {
  font-size: 15px;
  font-weight: 800;
  color: var(--ink);
}
.rv-result-sub {
  margin-top: 8px;
  font-size: 12.5px;
  color: var(--copy);
}

/* ---------- 我的现金红包（R8-10） ---------- */
.rv-mine-cash { cursor: pointer; border-radius: 12px; padding: 2px 10px; margin: -2px -10px; transition: background 0.2s var(--ease); }
.rv-mine-cash:hover { background: rgba(255, 210, 94, 0.08); }
.rv-cash-card { max-width: 460px; }
.rv-cash-balance {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 16px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 210, 94, 0.35);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255, 210, 94, 0.14), rgba(139, 92, 255, 0.1));
}
.rv-cash-balance span { font-size: 13px; color: var(--copy); }
.rv-cash-balance b {
  font-size: 32px;
  font-weight: 900;
  color: #ffe89a;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 2px 12px rgba(255, 210, 94, 0.4));
  font-variant-numeric: tabular-nums;
}
.rv-cash-form { display: grid; gap: 12px; }
.rv-cash-form label { display: grid; gap: 6px; font-size: 12.5px; color: var(--muted); }
.rv-cash-form .rv-input,
.rv-cash-form input {
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(8, 5, 26, 0.6);
  color: var(--ink);
  font: inherit;
}
.rv-cash-form input:focus-visible { border-color: var(--accent); outline: none; }
.rv-cash-form .rv-btn { min-height: 44px; margin-top: 4px; }
.rv-cash-rule {
  margin: 12px 0 0;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(139, 92, 255, 0.08);
  font-size: 12px;
  line-height: 1.7;
  color: var(--copy);
}
.rv-cash-records { margin-top: 18px; }
.rv-cash-records h4 {
  margin: 0 0 10px;
  font-size: 13px;
  color: var(--muted);
}
.rv-cash-record {
  display: grid;
  gap: 4px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}
.rv-cash-record:last-child { border-bottom: 0; }
.rv-cash-record > div { display: flex; align-items: center; justify-content: space-between; }
.rv-cash-record b { font-size: 15px; font-weight: 800; color: var(--ink); font-variant-numeric: tabular-nums; }
.rv-cash-record small { font-size: 11.5px; color: var(--muted); }
.rv-cash-record span.is-pending { color: var(--gold); font-weight: 700; font-size: 12px; }
.rv-cash-record span.is-approved { color: var(--accent-2); font-weight: 700; font-size: 12px; }
.rv-cash-record span.is-rejected { color: var(--danger, #ff8291); font-weight: 700; font-size: 12px; }
.rv-cash-record span.is-paid { color: var(--green); font-weight: 700; font-size: 12px; }
.rv-cash-empty { margin: 0; padding: 8px 0; color: var(--muted); font-size: 12.5px; }
/* 揭晓弹窗里的跳转按钮 */
.rv-result-card .rv-btn { margin-top: 16px; }

/* ---------- 连接钱包引导弹窗（R8-6） ---------- */
.rv-guide-card { max-width: 460px; }
.rv-guide-lead { margin: 0 0 16px; font-size: 13.5px; line-height: 1.75; color: var(--copy); }
.rv-guide-lead b { color: var(--ink); }
.rv-guide-steps {
  display: grid;
  gap: 10px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}
.rv-guide-steps li {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--copy);
}
.rv-guide-steps b {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  background: rgba(139, 92, 255, 0.18);
  color: var(--accent-2);
  font-size: 12px;
  font-weight: 800;
}
.rv-guide-copy { display: grid; gap: 10px; margin-bottom: 16px; }
.rv-guide-copy .rv-input {
  font-size: 12.5px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}
.rv-guide-or { margin: 0 0 10px; font-size: 12px; color: var(--muted); }
.rv-guide-apps { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 14px; }
.rv-guide-apps .rv-btn { min-height: 42px; font-size: 13px; }
.rv-guide-note {
  margin: 0;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(139, 92, 255, 0.08);
  font-size: 12px;
  line-height: 1.6;
  color: var(--copy);
}
@media (max-width: 420px) {
  .rv-guide-apps { grid-template-columns: 1fr; }
}

/* ---------- 奖池弹窗 ---------- */
.rv-pool-summary {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
}
.rv-pool-summary > div {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(255, 211, 107, 0.14), var(--surface));
  text-align: center;
}
.rv-pool-summary b {
  display: block;
  font-size: 24px;
  font-weight: 900;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.rv-pool-summary span { font-size: 12.5px; color: var(--copy); }
.rv-pool-note {
  margin: 14px 0 0;
  padding: 11px 14px;
  border-radius: var(--radius-md);
  background: var(--accent-soft);
  font-size: 13px;
  color: var(--accent);
}
.rv-pool-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(148px, 1fr));
  gap: 10px;
}
.rv-pool-item {
  padding: 12px 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
}
.rv-pool-item b { display: block; font-size: 14px; color: var(--ink); }
.rv-pool-item span { font-size: 12px; color: var(--copy); }
.rv-pool-tiers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 8px;
}
.rv-pool-tier {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
  font-size: 13px;
  font-variant-numeric: tabular-nums;
}
.rv-pool-tier b { color: var(--ink); font-weight: 800; }
.rv-pool-tier span { color: var(--copy); }
.rv-pool-tier i { font-style: normal; color: var(--muted); }
.rv-pool-foot {
  margin: 16px 0 0;
  font-size: 12px;
  color: var(--muted);
}

/* ---------- 邀请海报弹窗 ---------- */
.rv-modal-poster { width: min(430px, 100%); text-align: center; }
.rv-poster-stage {
  margin: 6px auto 16px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.rv-poster-stage canvas {
  display: block;
  width: 100%;
  height: auto;
}
.rv-poster-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}
.rv-poster-tip {
  display: block;
  margin-top: 12px;
  font-size: 12px;
  color: var(--muted);
}

@media (max-width: 720px) {
  .rv-invitees-head { display: none; }
  .rv-invitee-row {
    grid-template-columns: minmax(0, 1fr) 70px;
    grid-template-areas: "who reward" "country time";
    row-gap: 2px;
  }
  .rv-invitee-row .rv-invitee-who { grid-area: who; }
  .rv-invitee-row b { grid-area: reward; }
  .rv-invitee-row span:nth-child(2) { grid-area: country; font-size: 12px; }
  .rv-invitee-row span:nth-child(3) { grid-area: time; font-size: 12px; text-align: right; }
  .rv-modal-card { padding: 24px 18px 20px; }
  /* R8-3：移动端里程碑节点压窄，390px 一屏看到 6 个（原 120px 只能看到 2 个），
     右侧渐隐暗示还能往右滑 */
  .rv-milestone-track {
    grid-auto-columns: minmax(52px, 1fr) 10px;
    gap: 2px;
    mask-image: linear-gradient(90deg, #000 0, #000 93%, transparent 100%);
  }
  .rv-milestone-track .rv-ms-item { min-width: 0; gap: 2px; padding: 10px 2px 9px; }
  .rv-ms-icon { width: 32px; height: 32px; margin-bottom: 3px; font-size: 15px; }
  .rv-ms-item b { font-size: 12px; }
  .rv-ms-item small { font-size: 10px; }
  .rv-ms-item > i { font-size: 9.5px; }
  .rv-ms-link { margin-top: 23px; }
}

/* 桌面端悬浮 CTA 移到右下角，避免遮挡「领取宝箱」等居中按钮（R7） */
@media (min-width: 860px) {
  .rv-float-cta {
    left: auto;
    right: 26px;
    transform: translate(0, 130%);
  }
  .rv-float-cta.is-show { transform: translate(0, 0); }
}

/* 奖池弹窗打开时隐藏悬浮 CTA；小屏摘要数字缩小一档（R7 收尾） */
body.rv-modal-open .rv-float-cta { visibility: hidden; }
@media (max-width: 720px) {
  .rv-pool-summary b { font-size: 19px; }
  .rv-pool-summary > div { padding: 12px 10px; }
}

/* 宝箱区叠加海报底纹（R7 素材，2026-08-12）：星空粒子 + 底部网格 */
.rv-chest {
  background:
    radial-gradient(900px 420px at 88% -10%, rgba(34, 211, 238, 0.3), transparent 60%),
    radial-gradient(700px 380px at -10% 110%, rgba(139, 92, 255, 0.36), transparent 55%),
    linear-gradient(135deg, rgba(23, 19, 54, 0.86), rgba(35, 32, 92, 0.86)),
    url("./images/ui/poster-bg.webp") center / cover no-repeat,
    linear-gradient(135deg, #171336, #23205c);
}

/* ============================================================
   NEON GENESIS 模块（2026-08-12 大改）
   参考客户设计稿：KOL 面板 / 活动横幅 / 四档申请卡 /
   工资额度 + 推广奖励 / 推广数据 + 工具 / 订单贡献 + 成长榜 /
   分享横幅 / 底部固定导航
   共用：.rv-neon-card（深紫玻璃 + 霓虹描边 + 顶部流光）
   ============================================================ */

.rv-neon-card {
  position: relative;
  border-radius: 20px;
  border: 1px solid var(--line);
  background:
    radial-gradient(620px 300px at 88% -20%, rgba(139, 92, 255, 0.2), transparent 62%),
    linear-gradient(180deg, rgba(36, 22, 88, 0.72) 0%, rgba(18, 11, 48, 0.82) 100%);
  box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  overflow: hidden;
}
/* 顶部一条霓虹流光，卡片的统一识别符 */
.rv-neon-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139, 92, 255, 0.9), rgba(34, 211, 238, 0.7), transparent);
  opacity: 0.85;
}
.rv-neon-card > * { position: relative; z-index: 1; }

/* 金色数字：设计稿里所有关键数值都是金色渐变 */
.rv-gold-num {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-variant-numeric: tabular-nums;
  filter: drop-shadow(0 2px 10px rgba(255, 160, 46, 0.35));
}
.rv-neon-num {
  background: var(--grad-neon);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-variant-numeric: tabular-nums;
}
/* 占位符 "—" 上的渐变会糊成一条色块，退回纯色 */
.rv-gold-num.is-dash,
.rv-neon-num.is-dash {
  background: none;
  color: var(--muted);
  -webkit-text-fill-color: var(--muted);
  filter: none;
}

/* 金色按钮（设计稿「立即推广 / 立即领取」） */
.rv-btn-gold {
  background: var(--grad-gold);
  color: #3a2408;
  font-weight: 800;
  box-shadow: 0 10px 26px rgba(255, 159, 46, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}
.rv-btn-gold:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(255, 159, 46, 0.42), var(--glow-gold); }

/* ---------- ① 我的 KOL 面板 ---------- */
.rv-kolpanel {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 26px;
  margin-top: 30px;
  padding: 24px 26px;
}
.rv-kp-avatar {
  position: relative;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(139, 92, 255, 0.28), rgba(34, 211, 238, 0.2));
  box-shadow: 0 0 0 2px rgba(139, 92, 255, 0.55), var(--glow-purple);
}
.rv-kp-avatar img { width: 74px; height: 74px; border-radius: 50%; object-fit: cover; }
.rv-kp-avatar .rv-kp-crown {
  position: absolute;
  bottom: -6px;
  right: -6px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 17px;
  background: var(--grad-gold);
  box-shadow: 0 6px 16px rgba(255, 159, 46, 0.5);
}

.rv-kp-main { min-width: 0; }
.rv-kp-name {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.rv-kp-name h2 { margin: 0; font-size: 26px; font-weight: 800; letter-spacing: -0.01em; }
.rv-kp-tier {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 13px;
  border-radius: 999px;
  border: 1px solid rgba(255, 210, 94, 0.45);
  background: linear-gradient(135deg, rgba(255, 210, 94, 0.18), rgba(255, 159, 46, 0.12));
  color: var(--gold);
  font-size: 12.5px;
  font-weight: 700;
}
.rv-kp-tier.is-plain {
  border-color: var(--line-strong);
  background: rgba(139, 92, 255, 0.14);
  color: #c9bcff;
}
.rv-kp-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin: 8px 0 14px;
  font-size: 13px;
  color: var(--copy);
}
.rv-kp-meta b { color: var(--ink); font-variant-numeric: tabular-nums; letter-spacing: 0.04em; }
.rv-kp-state { display: inline-flex; align-items: center; gap: 6px; color: var(--green); font-weight: 700; }
.rv-kp-state::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(36, 229, 160, 0.22);
  animation: rv-pulse-dot 1.8s ease-in-out infinite;
}
@keyframes rv-pulse-dot {
  50% { box-shadow: 0 0 0 7px rgba(36, 229, 160, 0); }
}

.rv-kp-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border-radius: 14px;
  overflow: hidden;
  background: var(--line);
}
.rv-kp-stats > div {
  padding: 11px 14px;
  background: rgba(12, 7, 34, 0.66);
}
/* 只有标签 span 占整行；数值里的 span（data-kolp-*）保持内联 */
.rv-kp-stats > div > span { display: block; font-size: 11.5px; color: var(--muted); }
.rv-kp-stats b { font-size: 20px; font-weight: 800; }
.rv-kp-stats b i { font-style: normal; font-size: 12px; margin-left: 2px; color: var(--gold); }
.rv-kp-cta { display: grid; gap: 10px; justify-items: stretch; }
.rv-kp-cta .rv-btn { white-space: nowrap; }
.rv-kp-cta small { text-align: center; font-size: 11.5px; color: var(--muted); }

/* ---------- ② 活动横幅 ---------- */
.rv-promo {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 22px;
  margin-top: 18px;
  padding: 18px 24px;
  border-radius: 18px;
  border: 1px solid rgba(139, 92, 255, 0.42);
  background:
    radial-gradient(520px 200px at 6% 50%, rgba(255, 159, 46, 0.18), transparent 60%),
    linear-gradient(100deg, rgba(58, 26, 120, 0.9), rgba(26, 15, 69, 0.86) 52%, rgba(16, 40, 96, 0.86));
  box-shadow: var(--shadow-md), inset 0 0 40px rgba(139, 92, 255, 0.14);
  overflow: hidden;
}
.rv-promo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.14), transparent);
  transform: translateX(-100%);
  animation: rv-banner-shine 5.5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes rv-banner-shine {
  0%, 62% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.rv-promo { position: relative; }
.rv-promo-art { width: 52px; height: 52px; filter: drop-shadow(0 6px 14px rgba(255, 159, 46, 0.45)); }
.rv-promo-copy { min-width: 0; }
.rv-promo-copy b { display: block; font-size: 18px; font-weight: 800; }
.rv-promo-copy span { font-size: 13px; color: var(--copy); }
.rv-promo-phase { text-align: right; font-size: 12.5px; color: var(--muted); }
.rv-promo-phase b { display: block; color: var(--gold); font-size: 14px; font-weight: 800; }
.rv-promo-cd { display: flex; align-items: center; gap: 6px; margin-top: 6px; justify-content: flex-end; }
.rv-promo-cd b {
  min-width: 2.1em;
  padding: 3px 7px;
  border-radius: 8px;
  border: 1px solid rgba(255, 210, 94, 0.35);
  background: rgba(255, 210, 94, 0.12);
  color: var(--gold);
  font-size: 14px;
  font-variant-numeric: tabular-nums;
  text-align: center;
}
.rv-promo-cd i { font-style: normal; font-size: 11px; color: var(--muted); }
.rv-promo-go {
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: var(--grad-neon);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 0 0 6px rgba(139, 92, 255, 0.16), var(--glow-purple);
  animation: rv-go-pulse 2.4s ease-in-out infinite;
}
.rv-promo-go:hover { transform: scale(1.06); }
@keyframes rv-go-pulse {
  50% { box-shadow: 0 0 0 12px rgba(139, 92, 255, 0.05), 0 0 34px rgba(139, 92, 255, 0.6); }
}

/* ---------- ③ 四档 KOL 申请卡 ---------- */
.rv-tiers {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}
.rv-tier {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 22px 20px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(34, 21, 84, 0.7) 0%, rgba(15, 9, 42, 0.82) 100%);
  box-shadow: var(--shadow-md);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}
.rv-tier:hover { transform: translateY(-4px); border-color: var(--line-strong); box-shadow: var(--shadow-hover); }
.rv-tier-head { display: flex; align-items: center; gap: 11px; }
.rv-tier-badge {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 13px;
  font-size: 21px;
  background: rgba(139, 92, 255, 0.16);
  box-shadow: inset 0 0 0 1px rgba(139, 92, 255, 0.32);
}
.rv-tier-badge img { width: 32px; height: 32px; object-fit: contain; }
.rv-tier h3 { margin: 0; font-size: 17px; font-weight: 800; }
.rv-tier-note {
  display: inline-block;
  margin-top: 2px;
  padding: 2px 9px;
  border-radius: 999px;
  background: rgba(139, 92, 255, 0.18);
  font-size: 11px;
  color: #c9bcff;
}
.rv-tier-salary { display: flex; align-items: baseline; gap: 6px; }
.rv-tier-salary b { font-size: 30px; font-weight: 800; line-height: 1.1; }
.rv-tier-salary span { font-size: 12.5px; color: var(--copy); }
.rv-tier-rate { font-size: 13.5px; color: var(--copy); }
.rv-tier-rate b { font-size: 19px; font-weight: 800; }

.rv-tier-list { margin: 0; padding: 0; list-style: none; display: grid; gap: 6px; }
.rv-tier-list li {
  position: relative;
  padding-left: 20px;
  font-size: 12.5px;
  color: var(--copy);
}
.rv-tier-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-2);
  font-weight: 800;
}
.rv-tier-kpi {
  padding: 9px 12px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.045);
  font-size: 12.5px;
  color: var(--muted);
}
.rv-tier-kpi b { color: var(--ink); font-variant-numeric: tabular-nums; }
.rv-tier-apply {
  margin-top: auto;
  padding: 11px 16px;
  border: 0;
  border-radius: 999px;
  background: var(--grad-neon);
  color: #fff;
  font-family: var(--font);
  font-size: 13.5px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), opacity 0.2s var(--ease);
}
.rv-tier-apply:hover:not(:disabled) { transform: translateY(-2px); box-shadow: var(--glow-purple); }
.rv-tier-apply:disabled { opacity: 0.45; cursor: not-allowed; }

/* 高级档：金色主题 + 推荐角标 */
.rv-tier.is-top {
  border-color: rgba(255, 210, 94, 0.5);
  background:
    radial-gradient(420px 220px at 90% -20%, rgba(255, 159, 46, 0.22), transparent 62%),
    linear-gradient(180deg, rgba(58, 38, 18, 0.62) 0%, rgba(24, 14, 46, 0.86) 100%);
  box-shadow: var(--shadow-md), 0 0 0 1px rgba(255, 210, 94, 0.16), var(--glow-gold);
}
.rv-tier.is-top .rv-tier-badge { background: rgba(255, 210, 94, 0.18); box-shadow: inset 0 0 0 1px rgba(255, 210, 94, 0.42); }
.rv-tier.is-top .rv-tier-apply { background: var(--grad-gold); color: #3a2408; }
.rv-tier.is-top .rv-tier-list li::before { color: var(--gold); }

.rv-tier-flag {
  position: absolute;
  top: -1px;
  right: -1px;
  padding: 4px 12px;
  border-radius: 0 18px 0 12px;
  background: linear-gradient(135deg, #ff6b4d, #ff2d78);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  box-shadow: 0 6px 16px rgba(255, 45, 120, 0.4);
}
/* 待开放：绿色，区别于红色推荐角标（R8-2） */
.rv-tier-flag.is-soon {
  background: linear-gradient(135deg, #2fe6a8, #0ea77c);
  box-shadow: 0 6px 16px rgba(14, 167, 124, 0.4);
}
.rv-tiers-foot {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  padding: 10px 16px;
  border-radius: 12px;
  background: rgba(139, 92, 255, 0.1);
  border: 1px solid var(--line);
  font-size: 12.5px;
  color: var(--copy);
}
.rv-tiers-foot i { font-style: normal; color: var(--accent-2); }

/* ---------- ④ 工资额度 + 推广奖励 ---------- */
.rv-earn {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}
.rv-earn-card { padding: 24px 24px 22px; }
.rv-earn-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.rv-earn-head span.rv-earn-ico {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(139, 92, 255, 0.18);
  font-size: 17px;
}
.rv-earn-head h3 { margin: 0; font-size: 17px; font-weight: 800; }
.rv-earn-head .rv-chip { margin-left: auto; }

.rv-earn-big { display: flex; align-items: baseline; gap: 8px; }
.rv-earn-big b { font-size: 42px; font-weight: 800; line-height: 1.05; }
.rv-earn-big span { font-size: 15px; font-weight: 700; color: var(--copy); }
.rv-earn-bar {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 14px 0 10px;
}
.rv-earn-bar .rv-goal-bar { flex: 1; margin: 0; height: 12px; }
.rv-earn-bar em { font-style: normal; font-size: 20px; font-weight: 800; color: var(--accent-2); font-variant-numeric: tabular-nums; }
.rv-earn-split {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  font-size: 13px;
  color: var(--muted);
}
.rv-earn-split b { color: var(--ink); font-variant-numeric: tabular-nums; }
.rv-earn-rows { display: grid; gap: 9px; margin-top: 4px; }
.rv-earn-rows > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 13.5px;
  color: var(--copy);
}
.rv-earn-rows > div b { color: var(--ink); font-weight: 700; font-variant-numeric: tabular-nums; }
.rv-earn-rows > div.is-highlight {
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 210, 94, 0.32);
  background: rgba(255, 210, 94, 0.1);
}
.rv-earn-rows > div.is-highlight b { color: var(--gold); font-size: 18px; }
.rv-earn-boxes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}
.rv-earn-box {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  font-size: 12.5px;
  color: var(--muted);
}
.rv-earn-box b { display: block; font-size: 15px; color: var(--ink); font-variant-numeric: tabular-nums; }
.rv-earn-box.is-next b { color: var(--accent-2); }
.rv-earn-box .rv-earn-sum { color: var(--gold); font-weight: 800; }

/* 奖励卡：金色描边 + 金币装饰 */
.rv-earn-card.is-reward {
  border-color: rgba(255, 210, 94, 0.45);
  background:
    radial-gradient(520px 260px at 92% 8%, rgba(255, 159, 46, 0.24), transparent 60%),
    linear-gradient(180deg, rgba(52, 34, 18, 0.66) 0%, rgba(18, 11, 44, 0.86) 100%);
  box-shadow: var(--shadow-md), 0 0 0 1px rgba(255, 210, 94, 0.14);
}
.rv-earn-card.is-reward .rv-earn-head span.rv-earn-ico { background: rgba(255, 210, 94, 0.18); }
.rv-earn-coins {
  position: absolute;
  right: 10px;
  top: 96px;
  z-index: 0;
  width: 116px;
  opacity: 0.95;
  pointer-events: none;
  filter: drop-shadow(0 12px 24px rgba(255, 159, 46, 0.35));
  animation: rv-coin-float 4.5s ease-in-out infinite;
}
/* 参考稿：奖励明细靠左、金币堆占右侧，避免数值压在图上 */
.rv-earn-card.is-reward .rv-earn-rows { max-width: 62%; }
@keyframes rv-coin-float {
  50% { transform: translateY(-8px); }
}

/* ---------- ⑤ 我的推广数据 + 推广工具 ---------- */
.rv-promodata {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(0, 1fr);
  gap: 18px;
  margin-top: 22px;
}
.rv-pd-cells {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding: 20px;
}
.rv-pd-cell {
  padding: 14px 12px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  text-align: center;
}
.rv-pd-cell span.rv-pd-ico {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin: 0 auto 8px;
  border-radius: 12px;
  background: rgba(139, 92, 255, 0.16);
  font-size: 18px;
}
.rv-pd-cell small { display: block; font-size: 11.5px; color: var(--muted); }
.rv-pd-cell b { display: block; font-size: 22px; font-weight: 800; }
.rv-pd-cell b i { font-style: normal; font-size: 11.5px; color: var(--muted); margin-left: 2px; }

.rv-tools-card { padding: 20px; }
.rv-tools-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  margin-top: 14px;
}
.rv-tool {
  display: grid;
  gap: 6px;
  justify-items: center;
  padding: 12px 4px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--copy);
  font-family: var(--font);
  font-size: 11.5px;
  cursor: pointer;
  transition: transform 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease);
}
.rv-tool span { font-size: 19px; }
.rv-tool:hover:not(:disabled) { transform: translateY(-3px); border-color: var(--line-strong); color: var(--ink); box-shadow: var(--glow-purple); }
.rv-tool:disabled { opacity: 0.42; cursor: not-allowed; }

/* ---------- ⑥ 订单贡献 + KOL 成长榜 ---------- */
.rv-contrib {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: 18px;
  margin-top: 22px;
}
.rv-contrib-card { padding: 20px 22px 18px; }
.rv-ctable { margin-top: 12px; font-size: 13px; }
.rv-ctable-head,
.rv-ctable-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr) minmax(0, 0.9fr) minmax(0, 0.85fr) minmax(0, 0.9fr);
  gap: 8px;
  align-items: center;
  padding: 10px 12px;
}
.rv-ctable-head {
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.045);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--muted);
}
.rv-ctable-row { border-bottom: 1px solid var(--line); font-variant-numeric: tabular-nums; }
.rv-ctable-row:last-child { border-bottom: 0; }
.rv-ctable-row b { color: var(--ink); font-weight: 700; }
.rv-ctable-row .rv-c-reward { color: var(--green); font-weight: 700; }
.rv-ctable-row .rv-c-kpi { color: var(--accent-2); font-weight: 700; }
.rv-ctable-row .rv-c-state { font-size: 12px; color: var(--muted); }
.rv-ctable-row .rv-c-state.is-ok { color: var(--green); }
.rv-ctable-foot { margin: 12px 0 0; text-align: center; font-size: 12.5px; }
.rv-ctable-foot a { color: var(--accent-2); text-decoration: none; }
.rv-ctable-foot a:hover { text-decoration: underline; }

.rv-krank-list { display: grid; gap: 9px; margin-top: 12px; }
.rv-krank-row {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr) auto;
  gap: 11px;
  align-items: center;
  padding: 10px 13px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  font-size: 13.5px;
}
.rv-krank-row i {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  font-style: normal;
  font-size: 12px;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.09);
  color: var(--copy);
}
.rv-krank-row:nth-child(1) i { background: var(--grad-gold); color: #3a2408; }
.rv-krank-row:nth-child(2) i { background: linear-gradient(135deg, #dfe6f0, #9aa7b8); color: #2b3242; }
.rv-krank-row:nth-child(3) i { background: linear-gradient(135deg, #f0a97a, #c47448); color: #37200f; }
.rv-krank-row b { font-variant-numeric: tabular-nums; color: var(--gold); }
.rv-krank-self {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 12px;
  padding: 11px 14px;
  border-radius: 12px;
  border: 1px dashed var(--line-strong);
  font-size: 13px;
  color: var(--muted);
}
.rv-krank-self b { color: var(--accent-2); font-size: 16px; font-variant-numeric: tabular-nums; }

/* ---------- ⑦ 底部分享横幅 ---------- */
.rv-sharebanner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 34px 0 8px;
  padding: 18px 26px;
  border-radius: 18px;
  border: 1px solid rgba(139, 92, 255, 0.42);
  background:
    radial-gradient(600px 220px at 12% 50%, rgba(34, 211, 238, 0.18), transparent 62%),
    linear-gradient(100deg, rgba(46, 22, 104, 0.92), rgba(20, 12, 56, 0.9) 60%, rgba(66, 26, 96, 0.9));
  box-shadow: var(--shadow-md), inset 0 0 44px rgba(139, 92, 255, 0.14);
  overflow: hidden;
}
.rv-sharebanner p { margin: 0; font-size: 16.5px; font-weight: 700; }
.rv-sharebanner p em { font-style: normal; background: var(--grad-neon); -webkit-background-clip: text; background-clip: text; color: transparent; }
.rv-sharebanner p b { color: var(--gold); }
.rv-sharebanner .rv-share-ico { font-size: 26px; }
.rv-sharebanner button { margin-left: auto; white-space: nowrap; }

/* ---------- ⑧ 底部固定导航（移动端） ---------- */
.rv-tabbar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 170;
  display: none;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  padding: 6px 4px calc(6px + env(safe-area-inset-bottom, 0px));
  background: rgba(10, 6, 30, 0.94);
  border-top: 1px solid var(--line);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 -10px 30px rgba(3, 1, 14, 0.6);
}
.rv-tabbar a {
  display: grid;
  gap: 2px;
  justify-items: center;
  padding: 6px 2px;
  border-radius: 12px;
  color: var(--muted);
  font-size: 10.5px;
  text-decoration: none;
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}
.rv-tabbar a span { font-size: 19px; line-height: 1; }
.rv-tabbar a.is-active { color: var(--ink); background: rgba(139, 92, 255, 0.16); }
.rv-tabbar a.is-active span { filter: drop-shadow(0 0 8px rgba(139, 92, 255, 0.8)); }

/* ---------- 新模块响应式 ---------- */
@media (max-width: 1100px) {
  .rv-tiers { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .rv-earn,
  .rv-promodata,
  .rv-contrib { grid-template-columns: minmax(0, 1fr); }
  .rv-earn-coins { width: 96px; }
}

/* 锚点跳转避开吸顶导航（导航高度 ~64px + 悬浮间距） */
.rv-anchor,
#rv-tiers,
#rv-promodata,
#rv-milestones,
#rv-invitees,
#rv-faq,
#rv-perks,
#rv-progress { scroll-margin-top: 96px; }
@media (max-width: 900px) {
  .rv-kolpanel {
    grid-template-columns: auto minmax(0, 1fr);
    align-items: start;
    gap: 16px 18px;
  }
  .rv-kp-cta { grid-column: 1 / -1; }
  .rv-promo {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 14px 16px;
  }
  .rv-promo-phase { grid-column: 2 / -1; text-align: left; }
  .rv-promo-cd { justify-content: flex-start; }
  /* 底部导航接管移动端，隐藏原悬浮 CTA 避免叠压 */
  .rv-tabbar { display: grid; }
  .rv-float-cta { display: none; }
  body { padding-bottom: 66px; }
  .rv-toast { bottom: 84px; }
}
@media (max-width: 640px) {
  .rv-kolpanel { padding: 18px 16px; }
  .rv-kp-avatar { width: 68px; height: 68px; }
  .rv-kp-avatar img { width: 54px; height: 54px; }
  .rv-kp-name h2 { font-size: 21px; }
  .rv-kp-stats { grid-template-columns: minmax(0, 1fr); }
  .rv-tiers { grid-template-columns: minmax(0, 1fr); }
  .rv-earn-big b { font-size: 34px; }
  .rv-earn-card { padding: 20px 18px; }
  .rv-earn-coins { display: none; }
  .rv-earn-card.is-reward .rv-earn-rows { max-width: none; }
  .rv-earn-boxes { grid-template-columns: minmax(0, 1fr); }
  .rv-pd-cells { grid-template-columns: repeat(2, minmax(0, 1fr)); padding: 16px; }
  .rv-tools-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .rv-sharebanner { flex-wrap: wrap; padding: 16px 18px; }
  .rv-sharebanner button { margin-left: 0; width: 100%; }
  /* 订单表：小屏只留「用户 / 认购额 / 我的奖励」三列 */
  .rv-ctable-head,
  .rv-ctable-row { grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr) minmax(0, 0.9fr); }
  .rv-ctable-head > :nth-child(2),
  .rv-ctable-row > :nth-child(2),
  .rv-ctable-head > :nth-child(5),
  .rv-ctable-row > :nth-child(5) { display: none; }
}

/* ============================================================
   语言选择器深色适配（R8-12）
   language-picker.css 是浅色设计（白底按钮/白底菜单），在深色霓虹
   页面上要翻成深色。选择器 .rv-page 前缀只影响本页。
   ============================================================ */
.rv-page .language-picker > .language {
  min-width: 92px;
  gap: 8px;
  padding: 8px 12px !important;
  border: 1px solid var(--line);
  border-radius: 999px !important;
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink);
  box-shadow: none;
}
.rv-page .language-picker > .language:hover,
.rv-page .language-picker > .language:focus-visible,
.rv-page .language-picker.is-open > .language {
  border-color: var(--accent);
  box-shadow: 0 0 14px rgba(139, 92, 255, 0.35);
}
.rv-page .language-picker > .language .language-current-flag {
  width: 20px;
  height: 20px;
}
.rv-page .language-picker > .language [data-language-current-code] {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
}
.rv-page .language-picker > .language .language-chevron {
  color: var(--muted);
}
.rv-page .language-menu {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(13, 8, 38, 0.97);
  box-shadow: 0 28px 90px rgba(3, 1, 14, 0.72);
}
.rv-page .language-option {
  min-height: 52px;
  border-radius: 16px;
  color: var(--copy);
}
.rv-page .language-option:hover,
.rv-page .language-option:focus-visible,
.rv-page .language-option.is-selected {
  border-color: rgba(139, 92, 255, 0.45);
  color: var(--ink);
  background: rgba(139, 92, 255, 0.14);
}
.rv-page .language-option-flag {
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 2px 9px rgba(0, 0, 0, 0.5);
}
.rv-page .language-option-check {
  color: var(--accent);
}
/* 移动端：导航空间有限，按钮再收窄一点 */
@media (max-width: 768px) {
  .rv-page .language-picker > .language {
    min-width: 66px;
    padding: 7px 10px !important;
  }
  .rv-page .language-picker > .language .language-chevron {
    display: none;
  }
  /* R8-13：语言菜单默认 absolute + right:0，在导航中间时左缘会超出
     视口（被 overflow-x:hidden 裁掉，用户看到「一部分」）。移动端：
     - picker 取消 positioned，containing block 变成 .rv-nav（sticky）
     - 菜单 absolute 相对 nav：top:100%+12 始终贴在导航下方（topbar
       在窄屏换行变高时也自动跟随），left/right 全宽永远落在视口内
     全部 !important 压过 language-picker.css 的后加载规则。 */
  .rv-page .language-picker {
    position: static !important;
    z-index: auto !important;
  }
  .rv-page .language-menu {
    position: absolute !important;
    top: calc(100% + 12px) !important;
    left: 18px !important;
    right: 18px !important;
    width: auto !important;
    max-height: calc(100vh - 200px) !important;
  }
  /* language-picker.css 移动端把选项刷成白底，翻回深色 */
  .rv-page .language-option {
    background: transparent !important;
    border-color: transparent !important;
  }
  .rv-page .language-option:hover,
  .rv-page .language-option.is-selected {
    background: rgba(139, 92, 255, 0.14) !important;
    border-color: rgba(139, 92, 255, 0.45) !important;
  }
  /* 导航空间：360px 窄屏也要放得下 brand + 语言 + CTA */
  .rv-page .rv-brand-copy small {
    display: none;
  }
}
