/* ============================================================
   百宝箱 · 全局样式（多页静态站）
   主色 #3B82F6 蓝色系 · 移动端优先响应式
   ============================================================ */

:root {
  --primary: #3B82F6;
  --primary-d: #2563EB;
  --primary-l: #EFF6FF;
  --text: #1f2937;
  --muted: #6b7280;
  --border: #e5e7eb;
  --bg: #f5f7fa;
  --card: #ffffff;
  --radius: 12px;
  --shadow: 0 1px 3px rgba(0, 0, 0, .06), 0 1px 2px rgba(0, 0, 0, .04);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, .08);
  --ok: #16a34a;
  --err: #dc2626;
  --mono: "SF Mono", "JetBrains Mono", Consolas, "Courier New", monospace;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC",
    "Microsoft YaHei", Roboto, Helvetica, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ---------------- 顶部导航 ---------------- */
.topbar {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  height: 56px; padding: 0 16px;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.brand { font-size: 18px; font-weight: 700; color: var(--text); }
.topnav a { color: var(--muted); font-size: 14px; }

.main { flex: 1; width: 100%; max-width: 1100px; margin: 0 auto; padding: 20px 16px 40px; }

/* ---------------- 底部 ---------------- */
.footer {
  text-align: center; padding: 24px 16px;
  color: var(--muted); font-size: 13px;
  border-top: 1px solid var(--border); background: #fff;
}
.footer-brand { font-weight: 700; color: var(--text); margin-bottom: 8px; }
.footer-tools {
  display: flex; flex-wrap: wrap; gap: 6px 14px; justify-content: center;
  max-width: 720px; margin: 0 auto 10px;
}
.footer-tools a { color: var(--muted); font-size: 13px; }
.footer-tools a:hover { color: var(--primary); }
.footer-links { margin-bottom: 6px; }
.footer-links a { margin: 0 6px; }
.footer-copy .icp { color: #9ca3af; }

/* ---------------- 首页 ---------------- */
.hero { text-align: center; padding: 32px 0 24px; }
.hero-title { font-size: 26px; margin: 0 0 8px; }
.hero-sub { color: var(--muted); margin: 0; font-size: 14px; }

.tabs {
  display: flex; gap: 8px; justify-content: center; flex-wrap: wrap;
  margin: 16px 0 24px;
}
.tab {
  border: 1px solid var(--border); background: #fff;
  padding: 8px 18px; border-radius: 999px;
  cursor: pointer; font-size: 14px; color: var(--muted);
  transition: all .15s;
}
.tab:hover { border-color: var(--primary); color: var(--primary); }
.tab.on { background: var(--primary); border-color: var(--primary); color: #fff; }

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 16px;
}
.card {
  display: block;
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px 16px;
  color: var(--text); transition: all .18s; box-shadow: var(--shadow);
}
.card:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); border-color: var(--primary); text-decoration: none; }
.card-icon { font-size: 30px; margin-bottom: 10px; }
.card-name { font-size: 16px; font-weight: 600; margin-bottom: 6px; }
.card-desc { font-size: 13px; color: var(--muted); line-height: 1.5; }
.card-go { margin-top: 12px; color: var(--primary); font-size: 13px; font-weight: 600; }

.coming { text-align: center; padding: 60px 20px; color: var(--muted); }
.coming-emoji { font-size: 48px; margin-bottom: 12px; }

/* ---------------- 工具页通用 ---------------- */
.tool-wrap { max-width: 860px; margin: 0 auto; }
.back { display: inline-block; color: var(--primary); font-size: 14px; margin-bottom: 12px; }

.tool-page {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow);
}
.tool-title { margin: 0 0 6px; font-size: 22px; }
.lead { margin: 0 0 18px; color: var(--muted); font-size: 14px; }
.tool-body { margin-top: 4px; }

.field { margin-bottom: 18px; }
.field-label {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 14px; font-weight: 600; margin-bottom: 8px;
}
.label-actions { display: flex; gap: 6px; font-weight: 400; }

/* 文本域 / 输入框 */
.ta {
  width: 100%; border: 1px solid var(--border); border-radius: 8px;
  padding: 12px; font-size: 14px; font-family: var(--mono);
  resize: vertical; background: #fafbfc; color: var(--text);
  transition: border-color .15s, box-shadow .15s;
}
.ta:focus { outline: none; border-color: var(--primary); background: #fff; box-shadow: 0 0 0 3px var(--primary-l); }
.ta.out { background: #f0fdf4; }

.inp {
  border: 1px solid var(--border); border-radius: 8px;
  padding: 10px 12px; font-size: 14px; background: #fff; color: var(--text);
}
.inp:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px var(--primary-l); }
.mono { font-family: var(--mono); }

/* 按钮 */
.btn-row { display: flex; flex-wrap: wrap; gap: 8px; margin: 8px 0 16px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 4px;
  border: 1px solid var(--border); background: #fff; color: var(--text);
  padding: 8px 14px; border-radius: 8px; font-size: 14px;
  cursor: pointer; transition: all .15s; white-space: nowrap;
}
.btn:hover { border-color: var(--primary); color: var(--primary); }
.btn:active { transform: scale(.97); }
.btn-primary { background: var(--primary); border-color: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-d); border-color: var(--primary-d); color: #fff; }
.btn-ghost { background: transparent; }
.btn-sm { padding: 4px 10px; font-size: 13px; }

/* 提示文本 */
.err {
  background: #fef2f2; color: var(--err); border: 1px solid #fecaca;
  padding: 10px 12px; border-radius: 8px; font-size: 13px;
  margin: 0 0 16px; white-space: pre-wrap; font-family: var(--mono);
}
.hint { color: var(--muted); font-size: 13px; margin: 16px 0 0; }
.muted { color: var(--muted); }

/* 使用说明区（SEO 文案） */
.docs { margin-top: 28px; padding-top: 24px; border-top: 1px dashed var(--border); }
.docs h2 { font-size: 17px; margin: 20px 0 8px; }
.docs h2:first-child { margin-top: 0; }
.docs p { color: #4b5563; font-size: 14px; margin: 8px 0; }
.docs ul { color: #4b5563; font-size: 14px; padding-left: 20px; }
.docs li { margin: 4px 0; }

/* ---------------- 时间戳工具 ---------------- */
.panel {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 18px; margin-bottom: 16px;
}
.panel-title { font-weight: 600; margin-bottom: 12px; font-size: 15px; }
.kv { display: flex; align-items: center; gap: 10px; padding: 6px 0; font-size: 14px; flex-wrap: wrap; }
.kv .k { width: 92px; color: var(--muted); flex-shrink: 0; }
.kv .v { font-weight: 500; }
.row { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.row .inp { flex: 1; min-width: 180px; }
.result-box {
  margin-top: 12px; background: var(--primary-l); border: 1px solid #bfdbfe;
  border-radius: 8px; padding: 12px;
  display: flex; align-items: center; justify-content: space-between; gap: 10px; flex-wrap: wrap;
}
.result-text { font-family: var(--mono); font-weight: 600; }

/* ---------------- 正则工具 ---------------- */
.regex-input {
  display: flex; align-items: center; gap: 4px;
  border: 1px solid var(--border); border-radius: 8px; padding: 6px 8px;
  background: #fff; flex-wrap: wrap;
}
.regex-input:focus-within { border-color: var(--primary); box-shadow: 0 0 0 3px var(--primary-l); }
.slash { color: var(--muted); font-family: var(--mono); font-size: 15px; }
.regex-core {
  flex: 1; min-width: 120px; border: none; outline: none;
  font-family: var(--mono); font-size: 15px; padding: 4px; background: transparent;
}
.flag-box { display: flex; gap: 6px; flex-wrap: wrap; border-left: 1px solid var(--border); padding-left: 10px; margin-left: 4px; }
.flag-chip { font-family: var(--mono); font-size: 13px; display: inline-flex; align-items: center; gap: 3px; cursor: pointer; user-select: none; }
.flag-chip input { width: auto; margin: 0; }

.lib { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-bottom: 18px; }
.lib-label { font-size: 13px; color: var(--muted); }
.chip {
  border: 1px solid var(--border); background: #fff; color: var(--muted);
  padding: 4px 12px; border-radius: 999px; font-size: 13px;
  cursor: pointer; transition: all .15s;
}
.chip:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-l); }

.hl-box {
  background: #0f172a; color: #e2e8f0; border-radius: 8px; padding: 14px;
  font-family: var(--mono); font-size: 14px; white-space: pre-wrap; word-break: break-all;
  min-height: 60px; line-height: 1.7;
}
.hl-box mark { background: #fde047; color: #1e293b; border-radius: 3px; padding: 1px 2px; }

.match-list { max-height: 320px; overflow-y: auto; border: 1px solid var(--border); border-radius: 8px; }
.match-item { display: flex; align-items: center; gap: 10px; padding: 8px 12px; font-size: 13px; border-bottom: 1px solid var(--border); flex-wrap: wrap; }
.match-item:last-child { border-bottom: none; }
.match-no { background: var(--primary-l); color: var(--primary); border-radius: 4px; padding: 1px 7px; font-weight: 600; font-size: 12px; }
.match-text { font-family: var(--mono); color: var(--text); max-width: 40%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.match-pos { color: var(--muted); font-family: var(--mono); }
.match-groups { color: var(--muted); font-family: var(--mono); font-size: 12px; }

/* ---------------- 哈希工具 ---------------- */
.hash-list { border: 1px solid var(--border); border-radius: 8px; }
.hash-item { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-bottom: 1px solid var(--border); }
.hash-item:last-child { border-bottom: none; }
.hash-algo { width: 72px; font-weight: 600; color: var(--muted); font-family: var(--mono); font-size: 13px; flex-shrink: 0; }
.hash-val { flex: 1; font-family: var(--mono); font-size: 13px; word-break: break-all; color: var(--text); }

/* ---------------- UUID 工具 ---------------- */
.uuid-options { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; margin-bottom: 12px; font-size: 14px; }
.uuid-options label { display: inline-flex; align-items: center; gap: 5px; color: var(--muted); cursor: pointer; }
.uuid-list { background: #fafbfc; border: 1px solid var(--border); border-radius: 8px; padding: 12px; font-family: var(--mono); font-size: 13px; max-height: 260px; overflow-y: auto; }
.uuid-list div { padding: 2px 0; word-break: break-all; }

/* ---------------- 掷骰子 ---------------- */
.dice-box { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; padding: 24px 0; min-height: 90px; align-items: center; }
.die {
  width: 64px; height: 64px; border-radius: 12px;
  background: #fff; border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 32px; font-weight: 700; color: var(--primary);
  box-shadow: var(--shadow);
}
.die.rolling { animation: dice-shake .5s; }
@keyframes dice-shake {
  0%, 100% { transform: rotate(0); }
  25% { transform: rotate(-12deg) scale(1.05); }
  50% { transform: rotate(10deg); }
  75% { transform: rotate(-6deg) scale(1.05); }
}
.dice-sum { text-align: center; font-size: 16px; color: var(--muted); margin-top: 8px; }
.dice-sum b { color: var(--primary); font-size: 20px; }
.dice-controls { display: flex; gap: 12px; align-items: center; justify-content: center; flex-wrap: wrap; margin-bottom: 8px; }
.dice-controls label { font-size: 14px; color: var(--muted); display: inline-flex; align-items: center; gap: 6px; }
.dice-controls input { width: 64px; }

/* ---------------- 抽签 ---------------- */
.pick-result {
  font-size: 30px; font-weight: 700; text-align: center;
  padding: 36px 20px; color: var(--primary);
  background: var(--primary-l); border: 1px solid #bfdbfe;
  border-radius: 12px; margin: 16px 0; word-break: break-all;
}
.pick-result small { display: block; font-size: 14px; color: var(--muted); font-weight: 400; margin-top: 6px; }

/* ---------------- 颜色工具 ---------------- */
.swatch { width: 100%; height: 96px; border-radius: 10px; border: 1px solid var(--border); margin-bottom: 14px; transition: background .2s; }
.color-rows { display: flex; flex-direction: column; gap: 2px; }
.color-row { display: flex; align-items: center; gap: 10px; padding: 8px 0; border-bottom: 1px solid var(--border); }
.color-row:last-child { border-bottom: none; }
.color-row .fmt { width: 56px; font-weight: 700; color: var(--muted); font-family: var(--mono); font-size: 13px; flex-shrink: 0; }
.color-row .cval { flex: 1; font-family: var(--mono); font-size: 14px; }

/* ---------------- 番茄钟 ---------------- */
.timer-stage { display: flex; flex-direction: column; align-items: center; padding: 16px 0; }
.timer-ring {
  width: 210px; height: 210px; border-radius: 50%;
  background: conic-gradient(var(--primary) var(--p, 0%), #e5e7eb 0);
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
}
.timer-ring-inner {
  width: 178px; height: 178px; border-radius: 50%; background: #fff;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.timer-time { font-size: 40px; font-weight: 700; font-family: var(--mono); color: var(--text); }
.timer-mode { font-size: 13px; color: var(--muted); margin-top: 2px; }
.timer-controls { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.timer-controls .btn { min-width: 96px; }
.mode-tabs { display: flex; gap: 8px; justify-content: center; margin-bottom: 16px; }

/* ---------------- 隐私弹层 ---------------- */
.modal {
  position: fixed; inset: 0; background: rgba(0, 0, 0, .4); z-index: 100;
  display: flex; align-items: center; justify-content: center; padding: 20px;
}
.modal-box { background: #fff; border-radius: var(--radius); padding: 24px; max-width: 440px; width: 100%; box-shadow: var(--shadow-lg); }
.modal-box h3 { margin: 0 0 12px; }
.modal-box p { font-size: 14px; color: var(--text); margin: 8px 0; }
.modal-box ul { font-size: 13px; color: var(--muted); padding-left: 20px; margin: 8px 0; }
.modal-box .btn { margin-top: 12px; width: 100%; }

/* ---------------- 复制 Toast ---------------- */
.bbx-toast {
  position: fixed; top: 20px; left: 50%;
  transform: translateX(-50%) translateY(-20px);
  background: #1f2937; color: #fff;
  padding: 10px 20px; border-radius: 8px; font-size: 14px;
  z-index: 200; opacity: 0; pointer-events: none;
  transition: opacity .2s, transform .2s; box-shadow: var(--shadow-lg);
}
.bbx-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.bbx-toast.ok { background: var(--ok); }
.bbx-toast.err { background: var(--err); }

/* ---------------- PC 端增强 ---------------- */
@media (min-width: 640px) {
  .hero-title { font-size: 32px; }
  .main { padding: 28px 20px 56px; }
  .topbar { height: 60px; padding: 0 24px; }
  .brand { font-size: 20px; }
}

/* ============ 第二批工具样式 ============ */

/* 通用：滑块行、复选框标签、文件选择 */
.slider-label { display:inline-flex; align-items:center; gap:8px; font-size:14px; color:var(--muted); }
.slider-label input[type="range"] { width:120px; }
.slider-val { display:inline-block; min-width:48px; font-family:var(--mono); color:var(--text); }
.check-label { font-size:14px; color:var(--muted); display:inline-flex; align-items:center; gap:4px; cursor:pointer; }
.file-label { position:relative; display:inline-block; overflow:hidden; }
.file-label input[type="file"] { position:absolute; left:0; top:0; opacity:0; width:100%; height:100%; cursor:pointer; }

/* ASCII 字符画 */
.ascii-out {
  background:#0f172a; color:#e2e8f0; border-radius:8px; padding:14px;
  font-family:var(--mono); font-size:8px; line-height:1.05; white-space:pre; overflow:auto;
  margin:0; max-height:420px;
}

/* 坏点检测 */
.pixel-colors { display:flex; flex-wrap:wrap; gap:10px; margin:16px 0; }
.pixel-btn { padding:14px 22px; border:1px solid var(--border); border-radius:10px; font-size:14px; cursor:pointer; transition:transform .12s; font-weight:600; }
.pixel-btn:hover { transform:translateY(-2px); }
.pixel-btn:active { transform:scale(.97); }
.pixel-fullscreen { position:fixed; inset:0; z-index:9999; cursor:pointer; }
.pixel-exit-hint { position:absolute; bottom:24px; left:50%; transform:translateX(-50%); font-size:13px; color:rgba(127,127,127,.75); }

/* 钢琴 */
.piano-controls { display:flex; gap:16px; align-items:center; flex-wrap:wrap; margin-bottom:18px; }
.piano-controls select { width:auto; }
.piano-hint { font-size:13px; color:var(--muted); }
.piano { position:relative; display:flex; height:170px; max-width:560px; margin:0 auto; user-select:none; }
.key { position:relative; cursor:pointer; transition:background .05s; }
.key.white { flex:1; background:#fff; border:1px solid #333; border-radius:0 0 6px 6px; margin:0 -1px; }
.key.white.press { background:#dbeafe; }
.key.black { position:absolute; top:0; width:7%; height:62%; background:#1f2937; border-radius:0 0 4px 4px; z-index:2; }
.key.black.press { background:#374151; }
.key-label { position:absolute; bottom:6px; left:0; right:0; text-align:center; font-size:11px; color:#9ca3af; }

/* 文字转语音 */
.tts-controls { display:flex; gap:16px; align-items:center; flex-wrap:wrap; margin-bottom:16px; }
.tts-controls > label { display:inline-flex; align-items:center; gap:8px; font-size:14px; color:var(--muted); }
.tts-controls select { width:auto; max-width:220px; }

/* 二维码 */
.qr-controls { display:flex; gap:14px; align-items:center; flex-wrap:wrap; margin-bottom:16px; }
.qr-controls > label { display:inline-flex; align-items:center; gap:6px; font-size:14px; color:var(--muted); }
.qr-out { text-align:center; padding:16px; }
.qr-out img { border:1px solid var(--border); border-radius:8px; background:#fff; padding:8px; max-width:100%; }

/* 图片压缩 */
.compress-result { display:grid; grid-template-columns:1fr 1fr; gap:14px; margin-top:8px; }
.compress-col { background:#fafbfc; border:1px solid var(--border); border-radius:8px; padding:10px; }
.compress-tag { font-size:13px; color:var(--muted); margin-bottom:8px; }
.compress-tag em { color:var(--ok); font-style:normal; font-weight:600; }
.compress-col img { width:100%; border-radius:6px; display:block; }
@media (max-width:560px){ .compress-result{ grid-template-columns:1fr; } }

/* 打字测试 */
.typing-sample { background:#fafbfc; border:1px solid var(--border); border-radius:8px; padding:16px; font-size:18px; line-height:1.9; margin-bottom:14px; font-family:var(--mono); white-space:pre-wrap; word-break:break-all; }
.typing-sample .t-correct { color:var(--ok); }
.typing-sample .t-wrong { color:#fff; background:var(--err); border-radius:2px; }
.typing-sample .t-current { background:#fde68a; border-radius:2px; }
.typing-result { display:flex; gap:16px; flex-wrap:wrap; justify-content:center; margin:20px 0; }
.t-stat { text-align:center; background:var(--primary-l); border-radius:10px; padding:14px 18px; min-width:90px; }
.t-stat b { display:block; font-size:24px; color:var(--primary); }
.t-stat small { font-size:12px; color:var(--muted); }

/* 密码生成器 */
.pwd-out { display:flex; gap:10px; align-items:center; background:#0f172a; border-radius:8px; padding:14px; margin-bottom:12px; }
.pwd-text { flex:1; color:#4ade80; font-family:var(--mono); font-size:16px; word-break:break-all; }
.pwd-strength { font-size:14px; margin-bottom:16px; display:flex; align-items:center; gap:10px; }
.pwd-strength .s-weak { color:var(--err); }
.pwd-strength .s-mid { color:#d97706; }
.pwd-strength .s-strong { color:var(--ok); }
.pwd-bar { flex:1; max-width:160px; height:8px; background:#e5e7eb; border-radius:4px; overflow:hidden; }
.pwd-bar i { display:block; height:100%; }
.pwd-bar .bar-weak { width:33%; background:var(--err); }
.pwd-bar .bar-mid { width:66%; background:#d97706; }
.pwd-bar .bar-strong { width:100%; background:var(--ok); }
.pwd-controls { margin-bottom:14px; }
.pwd-options { display:flex; gap:16px; flex-wrap:wrap; margin-bottom:16px; }
.pwd-options label { font-size:14px; color:var(--muted); display:inline-flex; align-items:center; gap:5px; cursor:pointer; }
.pwd-options input { width:auto; }

/* ============ 第三批工具样式（单位换算 / BMI / 个税 / 房贷 / 世界时钟） ============ */

/* 单位换算 */
.cat-tabs { display:flex; flex-wrap:wrap; gap:8px; margin-bottom:14px; }
.chip-active { background:var(--primary)!important; border-color:var(--primary)!important; color:#fff!important; }
.unit-list { border:1px solid var(--border); border-radius:8px; overflow:hidden; }
.unit-row { display:flex; justify-content:space-between; align-items:center; padding:10px 12px; border-bottom:1px solid var(--border); cursor:pointer; transition:background .12s; }
.unit-row:last-child { border-bottom:none; }
.unit-row:hover { background:var(--primary-l); }
.unit-label { font-size:14px; color:var(--muted); }
.unit-val { font-size:14px; font-weight:600; }

/* BMI / 个税 / 房贷 表单 */
.bmi-form, .tax-form { display:flex; flex-direction:column; gap:12px; margin-bottom:16px; }
.bmi-form label, .tax-form label { display:flex; align-items:center; gap:8px; font-size:14px; color:var(--muted); flex-wrap:wrap; }
.bmi-form input, .tax-form input { width:120px; }

/* BMI 结果 */
.bmi-result { text-align:center; background:var(--primary-l); border-radius:12px; padding:20px; margin-bottom:12px; }
.bmi-num { font-size:42px; font-weight:800; line-height:1; }
.bmi-cat { font-size:18px; font-weight:700; margin:6px 0; }
.bmi-tip { font-size:13px; color:var(--muted); }
.bmi-scale { display:flex; flex-wrap:wrap; gap:10px; justify-content:center; margin-top:16px; font-size:13px; font-weight:600; }

/* 世界时钟 */
.clock-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(150px,1fr)); gap:12px; }
.clock-card { background:#fafbfc; border:1px solid var(--border); border-radius:10px; padding:14px; }
.clock-city { font-size:14px; font-weight:600; }
.clock-city small { font-weight:400; color:var(--muted); font-size:12px; }
.clock-time { font-size:22px; font-weight:700; color:var(--primary); margin:6px 0 2px; }
.clock-meta { font-size:12px; color:var(--muted); }
