
  /* ============================================================
     若叶睦（Wakaba Mutsumi）· 二次元博客风 · 深色护眼版
     深墨绿夜色 + 睦的发色绿 / 瞳色青碧点缀
     ============================================================ */
  :root {
    --bg: #1d231b;
    --card: rgba(255,255,255,0.045);
    --card-border: rgba(156,201,120,0.16);
    --text: #dce4d0;
    --text-dim: #8d9c80;
    --accent: #9cc978;        /* 若叶绿（暗底亮字） */
    --accent-deep: #7aa859;
    --teal: #6fc4ab;           /* 青碧（瞳色） */
    --teal-deep: #4da58c;
    --discord: #5865F2;
    --green: #8fbc6e;
    --red: #d98874;
    --yellow: #d4b96a;
    --radius: 22px;
    --shadow: 0 8px 28px rgba(0,0,0,.28);
    --shadow-hover: 0 14px 36px rgba(0,0,0,.38);
  }
  * { margin:0; padding:0; box-sizing:border-box; }
  body {
    font-family: "Segoe UI", "Microsoft YaHei", "Hiragino Sans", system-ui, sans-serif;
    background: var(--bg); color: var(--text); min-height: 100vh; overflow-x: hidden;
    background-image:
      radial-gradient(circle at 12% 8%, rgba(156,201,120,.07), transparent 34%),
      radial-gradient(circle at 88% 12%, rgba(111,196,171,.06), transparent 36%),
      radial-gradient(circle at 50% 100%, rgba(120,160,90,.08), transparent 45%),
      linear-gradient(180deg, #1d231b 0%, #1b211a 60%, #181f1a 100%);
    background-attachment: fixed;
  }
  /* 顶部流动丝带（博客感，暗色下调低透明度） */
  body::before {
    content:""; position: fixed; top:0; left:0; right:0; height: 3px; z-index: 10;
    background: linear-gradient(90deg, #7aa859, #4da58c, #9cc978, #7aa859);
    background-size: 300% 100%; animation: ribbon 16s linear infinite; opacity:.55;
  }
  @keyframes ribbon { to { background-position: 300% 0; } }

  /* ===== 八方旅人 HD-2D 动态光影 (Canvas) ===== */
  #lightCanvas { position: fixed; inset: 0; width: 100%; height: 100%; pointer-events: none; z-index: 4;
    filter: blur(12px); mix-blend-mode: screen; }
  /* 移轴暗角 */
  .vignette {
    position: fixed; inset: 0; pointer-events: none; z-index: 5;
    background:
      radial-gradient(ellipse 105% 90% at 50% 46%, transparent 58%, rgba(8,12,7,.34) 100%),
      linear-gradient(180deg, rgba(8,12,7,.22) 0%, transparent 12%, transparent 88%, rgba(8,12,7,.3) 100%);
  }

  /* 萤火虫般的微光点（Bloom 强化） */
  .stars { position:fixed; inset:0; pointer-events:none; z-index:0; }
  .star { position:absolute; border-radius:50%; background:#cfe6a8; opacity:.2;
    box-shadow: 0 0 10px rgba(210,235,170,.8), 0 0 20px rgba(190,225,150,.35);
    animation: twinkle ease-in-out infinite; }
  @keyframes twinkle { 0%,100%{opacity:.06;transform:scale(1);} 50%{opacity:.6;transform:scale(1.35);} }

  /* 常规飘落的叶子 */
  .leaf-layer { position: fixed; inset:0; pointer-events:none; z-index:1; overflow:hidden; }
  .leaf { position:absolute; top:-4vh; color: rgba(156,201,120,.45); animation: fall linear infinite; user-select:none;
    transition: transform .6s; }
  @keyframes fall {
    0% { transform: translateY(-5vh) translateX(0) rotate(0deg); opacity:0; }
    8% { opacity:1; }
    100% { transform: translateY(108vh) translateX(7vw) rotate(360deg); opacity:.15; }
  }

  /* ===== 强风特效层 ===== */
  .wind-layer { position: fixed; inset:0; pointer-events:none; z-index:3; overflow:hidden; }
  .wind-leaf { position:absolute; left:-8vw; user-select:none; will-change: transform, opacity;
    animation: gust cubic-bezier(.25,.4,.5,1) forwards; }
  @keyframes gust {
    0%   { transform: translateX(0) translateY(0) rotate(0deg) scale(.8); opacity:0; }
    8%   { opacity:.9; }
    30%  { transform: translateX(34vw) translateY(-6vh) rotate(220deg) scale(1); }
    60%  { transform: translateX(72vw) translateY(3vh) rotate(480deg) scale(1.05); }
    100% { transform: translateX(120vw) translateY(-4vh) rotate(760deg) scale(.9); opacity:0; }
  }
  /* 风线（表现气流的细白线） */
  .wind-line { position:absolute; left:-30vw; height:1.5px; border-radius:2px;
    background: linear-gradient(90deg, transparent, rgba(210,230,190,.35), transparent);
    animation: windline ease-out forwards; will-change: transform, opacity; }
  @keyframes windline {
    0%   { transform: translateX(0) scaleX(.4); opacity:0; }
    15%  { opacity:.8; }
    100% { transform: translateX(170vw) scaleX(1.2); opacity:0; }
  }
  /* 大风来时整页植物轻微倾斜 */
  .page-wrap { position:relative; z-index:2; animation: pageIn .5s ease both; transition: transform 1.2s ease; }
  .page-wrap.windy { transform: translateX(4px) skewX(-.3deg); }
  @keyframes pageIn { from{opacity:0;transform:translateY(14px);} to{opacity:1;transform:translateY(0);} }

  /* 底部草丘 + 摇曳草叶 */
  .hills { position: fixed; bottom:0; left:0; width:100%; z-index:0; pointer-events:none; opacity:.5; }
  .grass { position: fixed; bottom:-4px; z-index:1; pointer-events:none; font-size:20px; opacity:.5;
    transform-origin: bottom center; animation: sway 4s ease-in-out infinite; }
  @keyframes sway { 0%,100%{transform:rotate(-6deg);} 50%{transform:rotate(7deg);} }
  .grass.g-windy { animation: swayHard .5s ease-in-out infinite; }
  @keyframes swayHard { 0%,100%{transform:rotate(4deg);} 50%{transform:rotate(24deg);} }

  /* 散步的小企鹅 */
  .walker { position: fixed; bottom: 6px; left:-60px; z-index:1; font-size: 26px; pointer-events:none; animation: walk 38s linear infinite; }
  .walker.w2 { font-size:18px; animation-duration:55s; animation-delay:-20s; bottom:2px; }
  @keyframes walk {
    0% { left:-60px; transform: scaleX(1); } 49% { left:calc(100vw + 20px); transform: scaleX(1); }
    50% { left:calc(100vw + 20px); transform: scaleX(-1); } 99% { left:-60px; transform: scaleX(-1); }
    100% { left:-60px; transform: scaleX(1); }
  }

  .container { max-width: 1080px; margin: 0 auto; padding: 0 24px; }

  /* 毛玻璃暗色卡片 */
  .card {
    background: var(--card); border: 1.5px solid var(--card-border); border-radius: var(--radius);
    padding: 26px; backdrop-filter: blur(10px); box-shadow: var(--shadow);
    position: relative; overflow:hidden; transition: transform .25s, box-shadow .25s, border-color .25s;
  }
  .card:hover { transform: translateY(-3px); border-color: rgba(156,201,120,.34); box-shadow: var(--shadow-hover); }
  .card::before { content:""; position:absolute; top:0; left:0; right:0; height:2px;
    background: linear-gradient(90deg, rgba(156,201,120,0), rgba(156,201,120,.4), rgba(111,196,171,.4), rgba(156,201,120,0)); }

  .btn { display:inline-flex; align-items:center; gap:8px; border:none; border-radius: 999px;
    padding: 12px 28px; font-size: 15px; font-weight: 700; cursor: pointer; transition: all .2s; }
  .btn:hover { transform: translateY(-2px); filter: brightness(1.1); box-shadow: 0 8px 18px rgba(0,0,0,.3); }
  .btn-discord { background: var(--discord); color:#fff; }
  .btn-teal { background: linear-gradient(135deg, var(--teal), var(--teal-deep)); color:#10302a; }
  .btn-ghost { background: rgba(255,255,255,.05); color: var(--text); border:1.5px solid var(--card-border); }
  .btn-sm { padding: 6px 16px; font-size: 13px; }

  .tag { display:inline-block; padding: 4px 13px; border-radius: 999px; font-size: 12px; font-weight: 700; }
  .tag-green { background: rgba(156,201,120,.12); color: var(--green); border:1px solid rgba(156,201,120,.26); }
  .tag-red { background: rgba(217,136,116,.12); color: var(--red); border:1px solid rgba(217,136,116,.26); }
  .tag-teal { background: rgba(111,196,171,.11); color: var(--teal); border:1px solid rgba(111,196,171,.26); }
  .pulse-dot { display:inline-block; width:8px; height:8px; border-radius:50%; background: var(--green);
    margin-right:6px; animation: pulse 2s infinite; }
  @keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(143,188,110,.5);} 70%{box-shadow:0 0 0 8px rgba(143,188,110,0);} 100%{box-shadow:0 0 0 0 rgba(143,188,110,0);} }

  header.site { display:flex; justify-content:space-between; align-items:center; padding: 26px 0 20px; }
  .logo { display:flex; align-items:center; gap:13px; font-size: 20px; font-weight: 800; }
  .logo .icon { width:48px; height:48px; border-radius: 16px;
    background: linear-gradient(145deg, #3b4a30, #2a3623);
    border: 1.5px solid rgba(156,201,120,.3); box-shadow: 0 4px 12px rgba(0,0,0,.3);
    display:flex; align-items:center; justify-content:center; font-size: 26px;
    animation: bob 3.4s ease-in-out infinite; }
  @keyframes bob { 0%,100%{transform:translateY(0) rotate(-3deg);} 50%{transform:translateY(-5px) rotate(3deg);} }
  .logo small { display:block; font-size: 11.5px; font-weight: 600; color: var(--text-dim); letter-spacing:1.5px; }

  /* Hero：博客横幅（暗色玻璃） */
  .hero {
    text-align:center; padding: 52px 26px 44px; margin-top: 6px;
    background: linear-gradient(150deg, rgba(255,255,255,.05), rgba(156,201,120,.05) 55%, rgba(111,196,171,.05));
    border: 1.5px solid var(--card-border); border-radius: 28px;
    box-shadow: var(--shadow); backdrop-filter: blur(10px);
    position: relative; overflow: hidden;
  }
  .hero::before { content:"🌿"; position:absolute; top:16px; left:22px; font-size:24px; opacity:.3; transform: rotate(-16deg); }
  .hero::after { content:"🍃"; position:absolute; bottom:16px; right:24px; font-size:24px; opacity:.3; transform: rotate(14deg); }
  .hero .deco { position:absolute; font-size:14px; opacity:.22; user-select:none; pointer-events:none; color:var(--accent);
    animation: decoFloat 5s ease-in-out infinite; }
  .hero .deco:nth-child(2) { animation-delay:-1.2s; }
  .hero .deco:nth-child(3) { animation-delay:-2.4s; }
  .hero .deco:nth-child(4) { animation-delay:-3.6s; }
  @keyframes decoFloat { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-7px);} }
  .hero h1 {
    font-size: 46px; font-weight: 900; line-height: 1.25; letter-spacing: 1px;
    background: linear-gradient(95deg, #cfe6b2 10%, var(--accent) 40%, var(--teal) 70%, #cfe6b2 95%);
    background-size: 220% auto; -webkit-background-clip: text; background-clip: text; color: transparent;
    animation: shimmer 8s linear infinite;
    filter: drop-shadow(0 0 14px rgba(180,220,140,.28)); /* Bloom 泛光 */
  }
  @keyframes shimmer { to { background-position: 220% center; } }
  .hero p { color: var(--text-dim); margin-top: 14px; font-size: 15.5px; line-height:1.9; }
  .hero .btn { margin-top: 26px; font-size: 16px; padding: 15px 40px; }
  .hero .note { margin-top: 15px; font-size: 13px; color: var(--text-dim); }

  .grid2 { display:grid; grid-template-columns: 1.4fr 1fr; gap: 20px; margin: 24px 0; }
  .card h3 { font-size: 16px; margin-bottom: 18px; display:flex; align-items:center; gap:9px;
    padding-bottom: 12px; border-bottom: 2px dashed rgba(156,201,120,.18); color:#c2d4ae; }

  .keybox { display:flex; align-items:center; gap:10px; background: rgba(12,16,10,.55);
    border: 1.5px solid rgba(156,201,120,.22); border-radius: 14px; padding: 13px 16px;
    font-family: Consolas, monospace; font-size: 14px; color: var(--teal); margin-bottom: 14px; overflow: hidden; }
  .keybox code { flex:1; white-space: nowrap; overflow:hidden; text-overflow: ellipsis; }

  .quota-bar { height: 14px; border-radius: 999px; background: rgba(255,255,255,.06); overflow:hidden;
    margin: 10px 0 8px; border:1px solid rgba(156,201,120,.14); }
  .quota-bar > div { height:100%; background: linear-gradient(90deg, var(--accent-deep), var(--accent), var(--teal));
    border-radius: 999px; box-shadow: 0 0 8px rgba(156,201,120,.3); transition: width 1s ease; }
  .quota-bar > div.warn { background: linear-gradient(90deg, #b39a4e, var(--yellow)); box-shadow: 0 0 8px rgba(212,185,106,.3); }
  .quota-bar > div.full { background: linear-gradient(90deg, #c05a4a, var(--red)); box-shadow: 0 0 8px rgba(217,136,116,.35); }
  .quota-row { display:flex; justify-content:space-between; font-size: 13px; color: var(--text-dim); }
  .quota-row b { color: var(--text); }

  .info-list { list-style:none; }
  .info-list li { display:flex; justify-content:space-between; gap:14px; padding: 11px 0;
    border-bottom: 1px dashed rgba(156,201,120,.16); font-size: 14px; }
  .info-list li:last-child { border:none; }
  .info-list .k { color: var(--text-dim); flex-shrink:0; }
  .info-list .v { font-family: Consolas, monospace; color: var(--teal); text-align:right; word-break: break-all; }

  .models { display:flex; flex-wrap:wrap; gap:9px; }
  .model-chip { background: rgba(156,201,120,.08); border: 1.5px solid rgba(156,201,120,.22);
    color: #b4d494; border-radius: 999px; padding: 7px 15px; font-size: 12.5px;
    font-family: Consolas, monospace; transition: all .2s; }
  .model-chip:hover { background: rgba(156,201,120,.15); transform: translateY(-2px); }

  .rank-list { list-style:none; }
  .rank-list li { display:flex; align-items:center; gap:12px; padding: 10px 0;
    border-bottom: 1px dashed rgba(156,201,120,.16); font-size: 14px; }
  .rank-list li:last-child { border:none; }
  .rank-num { width: 27px; height: 27px; border-radius: 999px; flex-shrink:0; display:flex;
    align-items:center; justify-content:center; font-weight:800; font-size:13px;
    background: rgba(255,255,255,.06); color: var(--text-dim); }
  .rank-num.r1 { background: linear-gradient(135deg,#dfc06a,#a8813a); color:#2c220a; }
  .rank-num.r2 { background: linear-gradient(135deg,#c6ccd2,#8794a0); color:#1e252c; }
  .rank-num.r3 { background: linear-gradient(135deg,#c99a6b,#8e5c33); color:#2b1c0a; }
  .rank-name { flex:1; }
  .rank-val { color: var(--accent); font-family: Consolas, monospace; font-size:13px; }

  /* 说明卡片里的睦 GIF 表情 */
  .mutsumi-gifs { display:flex; justify-content:center; align-items:flex-end; gap:14px;
    margin-top: 16px; padding-top: 14px; border-top: 1px dashed rgba(156,201,120,.16); }
  .mutsumi-gifs img { width: 76px; height: 76px; object-fit: contain; border-radius: 16px;
    background: rgba(255,255,255,.06); border: 1.5px solid rgba(156,201,120,.18);
    padding: 4px; transition: transform .25s; }
  .mutsumi-gifs img:hover { transform: translateY(-4px) scale(1.08); }

  .notice-bar { display:flex; align-items:center; gap:10px; background: rgba(111,196,171,.07);
    border: 1.5px solid rgba(111,196,171,.22); border-radius: 16px; padding: 12px 18px;
    margin: 0 0 20px; font-size: 14px; color: var(--teal); }

  footer.site { text-align:center; color: var(--text-dim); font-size: 13px; padding: 30px 0 90px;
    border-top: 2px dashed rgba(156,201,120,.16); margin-top: 40px; line-height: 2; }
  footer.site .heart { color: var(--accent); }

  .hidden { display:none !important; }
  .error-bar { background: rgba(217,136,116,.09); border:1.5px solid rgba(217,136,116,.28);
    color: var(--red); border-radius:16px; padding:12px 18px; margin: 0 0 20px; font-size:14px; }
  .toast { position: fixed; bottom: 30px; left: 50%; transform: translateX(-50%);
    background: rgba(28,34,25,.96); border: 1.5px solid var(--card-border); color: var(--text);
    padding: 12px 26px; border-radius: 999px; font-size: 14px; z-index: 200; opacity: 0;
    box-shadow: var(--shadow); transition: opacity .3s; pointer-events: none; }
  .toast.show { opacity: 1; }

  /* ===== 减少动效偏好：关闭全部装饰动画 ===== */
  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation: none !important; transition: none !important; }
    #lightCanvas, .leaf-layer, .wind-layer, .stars, .walker, .grass { display: none !important; }
  }

  /* ===== 手机适配（放最后确保覆盖基础样式）===== */
  @media (max-width: 820px) {
    .container { padding: 0 14px; }
    .grid2, .grid2-half { grid-template-columns: 1fr; gap: 14px; }
    .hero { padding: 34px 16px 30px; border-radius: 22px; }
    .hero h1 { font-size: 28px; }
    .hero p { font-size: 14px; }
    .hero .btn { font-size: 15px; padding: 13px 30px; }
    header.site { padding: 18px 0 14px; flex-wrap: wrap; gap: 10px; }
    .logo { font-size: 17px; }
    .logo .icon { width: 42px; height: 42px; font-size: 22px; border-radius: 13px; }
    .logo small { font-size: 10px; }
    .card { padding: 18px 16px; }
    .card h3 { font-size: 15px; }
    .info-list li { flex-direction: column; align-items: flex-start; gap: 4px; padding: 9px 0; }
    .info-list .v { text-align: left; font-size: 12.5px; }
    .keybox { flex-wrap: wrap; padding: 12px 13px; }
    .keybox code { flex-basis: 100%; font-size: 12px; white-space: normal; word-break: break-all; overflow: visible; }
    .model-chip { font-size: 11px; padding: 6px 11px; }
    .mutsumi-gifs { gap: 10px; }
    .mutsumi-gifs img { width: 62px; height: 62px; }
    .notice-bar { font-size: 13px; padding: 10px 14px; align-items: flex-start; }
    .rank-list li { font-size: 13px; }
    .rank-val { font-size: 12px; }
    .quota-row { font-size: 12px; }
    .walker, .walker.w2, .grass { display: none; }
    footer.site { padding: 22px 0 46px; font-size: 12px; }
  }
