/* F1-06 / F3-06：hidden 属性必须真正隐藏，防止 .filter-row{display:flex} 等规则覆盖 */
[hidden] { display: none !important; }

:root {
  --bg: #f5f5f7;
  --surface: #ffffff;
  --text: #1d1d1f;
  --text-2: #6e6e73;
  --text-3: #a1a1a6;
  --accent: #007aff;
  --accent-soft: rgba(0, 122, 255, 0.1);
  --border: #e3e3e8;
  --shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 6px 20px rgba(0, 0, 0, 0.05);
  --radius: 16px;
  --ok: #34c759;
  --broken: #ff3b30;
  --unknown: #c7c7cc;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #000000;
    --surface: #1c1c1e;
    --text: #f5f5f7;
    --text-2: #98989d;
    --text-3: #636366;
    --accent-soft: rgba(10, 132, 255, 0.2);
    --border: #38383a;
    --shadow: 0 1px 3px rgba(0, 0, 0, 0.4), 0 6px 20px rgba(0, 0, 0, 0.35);
  }
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "PingFang SC",
    "Helvetica Neue", "Microsoft YaHei", sans-serif;
  -webkit-font-smoothing: antialiased;
}

/* Hero — dominant region */
.hero { padding: 30px 20px 8px; }
.hero-title {
  font-size: clamp(22px, 4.2vw, 34px);
  line-height: 1.28;
  font-weight: 700;
  letter-spacing: -0.6px;
  margin: 0 0 10px;
}
.hero-sub {
  font-size: 15px;
  color: var(--text-2);
  margin: 0 0 20px;
  max-width: 640px;
}
.stats { display: flex; gap: 12px; flex-wrap: wrap; }
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 92px;
  padding: 14px 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow);
}
.stat-num { font-size: 26px; font-weight: 700; letter-spacing: -0.5px; color: var(--text); }
.stat-label { font-size: 12px; color: var(--text-2); margin-top: 2px; }

/* Loading skeleton */
.loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 70px 0;
  color: var(--text-2);
  font-size: 14px;
}
.loading[hidden] { display: none; }
.spinner {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 3px solid var(--border);
  border-top-color: var(--accent);
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.wrap { max-width: 1080px; margin: 0 auto; padding: 0 20px; }

/* Header */
.site-header {
  padding: 28px 0 18px;
  position: sticky;
  top: 0;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  z-index: 20;
  border-bottom: 1px solid var(--border);
}
.brand { display: flex; align-items: center; gap: 14px; }
.logo { font-size: 40px; line-height: 1; }
.site-header h1 { font-size: 24px; margin: 0; font-weight: 700; letter-spacing: -0.3px; }
.tagline { margin: 2px 0 0; font-size: 13px; color: var(--text-2); }

.search-box {
  margin-top: 16px;
  display: flex;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 14px;
  box-shadow: var(--shadow);
}
.search-box .search-icon { font-size: 15px; margin-right: 8px; opacity: 0.6; }
.search-box input {
  border: none;
  background: transparent;
  outline: none;
  font-size: 16px;
  width: 100%;
  color: var(--text);
}

/* Filters */
/* ---------- 编辑精选 Top 10 ---------- */
.top10 {
  margin-top: 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px 22px 12px;
}
.top10-head {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.top10-title { font-size: 19px; font-weight: 700; margin: 0; }
.top10-sub { font-size: 12.5px; color: var(--text-2); }
.top10-list { list-style: none; margin: 0; padding: 0; }
.top10-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 11px 10px;
  border-radius: 12px;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: background .15s ease, transform .15s ease;
}
.top10-item:last-child { border-bottom: none; }
.top10-item:hover { background: var(--accent-soft); transform: translateX(2px); }
.t10-rank {
  flex: 0 0 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  color: var(--text-2);
  background: var(--bg);
  border-radius: 50%;
}
.top10-item.rank-1 .t10-rank { background: #fff4d6; color: #c79100; }
.top10-item.rank-2 .t10-rank { background: #eef1f4; color: #8a94a6; }
.top10-item.rank-3 .t10-rank { background: #fbeede; color: #b06a2c; }
.t10-body { flex: 1 1 auto; min-width: 0; }
.t10-cat { font-size: 11.5px; color: var(--text-3); }
.t10-name { font-size: 15px; font-weight: 600; margin: 1px 0 2px; }
.t10-desc {
  font-size: 12.5px;
  color: var(--text-2);
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.t10-install { flex: 0 0 auto; font-size: 16px; color: var(--accent); }
@media (max-width: 560px) {
  .top10 { padding: 16px 14px 8px; }
  .t10-desc { font-size: 11.5px; }
  .top10-item { gap: 10px; padding: 9px 6px; }
}

.filters { padding: 18px 20px 6px; }
.chips { display: flex; flex-direction: column; gap: 12px; margin-bottom: 14px; }
.chip-group { display: flex; flex-direction: column; gap: 8px; }
.chip-group-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-3);
  letter-spacing: 0.3px;
  margin: 0;
}
.chip-group-row { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text-2);
  border-radius: 999px;
  padding: 7px 14px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.15s ease;
  white-space: nowrap;
}
.chip:hover { color: var(--text); }
.chip.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  font-weight: 600;
}

.filter-row { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.select { font-size: 13px; color: var(--text-2); display: flex; align-items: center; gap: 6px; }
.select select {
  font-size: 14px;
  padding: 7px 10px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  outline: none;
}
.count { font-size: 13px; color: var(--text-3); margin-left: auto; }
.reset {
  font-size: 13px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text-2);
  border-radius: 10px;
  padding: 7px 12px;
  cursor: pointer;
}
.reset:hover { color: var(--text); }

/* Grid */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
  padding: 18px 0 40px;
}
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: 0 4px 10px rgba(0,0,0,0.08), 0 12px 30px rgba(0,0,0,0.07); }
.card-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; }
.card-series { font-size: 12px; color: var(--accent); background: var(--accent-soft); padding: 3px 9px; border-radius: 999px; font-weight: 600; }
.card h3 { font-size: 17px; margin: 12px 0 6px; letter-spacing: -0.2px; }
.card-desc {
  font-size: 13.5px; color: var(--text-2); line-height: 1.5; flex: 1; margin: 0 0 14px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card-meta { display: flex; align-items: center; justify-content: space-between; font-size: 12px; color: var(--text-3); }
.source-badge { display: inline-flex; align-items: center; gap: 5px; }
.status-dot { width: 9px; height: 9px; border-radius: 50%; display: inline-block; vertical-align: middle; margin-left: 6px; }
.status-dot.ok { background: var(--ok); }
.status-dot.unknown { background: var(--unknown); }
.status-dot.broken { background: var(--broken); }

.get-btn {
  margin-top: 14px;
  text-align: center;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 11px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: block;
}
.get-btn:active { opacity: 0.85; }
.get-btn:disabled {
  background: var(--text-3);
  cursor: not-allowed;
  opacity: 0.7;
}

/* 编辑判定为不推荐的候选卡片 */
.card-rejected {
  opacity: 0.72;
  background: rgba(255, 59, 48, 0.03);
  border: 1px solid rgba(255, 59, 48, 0.18);
}
.card-rejected .card-desc,
.card-rejected .card-en {
  color: var(--text-3);
}
.reject-flag {
  background: rgba(255, 59, 48, 0.12);
  color: #d70015;
  border-radius: 999px;
  padding: 2px 8px;
  font-weight: 600;
}

.card-dl {
  display: block;
  margin-top: 8px;
  text-align: center;
  font-size: 13px;
  color: var(--text-2);
  text-decoration: none;
  padding: 7px 0;
  border-radius: 10px;
  background: rgba(0,0,0,.03);
}
.card-dl:active { background: rgba(0,0,0,.06); }
.card-dl-note { font-size: 11px; color: var(--text-3); margin: 4px 2px 0; line-height: 1.4; }
.dl-note { font-size: 12px; color: var(--text-2); line-height: 1.6; margin: 12px 0 0; padding: 10px 12px; background: rgba(0,0,0,.025); border-radius: 10px; border: 1px solid var(--border); }

.empty { text-align: center; color: var(--text-2); padding: 60px 0; font-size: 15px; }

/* Footer */
.site-footer { padding: 30px 20px 50px; font-size: 12.5px; color: var(--text-2); line-height: 1.7; border-top: 1px solid var(--border); margin-top: 10px; }
.site-footer a { color: var(--accent); }
.muted { color: var(--text-3); }

/* Modal */
.modal { position: fixed; inset: 0; z-index: 50; display: flex; align-items: center; justify-content: center; padding: 20px; }
.modal[hidden] { display: none; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.45); backdrop-filter: blur(4px); }
.modal-card {
  position: relative;
  background: var(--surface);
  color: var(--text);
  border-radius: 20px;
  max-width: 520px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  padding: 26px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.modal-close { position: absolute; top: 16px; right: 16px; border: none; background: transparent; font-size: 18px; color: var(--text-2); cursor: pointer; }
.modal-card h2 { margin: 0 0 6px; font-size: 22px; letter-spacing: -0.3px; padding-right: 30px; }
.modal-series { display: inline-block; font-size: 12px; color: var(--accent); background: var(--accent-soft); padding: 3px 10px; border-radius: 999px; font-weight: 600; margin-bottom: 14px; }
.modal-desc { font-size: 15px; line-height: 1.65; color: var(--text); margin: 0 0 18px; }
.detail-table { width: 100%; border-collapse: collapse; font-size: 14px; margin-bottom: 18px; }
.detail-table td { padding: 9px 0; border-top: 1px solid var(--border); vertical-align: top; }
.detail-table td:first-child { color: var(--text-3); width: 86px; white-space: nowrap; }
.detail-table a { color: var(--accent); word-break: break-all; }
.modal-notes { font-size: 13.5px; color: var(--text-2); background: var(--accent-soft); border-radius: 12px; padding: 12px 14px; line-height: 1.6; margin-bottom: 18px; }
.modal-notes b { color: var(--text); }
.modal-actions { display: flex; gap: 10px; }
.modal-actions .get-btn { flex: 1; }
.btn-ghost { flex: 1; text-align: center; border: 1px solid var(--border); background: transparent; color: var(--text-2); border-radius: 12px; padding: 11px; font-size: 15px; cursor: pointer; text-decoration: none; }

/* Header actions + search row + tabs */
.header-actions { display: flex; justify-content: flex-end; margin-top: 10px; }
.ghost-btn {
  border: 1px solid var(--border); background: var(--surface); color: var(--text-2);
  border-radius: 10px; padding: 7px 12px; font-size: 13px; cursor: pointer;
}
.ghost-btn:hover { color: var(--text); }
.search-row { padding: 10px 20px 0; }
.tabs { display: flex; gap: 10px; padding: 14px 20px 4px; }
.tab {
  border: 1px solid var(--border); background: var(--surface); color: var(--text-2);
  border-radius: 12px; padding: 8px 16px; font-size: 14px; cursor: pointer; font-weight: 600;
  transition: all 0.15s ease;
}
.tab.active { background: var(--accent); border-color: var(--accent); color: #fff; }

/* Status pill + flag */
.status-pill {
  color: #fff; font-size: 11px; font-weight: 700; padding: 3px 9px; border-radius: 999px;
  white-space: nowrap; letter-spacing: 0.2px;
}
.flag {
  font-size: 11px; color: #b25000; background: #fff3e0; border: 1px solid #ffd8a8;
  padding: 3px 8px; border-radius: 999px; font-weight: 600;
}
.pain { font-size: 12px; color: var(--text-3); }

/* Need cards reuse .card; slight accent */
.card.need { border-left: 3px solid var(--accent); }

/* Detail blocks */
.modal-block { margin: 14px 0; }
.modal-block b { display: block; font-size: 13px; color: var(--text-2); margin-bottom: 6px; }
.modal-block pre {
  white-space: pre-wrap; word-break: break-word; background: var(--bg);
  border: 1px solid var(--border); border-radius: 12px; padding: 12px 14px;
  font-size: 13px; line-height: 1.6; margin: 0; font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
}
/* 稳定短链（对外推广） */
.stable-link { background: rgba(0,122,255,0.06); border: 1px solid rgba(0,122,255,0.25); border-radius: 12px; padding: 12px 14px; }
.stable-link b { color: #007AFF; margin-bottom: 8px; }
.copy-row { display: flex; align-items: center; gap: 8px; }
.stable-url { flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace; font-size: 12.5px; color: var(--text);
  background: var(--bg); border: 1px solid var(--border); border-radius: 8px; padding: 7px 9px; }
.copy-btn { flex: 0 0 auto; border: none; background: #007AFF; color: #fff; border-radius: 8px;
  padding: 7px 14px; font-size: 13px; cursor: pointer; }
.copy-btn:active { opacity: 0.85; }
.stable-note { font-size: 12px; color: var(--text-2); margin: 8px 0 0; line-height: 1.5; }
.disc-body p { font-size: 13.5px; line-height: 1.7; color: var(--text); margin: 0 0 12px; }
.disc-body b { color: var(--text); }

/* ---------------- 一键安装相关 ---------------- */
.check { font-size: 13px; color: var(--text-2); display: inline-flex; align-items: center; gap: 6px; cursor: pointer; user-select: none; }
.check input { accent-color: var(--accent); width: 15px; height: 15px; }

.install-badge {
  display: inline-flex; align-items: center; gap: 3px;
  font-size: 11px; font-weight: 600; color: #007a33;
  background: rgba(52, 199, 89, 0.12); padding: 2px 8px; border-radius: 999px;
}
.draft-badge {
  display: inline-flex; align-items: center; gap: 3px;
  font-size: 11px; font-weight: 600; color: #8a5a00;
  background: rgba(255, 149, 0, 0.14); padding: 2px 8px; border-radius: 999px;
  border: 1px solid rgba(255, 149, 0, 0.3);
}
.get-btn.install {
  background: var(--accent);
  box-shadow: 0 4px 14px rgba(0, 122, 255, 0.28);
  font-weight: 600;
}
.get-btn.install:active { box-shadow: 0 2px 8px rgba(0, 122, 255, 0.28); }

.btn-primary {
  flex: 1; text-align: center; border: none;
  background: var(--accent); color: #fff;
  border-radius: 12px; padding: 11px 14px; font-size: 15px; font-weight: 600; cursor: pointer;
  text-decoration: none;
}
.btn-primary:active { opacity: 0.88; }

.install-hint {
  font-size: 12.5px; line-height: 1.6; color: var(--text-2);
  background: var(--accent-soft); border-radius: 12px; padding: 10px 12px; margin: 14px 0 0;
}

/* ---------------- 二维码安装弹层 ---------------- */
.qr-card { max-width: 340px; text-align: center; }
.qr-card h2 { padding-right: 0; }
.qr-sub { font-size: 13px; color: var(--text-2); line-height: 1.6; margin: 6px 0 16px; }
.qr-code {
  display: flex; justify-content: center; align-items: center;
  background: #fff; border: 1px solid var(--border); border-radius: 14px;
  padding: 16px; margin: 0 auto 14px; width: fit-content;
}
.qr-code svg { width: 220px; height: 220px; display: block; }
.qr-url {
  font-size: 11px; color: var(--text-3); word-break: break-all;
  background: var(--bg); border-radius: 8px; padding: 8px 10px; margin: 0 0 14px;
}
.qr-note { font-size: 12px; color: var(--text-3); line-height: 1.5; margin: 14px 0 0; }

@media (max-width: 520px) {
  .site-header h1 { font-size: 20px; }
  .grid { grid-template-columns: 1fr; }
  .count { width: 100%; margin: 4px 0 0; }
  .tabs { overflow-x: auto; }
}

/* 英文原名副标题 */
.card-en {
  font-size: 12px; color: var(--text-3); margin: -6px 0 8px;
  font-style: italic; word-break: break-word;
}
.modal-en {
  font-size: 13px; color: var(--text-2); margin: 2px 0 10px;
  font-style: italic;
}
/* 来源说明块 */
.modal-block.attribution p {
  font-size: 12.5px; color: var(--text-2); line-height: 1.6; margin: 6px 0 0;
}
.modal-block.attribution { border-left: 3px solid var(--border); padding-left: 12px; }
/* 本地化说明 — 醒目提示 */
.modal-block.localiz {
  background: #fff8e1;
  border-radius: 8px;
  padding: 10px 12px;
  border-left: 3px solid #f9a825;
}
.modal-block.localiz b { color: #e65100; }
/* 汉化对照表 */
.modal-block.localiz-map {
  background: #eef6ff;
  border-radius: 8px;
  padding: 12px 14px;
  border-left: 3px solid #2f80ed;
}
.modal-block.localiz-map > b { color: #1a5fb4; display: block; margin-bottom: 4px; }
.modal-block.localiz-map .map-sub { font-size: 12px; color: #5a6b7b; margin: 0 0 8px; }
.localiz-table { width: 100%; border-collapse: collapse; margin: 6px 0 10px; font-size: 13px; }
.localiz-table th { background: #dbeafe; color: #1a3a5c; text-align: left; padding: 6px 8px; font-weight: 600; }
.localiz-table td { padding: 6px 8px; border-bottom: 1px solid #e3edf7; }
.localiz-table .en-cell { font-family: ui-monospace, Menlo, Consolas, monospace; color: #b3261e; }
.localiz-table .zh-cell { color: #1a7f37; font-weight: 600; }
.localiz-table .src-cell { white-space: nowrap; color: #8a6d3b; font-size: 12px; }
.map-tut { margin-top: 6px; font-size: 13px; }
.map-tut summary { cursor: pointer; color: #1a5fb4; user-select: none; }
.map-tut pre { white-space: pre-wrap; background: #f4f8fd; border-radius: 6px; padding: 8px 10px; margin-top: 6px; color: #334; font-size: 12.5px; }

/* ---------------- 反馈公开栏 ---------------- */
.fb-bar { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 16px; flex-wrap: wrap; }
.fb-stats { font-size: 14px; color: var(--text-2); }
.fb-stats b { color: var(--text); font-size: 18px; }
.fb-drafts { background: rgba(120,120,128,0.08); border: 1px dashed var(--border); border-radius: 12px; padding: 12px 14px; margin-bottom: 18px; }
.fb-drafts > b { display: block; font-size: 13px; color: var(--text-2); margin-bottom: 10px; }
.fb-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 16px; margin-bottom: 14px; box-shadow: var(--shadow);
}
.fb-card.draft { opacity: 0.92; border-style: dashed; }
.fb-pending { font-size: 12px; color: #b26a00; background: #fff4e0; border-radius: 6px; padding: 4px 8px; display: inline-block; margin-bottom: 10px; }
.fb-head { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.fb-avatar {
  width: 40px; height: 40px; border-radius: 50%; flex: 0 0 40px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 18px; text-shadow: 0 1px 1px rgba(0,0,0,0.2);
}
.fb-meta { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.fb-nick { font-weight: 600; color: var(--text); font-size: 14px; }
.fb-type { color: #fff; font-size: 12px; padding: 2px 8px; border-radius: 20px; }
.fb-date { font-size: 12px; color: var(--text-3); }
.fb-content { margin: 0 0 10px; color: var(--text); line-height: 1.7; font-size: 14.5px; white-space: pre-wrap; word-break: break-word; }
.fb-foot { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.fb-related { font-size: 13px; color: var(--accent); text-decoration: none; }
.fb-related:hover { text-decoration: underline; }
.fb-related.disabled { color: var(--text-3); pointer-events: none; }
.fb-like {
  margin-left: auto; border: 1px solid var(--border); background: var(--surface);
  color: var(--text-2); border-radius: 20px; padding: 5px 14px; font-size: 13px; cursor: pointer;
  transition: all 0.15s;
}
.fb-like:hover { border-color: var(--accent); color: var(--accent); }
.fb-like.liked { background: var(--accent-soft); border-color: var(--accent); color: var(--accent); font-weight: 600; }
.fb-reply { margin-top: 10px; background: var(--accent-soft); border-radius: 10px; padding: 10px 12px; font-size: 13.5px; color: var(--text); line-height: 1.6; }
.fb-reply b { color: var(--accent); }
.fb-reply-date { color: var(--text-3); font-size: 12px; }
/* 提交表单 */
.fb-form { display: flex; flex-direction: column; gap: 14px; margin-top: 8px; }
.fb-field { display: flex; flex-direction: column; gap: 6px; font-size: 13.5px; color: var(--text-2); font-weight: 600; }
.fb-field input, .fb-field select, .fb-field textarea {
  font: inherit; font-weight: 400; color: var(--text); background: var(--bg);
  border: 1px solid var(--border); border-radius: 10px; padding: 10px 12px; outline: none;
}
.fb-field input:focus, .fb-field select:focus, .fb-field textarea:focus { border-color: var(--accent); }
.fb-field textarea { resize: vertical; min-height: 90px; }
.fb-field .req { color: var(--broken); }
.fb-result { margin-top: 16px; padding: 14px; border-radius: 10px; background: rgba(52,199,89,0.1); border: 1px solid rgba(52,199,89,0.4); }
.fb-result p { margin: 0 0 8px; font-size: 13.5px; color: var(--text); }
.fb-result .copy-row { margin: 6px 0; }
.fb-mail a { color: var(--accent); font-weight: 600; }
.fb-note { color: var(--text-2) !important; font-size: 12.5px !important; }

/* 四层植入：详情弹层品牌提示（Layer 2/3） */
.modal-promo { margin-top: 16px; text-align: center; font-size: 13px; color: var(--text-2); line-height: 1.6; border-top: 1px solid var(--border); padding-top: 14px; }
.modal-promo a { color: var(--accent); font-weight: 600; }
.btn-ghost.promo-btn { background: rgba(0,122,255,0.08); border-color: rgba(0,122,255,0.3); color: var(--accent); font-weight: 600; }
