:root{
  --bg0:#070707;
  --bg1:#0b0b0b;
  --gold:#e6c97a;
  --gold2:#c9a44c;
  --text:rgba(255,255,255,.92);
  --muted:rgba(255,255,255,.65);
  --line:rgba(230,201,122,.22);
  --card:rgba(255,255,255,.06);
  --shadow: 0 18px 60px rgba(0,0,0,.55);
}

*{ box-sizing:border-box; margin:0; padding:0; }
html,body{ height:100%; }

body{
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
               "PingFang SC","Microsoft YaHei", Arial, sans-serif;
  color: var(--text);
  background: radial-gradient(1200px 700px at 50% -20%, rgba(230,201,122,.18), transparent 55%),
              radial-gradient(900px 600px at 10% 20%, rgba(201,164,76,.12), transparent 55%),
              radial-gradient(800px 520px at 90% 35%, rgba(230,201,122,.10), transparent 60%),
              linear-gradient(180deg, var(--bg1), var(--bg0));
  display:flex;
  justify-content:center;
  overflow-x:hidden;
}

/* ===== 背景动效：低调流光 + 金粉噪点 ===== */
.bg-wrap{
  position:fixed; inset:0; pointer-events:none; z-index:0;
  overflow:hidden;
}
.bg-wrap::before{
  content:"";
  position:absolute; inset:-40%;
  background:
    radial-gradient(circle at 30% 30%, rgba(230,201,122,.14), transparent 35%),
    radial-gradient(circle at 70% 40%, rgba(201,164,76,.10), transparent 38%),
    radial-gradient(circle at 40% 75%, rgba(230,201,122,.08), transparent 40%);
  filter: blur(18px);
  animation: drift 10s ease-in-out infinite alternate;
}
.bg-wrap::after{
  content:"";
  position:absolute; inset:0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='320' height='320'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='320' height='320' filter='url(%23n)' opacity='.18'/%3E%3C/svg%3E");
  opacity:.12;
  mix-blend-mode: overlay;
}

@keyframes drift{
  0%{ transform: translate3d(-2%, -1%, 0) scale(1.02) rotate(-2deg); }
  100%{ transform: translate3d(2%, 1%, 0) scale(1.05) rotate(2deg); }
}

/* ===== 容器 ===== */
.page{
  position:relative;
  z-index:1;
  width:100%;
  max-width: 440px;
  padding: 26px 18px 56px;
}

/* ===== 顶部徽标 + 标题 ===== */
.hero{
  position:relative;
  padding: 18px 16px 16px;
  margin: 6px 0 18px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.hero::before{
  content:"";
  position:absolute; inset:-2px;
  background: radial-gradient(500px 180px at 50% 0%, rgba(230,201,122,.22), transparent 60%);
  opacity:.9;
  pointer-events:none;
}

.title{
  /* margin-top: 14px; */
  font-size: 30px;
  letter-spacing: 2px;
  line-height: 1.1;
  color: var(--gold);
  text-shadow: 0 10px 30px rgba(230,201,122,.18);
}
.subtitle{
  text-align: center;
  margin-top: 10px;
  font-size: 14px;
  color: var(--muted);
}

/* ===== 内容卡片 ===== */
.card{
  margin-top: 14px;
  padding: 18px 16px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 14px 48px rgba(0,0,0,.45);
  backdrop-filter: blur(10px);
  position:relative;
  overflow:hidden;
}
.card::after{
  content:"";
  position:absolute; inset:auto -40px -50px -40px;
  height: 110px;
  background: radial-gradient(closest-side, rgba(230,201,122,.16), transparent 70%);
  filter: blur(12px);
}
.p{
  position:relative;
  font-size: 14px;
  color: var(--text);
  line-height: 1.85;
  word-break: break-word;
  text-align: center;
}
.sep{
  height:1px;
  background: linear-gradient(90deg, transparent, rgba(230,201,122,.25), transparent);
  margin: 14px 0 0;
  opacity:.9;
}

/* ===== 关注的是：标签组 ===== */
.kv{
  margin-top: 12px;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.tag{
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(230,201,122,.22);
  background: rgba(0,0,0,.20);
  color: rgba(240,230,194,.92);
  font-size: 13px;
  letter-spacing:.4px;
}
.dot-mid{
  display:inline-block;
  margin: 0 8px;
  color: rgba(230,201,122,.65);
}

/* ===== 免责声明 ===== */
.disclaimer{
  margin-top: 16px;
  font-size: 12px;
  color: rgba(255,255,255,.60);
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.14);
  position:relative;
  text-align: center;
}

/* ===== CTA ===== */
.cta{
  margin-top: 18px;
}
.btn{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 14px 14px;
  border-radius: 18px;
  border: 0;
  text-decoration:none;
  color:#0b0b0b;
  font-weight: 800;
  font-size: 15px;
  background: linear-gradient(135deg, #f3dc9a, var(--gold2));
  box-shadow: 0 16px 40px rgba(201,164,76,.18);
  transform: translateZ(0);
  transition: transform .12s ease, filter .12s ease;
}
.btn:active{ transform: scale(.98); filter: brightness(.98); }

.footer-note{
  margin-top: 10px;
  text-align:center;
  font-size: 12px;
  color: rgba(255,255,255,.62);
}

/* ===== 小屏适配 ===== */
@media (max-width:360px){
  .title{ font-size: 28px; }
  .page{ padding: 22px 14px 52px; }
}

/* ===== 轻微入场动画 ===== */
.fade-up{ animation: fadeUp .55s ease both; }
.delay-1{ animation-delay:.06s; }
.delay-2{ animation-delay:.12s; }
.delay-3{ animation-delay:.18s; }
.delay-4{ animation-delay:.24s; }
@keyframes fadeUp{
  from{ opacity:0; transform: translateY(10px); }
  to{ opacity:1; transform: translateY(0); }
}

.focus-grid{
  margin-top: 6px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.focus-item{
  padding: 12px 10px;
  text-align: center;
  font-size: 13px;
  letter-spacing: .5px;
  color: rgba(240,230,194,.95);
  border-radius: 14px;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,.07),
    rgba(255,255,255,.03)
  );
  border: 1px solid rgba(230,201,122,.25);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.02);
}


.title-row{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.logo-inline{
  width: 36px;
  height: auto;
  filter: drop-shadow(0 4px 12px rgba(230,201,122,.25));
}