:root{
  /* ===== 基础映射（只改这里即可换肤） ===== */
  --primary: #f6d087;
  --primary-2: #decea8;

  --bg-0: #13151d;
  --bg-1: #dab05f;
  --bg-2: #6c6a58;
  --bg-3: #525146;
  --bg-4: #4d4c49;

  --gradient-button: linear-gradient(135deg, #f6d087 0%, #decea8 100%);
  --gradient-share: linear-gradient(135deg, #d2ae6b 0%, #f6d087 100%);

  --lan-bg: #1c1c1a;
  --lan-bg-1: #30302e;
  --msg-bg: #282b2c;
  --tabbar-bg: #324141;

  /* ===== 语义 token（页面/组件只用这些） ===== */
  --text: rgba(255,255,255,.92);
  --text-muted: rgba(255,255,255,.72);
  --text-faint: rgba(255,255,255,.56);

  --surface: rgba(255,255,255,.06);
  --surface-2: rgba(255,255,255,.09);
  --border: rgba(255,255,255,.10);
  --shadow: 0 18px 40px rgba(0,0,0,.40);

  --radius: 16px;
  --radius-sm: 12px;

  --container: 1120px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  background:
    radial-gradient(1200px 600px at 12% -10%, rgba(246,208,135,.18), transparent 60%),
    radial-gradient(900px 500px at 88% 0%, rgba(222,206,168,.10), transparent 55%),
    var(--bg-0);
  color: var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  line-height: 1.5;
}

/* 轻微颗粒层（更像“产品”，避免纯色太平） */
body::before{
  content:"";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)' opacity='.32'/%3E%3C/svg%3E");
  opacity: .05;
  mix-blend-mode: overlay;
}

a{ color: inherit; text-decoration: none; }
pre{ margin:0; }

.console-menu a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 15px;
  border-radius: 8px;
  transition: all 0.2s ease;
  font-weight: 500;
}

.console-sidebar__head h2 {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  margin: 24px 0 12px 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}
