/* ===== 设计变量 ===== */
:root {
  --amber: #C8651A;
  --amber-light: #E89952;
  --amber-bg: #FFF4E0;
  --amber-dark: #A05015;
  --ink: #1B3A4B;
  --ink-light: #2E5A6E;
  --ink-soft: #4A6B7A;
  --paper: #F8F1E4;
  --paper-dark: #EFE6D2;
  --paper-light: #FDFAF2;
  --red: #D62828;
  --red-light: #F8E0E0;
  --text: #1a1a1a;
  --text-soft: #555;
  --text-muted: #888;
  --line: #D9CDB3;
  --line-soft: #E8DFC8;
  --white: #ffffff;
  --shadow: rgba(27, 58, 75, 0.08);
  --shadow-strong: rgba(27, 58, 75, 0.15);
}

/* ===== Reset ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: "Noto Sans SC", "Microsoft YaHei", sans-serif;
  background: var(--paper);
  color: var(--text);
  line-height: 1.75;
  font-size: 15px;
  min-height: 100vh;
  position: relative;
  padding-top: 64px;
}

/* 纸张纹理 */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3CfeColorMatrix values='0 0 0 0 0.1 0 0 0 0 0.08 0 0 0 0 0.05 0 0 0 0.03 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
}

/* ===== 警示条 ===== */
.alert-bar {
  background: var(--amber);
  color: var(--paper-light);
  padding: 8px 20px;
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  position: relative;
  z-index: 10;
}

.alert-bar strong { color: #fff; font-size: 14px; }

.alert-icon {
  display: inline-block;
  width: 18px; height: 18px;
  line-height: 18px;
  background: var(--red);
  color: #fff;
  border-radius: 50%;
  font-weight: bold;
  font-size: 12px;
  margin-right: 8px;
  vertical-align: middle;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  text-align: center;
  padding: 80px 20px 70px;
  overflow: hidden;
  z-index: 1;
}

.hero-glow {
  position: absolute;
  top: -50%; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--amber) 0%, transparent 60%);
  opacity: 0.12;
  pointer-events: none;
}

.hero-content { position: relative; z-index: 2; }

.hero-tag {
  display: inline-block;
  background: var(--ink);
  color: var(--paper);
  padding: 5px 16px;
  border-radius: 2px;
  font-size: 12px;
  letter-spacing: 2px;
  margin-bottom: 28px;
  font-weight: 500;
}

.hero h1 {
  font-family: "Noto Serif SC", serif;
  font-size: 64px;
  font-weight: 900;
  color: var(--ink);
  letter-spacing: 8px;
  line-height: 1.1;
}

.hero-dot { color: var(--amber); margin: 0 4px; }

.hero-title-sub {
  font-size: 42px !important;
  letter-spacing: 6px !important;
  color: var(--amber) !important;
  margin-top: 4px;
}

.hero-subtitle {
  font-size: 15px;
  color: var(--text-soft);
  margin-top: 20px;
  letter-spacing: 1px;
}

.hero-meta {
  margin-top: 24px;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 1px;
}

.meta-divider { margin: 0 10px; color: var(--line); }
.meta-item { color: var(--ink-soft); }

/* ===== 主区域 ===== */
.main {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px 60px;
  position: relative;
  z-index: 1;
}

.section { margin-bottom: 56px; }

.section-header {
  margin-bottom: 28px;
  position: relative;
}

.section-num {
  font-family: "JetBrains Mono", monospace;
  font-size: 13px;
  color: var(--amber);
  font-weight: 500;
  letter-spacing: 2px;
}

.section-title {
  font-family: "Noto Serif SC", serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--ink);
  margin: 4px 0 6px;
  letter-spacing: 1px;
}

.section-desc {
  font-size: 14px;
  color: var(--text-soft);
}

/* ===== 表单区 ===== */
.form-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 32px;
  align-items: start;
}

.upload-column { display: flex; flex-direction: column; }

.field-label {
  display: block;
  font-weight: 700;
  color: var(--ink);
  font-size: 14px;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.upload-area {
  border: 2px dashed var(--line);
  border-radius: 8px;
  background: var(--paper-light);
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.upload-area:hover, .upload-area.dragover {
  border-color: var(--amber);
  background: var(--amber-bg);
}

.upload-placeholder {
  text-align: center;
  padding: 20px;
  color: var(--text-muted);
}

.upload-icon {
  color: var(--amber);
  margin-bottom: 12px;
  display: flex;
  justify-content: center;
}

.upload-text {
  font-size: 14px;
  color: var(--ink);
  font-weight: 500;
  margin-bottom: 4px;
}

.upload-hint {
  font-size: 12px;
  color: var(--text-muted);
}

.photo-preview {
  position: relative;
  width: 100%;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.photo-preview img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 4px;
}

.photo-remove {
  position: absolute;
  bottom: 8px; right: 8px;
  background: rgba(27, 58, 75, 0.85);
  color: #fff;
  border: none;
  padding: 5px 12px;
  border-radius: 3px;
  font-size: 12px;
  cursor: pointer;
  font-family: inherit;
}

.photo-remove:hover { background: var(--red); }

/* 表单字段 */
.form-group { margin-bottom: 24px; }

.form-row {
  display: flex;
  gap: 12px;
}

.form-field { flex: 1; margin-bottom: 10px; }
.form-field-small { flex: 0 0 100px; }

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--paper-light);
  font-size: 14px;
  font-family: inherit;
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--amber);
  box-shadow: 0 0 0 3px var(--amber-bg);
}

.form-field textarea {
  resize: vertical;
  min-height: 70px;
  line-height: 1.7;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--text-muted);
  font-size: 13px;
}

/* ===== 生成按钮 ===== */
.generate-section {
  text-align: center;
  padding: 20px 0;
}

.generate-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--amber);
  color: #fff;
  border: none;
  padding: 16px 40px;
  border-radius: 6px;
  font-size: 17px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 14px rgba(200, 101, 26, 0.35);
  letter-spacing: 1px;
}

.generate-btn:hover {
  background: var(--amber-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200, 101, 26, 0.45);
}

.generate-btn:active { transform: translateY(0); }

.generate-btn-arrow {
  font-size: 20px;
  transition: transform 0.3s;
}

.generate-btn:hover .generate-btn-arrow { transform: translateX(4px); }

.generate-btn:disabled {
  background: var(--text-muted);
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}

.generate-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 20px;
}

.loading-ring {
  width: 22px; height: 22px;
  border: 3px solid var(--amber-bg);
  border-top-color: var(--amber);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

.loading-text {
  font-size: 14px;
  color: var(--text-soft);
  letter-spacing: 0.5px;
}

.generate-hint {
  margin-top: 14px;
  font-size: 13px;
  color: var(--text-muted);
}

/* ===== 结果区 ===== */
.results-section {
  animation: fadeUp 0.6s ease;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}

.card {
  background: var(--paper-light);
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px var(--shadow);
  transition: box-shadow 0.3s;
}

.card:hover { box-shadow: 0 4px 16px var(--shadow-strong); }

.card-wide {
  grid-column: 1 / -1;
}

.card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line-soft);
  background: var(--paper-dark);
}

.card-tag {
  font-size: 13px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 3px;
  letter-spacing: 0.5px;
}

.tag-detailed { background: var(--ink); color: var(--paper); }
.tag-moments { background: var(--amber); color: #fff; }
.tag-sms { background: var(--ink-soft); color: #fff; }
.tag-ai { background: #5B3A8A; color: #fff; }

.card-warn {
  font-size: 12px;
  color: var(--red);
  font-weight: 500;
}

.copy-btn {
  margin-left: auto;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink-soft);
  padding: 4px 12px;
  border-radius: 3px;
  font-size: 12px;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s;
}

.copy-btn:hover {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.copy-btn.copied {
  background: var(--amber);
  color: #fff;
  border-color: var(--amber);
}

.card-body {
  padding: 16px;
  font-size: 14px;
  line-height: 1.85;
  color: var(--text);
  white-space: pre-wrap;
  word-break: break-word;
  min-height: 80px;
}

.card-body.editable:focus {
  outline: none;
  background: var(--amber-bg);
}

.card-body.editable:hover {
  background: rgba(255, 244, 224, 0.5);
}

/* ===== 海报 ===== */
.poster-section {
  margin-top: 36px;
}

.poster-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  flex-wrap: wrap;
  gap: 12px;
}

.poster-title {
  font-family: "Noto Serif SC", serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
}

.download-btn {
  background: var(--ink);
  color: #fff;
  border: none;
  padding: 10px 22px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s;
  min-height: 44px;
}

.download-btn:hover {
  background: var(--amber);
  transform: translateY(-1px);
}

.poster-wrapper {
  display: flex;
  justify-content: center;
  padding: 20px;
  background: var(--paper-dark);
  border-radius: 8px;
  overflow-x: auto;
}

.poster {
  width: 595px;
  max-width: 100%;
  background: #fff;
  padding: 0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.15);
  font-family: "Noto Sans SC", sans-serif;
  overflow: hidden;
  border: 1px solid #e0e0e0;
}

/* 海报头部红色横幅 */
.poster-header-band {
  background: var(--red);
  background: linear-gradient(135deg, #c0392b 0%, #D62828 50%, #e74c3c 100%);
  color: #fff;
  text-align: center;
  padding: 22px 0 16px;
  position: relative;
}

.poster-header-band::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: rgba(0,0,0,0.15);
}

.poster-header-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.poster-header-deco {
  font-size: 20px;
  opacity: 0.6;
}

.poster-header-text {
  font-family: "Noto Serif SC", serif;
  font-size: 36px;
  font-weight: 900;
  letter-spacing: 12px;
  text-indent: 12px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.poster-header-sub {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 3px;
  opacity: 0.7;
  margin-top: 6px;
}

/* 海报主体 */
.poster-body {
  display: flex;
  gap: 24px;
  padding: 28px 24px 20px;
}

.poster-photo-wrap {
  flex: 0 0 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.poster-photo {
  width: 180px;
  height: 220px;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--ink);
  overflow: hidden;
  position: relative;
}

.poster-photo::before {
  content: "";
  position: absolute;
  inset: 2px;
  border: 1px solid rgba(27,58,75,0.2);
  pointer-events: none;
}

.poster-photo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}

.poster-photo-placeholder {
  color: #aaa;
  font-size: 13px;
}

.poster-photo-caption {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 1px;
}

/* 信息表 */
.poster-info {
  flex: 1;
  min-width: 0;
}

.poster-info-table {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid #e0e0e0;
  border-bottom: none;
}

.poster-info-row {
  display: flex;
  gap: 0;
  font-size: 14px;
  line-height: 1.6;
  border-bottom: 1px solid #e0e0e0;
}

.poster-label {
  flex: 0 0 80px;
  font-weight: 700;
  color: var(--ink);
  padding: 8px 12px;
  background: #f8f8f8;
  border-right: 1px solid #e0e0e0;
  text-align: justify;
  text-align-last: justify;
}

.poster-value {
  flex: 1;
  color: var(--text);
  padding: 8px 12px;
  min-width: 0;
  word-break: break-word;
}

.poster-info-features .poster-value { line-height: 1.7; }

/* 联系电话高亮区 */
.poster-contact-box {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 24px;
  padding: 14px 20px;
  background: linear-gradient(135deg, #fff5f5 0%, #ffe8e8 100%);
  border: 2px solid var(--red);
  border-radius: 6px;
}

.poster-contact-icon {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  background: var(--red);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.poster-contact-content {
  flex: 1;
  min-width: 0;
}

.poster-contact-label {
  font-size: 12px;
  color: var(--text-soft);
  margin-bottom: 2px;
}

.poster-contact-phone {
  font-family: "JetBrains Mono", monospace;
  font-size: 22px;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 1px;
  word-break: break-all;
}

/* 底部呼吁 */
.poster-footer {
  margin-top: 20px;
  padding: 18px 24px 0;
  text-align: center;
}

.poster-appeal-text p {
  font-size: 14px;
  color: var(--text-soft);
  margin-bottom: 4px;
}

.poster-appeal-highlight {
  font-family: "Noto Serif SC", serif;
  font-size: 15px !important;
  font-weight: 600;
  color: var(--ink) !important;
  margin-bottom: 14px !important;
}

.poster-footer-bar {
  background: var(--ink);
  padding: 8px 0;
  margin: 0 -24px;
}

.poster-watermark {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  color: rgba(248,241,228,0.7);
  letter-spacing: 2px;
}

/* ===== Footer ===== */
.footer {
  background: var(--ink);
  color: var(--paper);
  padding: 50px 24px 24px;
  margin-top: 40px;
  position: relative;
  z-index: 1;
}

.footer-grid {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 32px;
}

.footer-item {
  text-align: center;
}

.footer-icon {
  color: var(--amber-light);
  margin-bottom: 12px;
  display: flex;
  justify-content: center;
}

.footer-item h4 {
  font-family: "Noto Serif SC", serif;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--paper);
}

.footer-item p {
  font-size: 13px;
  color: var(--paper-dark);
  opacity: 0.8;
  line-height: 1.7;
}

.footer-item strong { color: var(--amber-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  text-align: center;
}

.footer-bottom p {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  color: var(--paper-dark);
  opacity: 0.6;
  letter-spacing: 1px;
}

/* ===== 数据统计 ===== */
.stats-section { margin-top: 0; }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.stat-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px 20px;
  text-align: center;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--amber);
  opacity: 0;
  transition: opacity 0.3s;
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(27,58,75,0.1);
}

.stat-card:hover::before { opacity: 1; }

.stat-number {
  font-family: "Noto Serif SC", serif;
  font-size: 42px;
  font-weight: 900;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-unit {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-soft);
  margin-left: 4px;
}

.stat-label {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}

.stat-desc {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===== 使用流程 ===== */
.guide-section { margin-top: 0; }

.steps-grid {
  display: flex;
  align-items: stretch;
  gap: 16px;
}

.step-card {
  flex: 1;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px 24px;
  text-align: center;
  position: relative;
  transition: all 0.3s;
}

.step-card:hover {
  border-color: var(--amber);
  box-shadow: 0 8px 24px rgba(214,40,40,0.08);
}

.step-num {
  font-family: "JetBrains Mono", monospace;
  font-size: 14px;
  font-weight: 500;
  color: var(--amber);
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.step-icon {
  color: var(--ink);
  margin-bottom: 16px;
  display: flex;
  justify-content: center;
}

.step-title {
  font-family: "Noto Serif SC", serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 10px;
}

.step-desc {
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.7;
}

.step-arrow {
  display: flex;
  align-items: center;
  color: var(--border);
  flex: 0 0 auto;
}

/* ===== 黄金72小时 ===== */
.emergency-section { margin-top: 0; }

.emergency-intro {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.8;
  margin-bottom: 24px;
  padding: 16px 20px;
  background: #fff8e1;
  border-left: 3px solid var(--amber);
  border-radius: 0 6px 6px 0;
}

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.timeline-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.timeline-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
}

.timeline-urgent::before { background: var(--red); }
.timeline-important::before { background: var(--amber); }
.timeline-normal::before { background: var(--ink); }

.timeline-time {
  font-family: "Noto Serif SC", serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}

.timeline-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 12px;
  margin-bottom: 16px;
}

.timeline-urgent .timeline-badge {
  background: rgba(214,40,40,0.1);
  color: var(--red);
}

.timeline-important .timeline-badge {
  background: rgba(241,143,1,0.15);
  color: #b87c00;
}

.timeline-normal .timeline-badge {
  background: rgba(27,58,75,0.1);
  color: var(--ink);
}

.timeline-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.timeline-list li {
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.7;
  padding: 6px 0 6px 18px;
  position: relative;
  border-bottom: 1px solid #f5f5f5;
}

.timeline-list li:last-child { border-bottom: none; }

.timeline-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--border);
}

.timeline-urgent .timeline-list li::before { background: var(--red); }
.timeline-important .timeline-list li::before { background: var(--amber); }
.timeline-normal .timeline-list li::before { background: var(--ink); }

.timeline-list li strong { color: var(--red); }

/* ===== 寻人资源 ===== */
.resources-section { margin-top: 0; }

.resources-intro {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.8;
  margin-bottom: 24px;
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.resource-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px;
  transition: all 0.3s;
}

.resource-card:hover {
  border-color: var(--amber);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}

.resource-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 3px;
  background: rgba(27,58,75,0.08);
  color: var(--ink);
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.resource-name {
  font-family: "Noto Serif SC", serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}

.resource-desc {
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.7;
  margin-bottom: 12px;
}

.resource-tip {
  font-size: 12px;
  color: var(--text-muted);
  padding: 8px 12px;
  background: var(--paper-dark);
  border-radius: 4px;
  line-height: 1.6;
}

.anti-fraud-notice {
  margin-top: 24px;
  padding: 16px 20px;
  background: #fff5f5;
  border: 1px solid rgba(214,40,40,0.2);
  border-radius: 6px;
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.7;
}

.anti-fraud-notice strong { color: var(--red); }

/* ===== FAQ ===== */
.faq-section { margin-top: 0; }

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.3s;
}

.faq-item:hover { border-color: var(--amber); }

.faq-q, .faq-a {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
}

.faq-q {
  border-bottom: 1px solid #f5f5f5;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
}

.faq-a {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.8;
  background: #fafafa;
}

.faq-icon {
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-family: "JetBrains Mono", monospace;
  font-size: 13px;
  font-weight: 700;
}

.faq-q .faq-icon {
  background: var(--ink);
  color: var(--paper);
}

.faq-icon-a {
  background: var(--amber) !important;
  color: #fff !important;
}

/* ===== 走失类型选择器 ===== */
.type-selector {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.type-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  background: #fff;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-soft);
  cursor: pointer;
  transition: all 0.2s;
  font-family: "Noto Sans SC", sans-serif;
}

.type-btn:hover {
  border-color: var(--amber);
  color: var(--ink);
}

.type-btn.active {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--paper);
}

.type-btn svg { flex-shrink: 0; }

/* ===== 日期三态切换 ===== */
.form-field-with-toggle {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}

.form-field-with-toggle input {
  flex: 1;
}

.date-toggle {
  display: flex;
  gap: 2px;
  background: var(--paper-dark);
  border-radius: 6px;
  padding: 3px;
  flex-shrink: 0;
}

.date-toggle-btn {
  padding: 6px 12px;
  border: none;
  background: transparent;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s;
  font-family: "Noto Sans SC", sans-serif;
}

.date-toggle-btn.active {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

/* ===== 省份+详细地点 ===== */
.form-field-location {
  display: flex;
  gap: 10px;
}

.form-field-location select {
  flex: 0 0 120px;
}

.form-field-location input {
  flex: 1;
}

/* ===== 海报二维码 ===== */
.poster-qr-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 8px;
  background: #fff;
  border-radius: 6px;
  margin-left: 16px;
}

.poster-qr-area > div:first-child {
  width: 72px;
  height: 72px;
}

.poster-qr-area img,
.poster-qr-area canvas {
  width: 72px !important;
  height: 72px !important;
}

.poster-qr-text {
  font-size: 10px;
  color: var(--text-muted);
  text-align: center;
}

/* ===== 社交分享 ===== */
.share-section {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.share-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}

.share-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  background: #fff;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-soft);
  cursor: pointer;
  transition: all 0.2s;
  font-family: "Noto Sans SC", sans-serif;
}

.share-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.share-wechat:hover { border-color: #07c160; color: #07c160; }
.share-weibo:hover { border-color: #e6162d; color: #e6162d; }
.share-copy:hover { border-color: var(--ink); color: var(--ink); }

/* ===== 成功案例 ===== */
.stories-section { margin-top: 0; }

.stories-intro {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.8;
  margin-bottom: 24px;
}

.stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.story-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.story-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--amber);
}

.story-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.story-number {
  font-family: "JetBrains Mono", monospace;
  font-size: 13px;
  font-weight: 500;
  color: var(--amber);
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.story-title {
  font-family: "Noto Serif SC", serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.5;
}

.story-text {
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.8;
  margin-bottom: 14px;
}

.story-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 3px;
  background: rgba(241,143,1,0.12);
  color: #b87c00;
}

.stories-notice {
  margin-top: 24px;
  padding: 14px 18px;
  background: var(--paper-dark);
  border-radius: 6px;
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.7;
}

.stories-notice strong { color: var(--text-soft); }

/* ===== 响应式 ===== */

/* 平板及以下 */
@media (max-width: 768px) {
  /* Hero */
  .hero { padding: 50px 20px 50px; }
  .hero h1 { font-size: 42px; letter-spacing: 4px; }
  .hero-title-sub { font-size: 28px !important; letter-spacing: 3px !important; }
  .hero-subtitle { font-size: 14px; }
  .hero-meta { font-size: 11px; flex-wrap: wrap; justify-content: center; }
  .meta-divider { margin: 0 6px; }

  /* 主区域 */
  .main { padding: 0 16px 40px; }
  .section { margin-bottom: 40px; }
  .section-title { font-size: 22px; }

  /* 表单 */
  .form-grid { grid-template-columns: 1fr; gap: 24px; }
  .upload-area { min-height: 200px; }
  .photo-preview { height: 200px; }
  .form-row { flex-direction: column; gap: 0; }
  .form-field-small { flex: 1; }
  .form-field input,
  .form-field select,
  .form-field textarea {
    padding: 12px 14px;
    font-size: 15px;
    min-height: 44px;
  }

  /* 生成按钮 */
  .generate-btn {
    width: 100%;
    padding: 16px 24px;
    font-size: 16px;
    justify-content: center;
  }

  /* 卡片 */
  .cards-grid { grid-template-columns: 1fr; }
  .card-body { font-size: 13px; padding: 14px; }
  .copy-btn { min-height: 36px; padding: 6px 14px; }

  /* 海报 */
  .poster-wrapper { padding: 12px; }
  .poster { width: 100%; }

  .poster-header-text {
    font-size: 26px;
    letter-spacing: 8px;
    text-indent: 8px;
  }
  .poster-header-sub { font-size: 9px; letter-spacing: 2px; }

  .poster-body {
    flex-direction: column;
    align-items: stretch;
    padding: 20px 16px;
    gap: 16px;
  }

  .poster-photo-wrap {
    flex: 0 0 auto;
    align-self: center;
  }
  .poster-photo {
    width: 150px;
    height: 190px;
  }

  .poster-label {
    flex: 0 0 68px;
    padding: 6px 10px;
    font-size: 13px;
  }
  .poster-value {
    padding: 6px 10px;
    font-size: 13px;
  }

  .poster-contact-box {
    margin: 0 16px;
    padding: 12px 16px;
  }
  .poster-contact-icon { width: 38px; height: 38px; }
  .poster-contact-phone { font-size: 18px; }

  .poster-footer { padding: 16px 16px 0; }
  .poster-footer-bar { margin: 0 -16px; }
  .poster-appeal-highlight { font-size: 14px !important; }

  /* 底部 */
  .footer { padding: 36px 16px 20px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }

  /* 数据统计 */
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-card { padding: 20px 14px; }
  .stat-number { font-size: 32px; }

  /* 使用流程 */
  .steps-grid { flex-direction: column; }
  .step-arrow {
    transform: rotate(90deg);
    justify-content: center;
    padding: 4px 0;
  }

  /* 黄金72小时 */
  .timeline-grid { grid-template-columns: 1fr; }

  /* 寻人资源 */
  .resources-grid { grid-template-columns: repeat(2, 1fr); }
  .resource-card { padding: 18px; }

  /* FAQ */
  .faq-q, .faq-a { padding: 14px 16px; }
  .faq-q { font-size: 14px; }
  .faq-a { font-size: 13px; }
}

/* 手机小屏 */
@media (max-width: 480px) {
  /* Hero */
  .hero { padding: 36px 16px 40px; }
  .hero h1 { font-size: 34px; letter-spacing: 2px; }
  .hero-title-sub { font-size: 22px !important; letter-spacing: 2px !important; }
  .hero-subtitle { font-size: 13px; }
  .hero-meta { font-size: 10px; }
  .hero-tag { font-size: 11px; padding: 4px 12px; }

  /* 警示条 */
  .alert-bar { font-size: 12px; padding: 7px 12px; }

  /* 表单 */
  .section-title { font-size: 19px; }
  .section-num { font-size: 12px; }
  .field-label { font-size: 13px; }

  /* 海报 */
  .poster-header-text {
    font-size: 22px;
    letter-spacing: 6px;
    text-indent: 6px;
  }
  .poster-header-deco { font-size: 16px; }
  .poster-header-sub { display: none; }

  .poster-photo { width: 130px; height: 165px; }

  .poster-label {
    flex: 0 0 60px;
    padding: 5px 8px;
    font-size: 12px;
  }
  .poster-value {
    padding: 5px 8px;
    font-size: 12px;
  }

  .poster-contact-box { padding: 10px 12px; gap: 10px; }
  .poster-contact-icon { width: 34px; height: 34px; }
  .poster-contact-icon svg { width: 18px; height: 18px; }
  .poster-contact-phone { font-size: 16px; }
  .poster-contact-label { font-size: 11px; }

  .poster-appeal-text p { font-size: 12px; }
  .poster-appeal-highlight { font-size: 13px !important; }
  .poster-watermark { font-size: 10px; }

  /* 卡片标签 */
  .card-tag { font-size: 12px; padding: 3px 8px; }

  /* 走失类型 */
  .type-selector { gap: 8px; }
  .type-btn { padding: 8px 12px; font-size: 13px; }
  .type-btn svg { width: 16px; height: 16px; }

  /* 日期三态 */
  .form-field-with-toggle { flex-direction: column; align-items: stretch; gap: 8px; }
  .date-toggle { align-self: flex-start; }

  /* 省份选择器 */
  .form-field-location { flex-direction: column; }
  .form-field-location select { flex: 1; }

  /* 海报二维码 */
  .poster-qr-area { margin-left: 0; margin-top: 8px; }
  .poster-qr-area > div:first-child { width: 60px; height: 60px; }
  .poster-qr-area img, .poster-qr-area canvas { width: 60px !important; height: 60px !important; }

  /* 社交分享 */
  .share-section { gap: 8px; }
  .share-btn { padding: 8px 14px; font-size: 13px; }

  /* 成功案例 */
  .stories-grid { grid-template-columns: 1fr; }
  .story-card { padding: 18px; }

  /* 数据统计 */
  .stats-grid { grid-template-columns: 1fr; }
  .stat-number { font-size: 28px; }

  /* 底部 */
  .footer-grid { grid-template-columns: 1fr; }

  /* 寻人资源 */
  .resources-grid { grid-template-columns: 1fr; }
  .resource-card { padding: 16px; }

  /* 黄金72小时 */
  .timeline-card { padding: 18px; }
  .timeline-time { font-size: 16px; }
  .timeline-list li { font-size: 12px; }
}

/* ===== 打印 ===== */
@media print {
  body::before, .alert-bar, .hero, .form-section, .generate-section,
  .cards-grid, .card-wide, .poster-header, .footer,
  .stats-section, .guide-section, .emergency-section,
  .resources-section, .stories-section, .faq-section,
  .share-section, .navbar, .back-to-top, .map-section, .map-disclaimer { display: none !important; }
  body { padding-top: 0; }
  .poster-wrapper { background: none; padding: 0; }
  .poster { box-shadow: none; width: 100%; }
}

/* ===== 导航栏 ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(248, 241, 228, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line-soft);
  transition: box-shadow 0.3s, background 0.3s;
}

.navbar.scrolled {
  box-shadow: 0 2px 12px rgba(27, 58, 75, 0.08);
  background: rgba(248, 241, 228, 0.96);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 24px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--ink);
  flex-shrink: 0;
}

.nav-logo svg { color: var(--amber); flex-shrink: 0; }

.nav-logo-text {
  font-family: "Noto Serif SC", serif;
  font-size: 20px;
  font-weight: 900;
  color: var(--ink);
  letter-spacing: 2px;
}

.nav-logo-sub {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 1px;
  border-left: 1px solid var(--line);
  padding-left: 8px;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  margin: 0 auto;
}

.nav-link {
  padding: 8px 14px;
  font-size: 14px;
  color: var(--text-soft);
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.2s;
  font-weight: 500;
  position: relative;
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--ink);
  background: rgba(241, 143, 1, 0.08);
}

.nav-link.active {
  color: var(--amber);
  font-weight: 600;
}

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: var(--amber);
  border-radius: 1px;
}

/* Nav actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-emergency-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 7px 14px;
  background: var(--red);
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 700;
  font-family: "JetBrains Mono", monospace;
  transition: all 0.2s;
}

.nav-emergency-btn:hover {
  background: #b51e1e;
  transform: translateY(-1px);
}

.nav-cta-btn {
  padding: 7px 18px;
  background: var(--amber);
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.2s;
}

.nav-cta-btn:hover {
  background: var(--amber-dark);
  transform: translateY(-1px);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
  border-radius: 4px;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 1px;
  transition: all 0.3s;
  display: block;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Back to top */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(27, 58, 75, 0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s;
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--amber);
  transform: translateY(-2px);
}

/* ===== 导航栏响应式 ===== */
@media (max-width: 768px) {
  body { padding-top: 56px; }

  .nav-container {
    height: 56px;
    padding: 0 16px;
    gap: 12px;
  }

  .nav-logo-sub { display: none; }
  .nav-logo-text { font-size: 18px; }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 56px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--paper-light);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    transform: translateY(-150%);
    transition: transform 0.3s ease;
    padding: 8px 0;
    max-height: calc(100vh - 56px);
    overflow-y: auto;
    margin: 0;
  }

  .nav-links.open {
    transform: translateY(0);
  }

  .nav-link {
    padding: 14px 20px;
    border-radius: 0;
    font-size: 15px;
    border-bottom: 1px solid var(--line-soft);
  }

  .nav-link:last-child { border-bottom: none; }

  .nav-link.active::after {
    display: none;
  }

  .nav-link.active {
    background: var(--amber-bg);
    border-left: 3px solid var(--amber);
    padding-left: 17px;
  }

  .nav-actions {
    gap: 8px;
    margin-left: auto;
  }

  .nav-emergency-btn {
    padding: 6px 10px;
    font-size: 12px;
  }

  .nav-cta-btn {
    display: none;
  }

  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 480px) {
  .nav-emergency-btn svg { display: none; }
  .nav-emergency-btn { padding: 6px 12px; }
  .nav-logo svg { width: 24px; height: 24px; }
}

/* ===== 地图与搜索范围 ===== */
.map-feature-section {
  position: relative;
}

.map-feature-section::before {
  content: "";
  position: absolute;
  top: 0; left: -4px; right: -4px;
  height: 4px;
  background: linear-gradient(90deg, var(--amber) 0%, var(--red) 50%, var(--ink) 100%);
  border-radius: 4px 4px 0 0;
}

.map-feature-header {
  text-align: center;
  margin-bottom: 32px;
}

.section-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--amber), var(--amber-dark));
  color: #fff;
  letter-spacing: 2px;
  box-shadow: 0 2px 8px rgba(200, 101, 26, 0.3);
}

.map-feature-tags {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 12px;
}

.map-feature-tags .section-num {
  font-size: 14px;
  font-weight: 700;
}

.map-feature-header .section-title {
  font-size: 32px;
  background: linear-gradient(135deg, var(--ink), var(--amber));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.map-feature-header .section-desc {
  max-width: 600px;
  margin: 8px auto 0;
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.8;
}

.map-section {
  padding: 24px;
  background: var(--paper-light);
  border: 1px solid var(--line-soft);
  border-radius: 10px;
}

.map-section-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}

.map-section-header .field-label { margin-bottom: 0; }

.map-beta-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 3px;
  background: linear-gradient(135deg, #5B3A8A, #7B52AB);
  color: #fff;
  letter-spacing: 0.5px;
}

.map-hint {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.map-controls {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.map-search-box {
  display: flex;
  flex: 1;
  min-width: 260px;
  gap: 0;
}

.map-search-box input {
  flex: 1;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-right: none;
  border-radius: 4px 0 0 4px;
  background: #fff;
  font-size: 14px;
  font-family: inherit;
  color: var(--text);
  min-height: 44px;
}

.map-search-box input:focus {
  outline: none;
  border-color: var(--amber);
  box-shadow: 0 0 0 3px var(--amber-bg);
}

.map-search-box button {
  padding: 0 20px;
  background: var(--ink);
  color: #fff;
  border: none;
  border-radius: 0 4px 4px 0;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s;
  min-height: 44px;
}

.map-search-box button:hover { background: var(--ink-light); }

.duration-selector {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.duration-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
}

.duration-selector select {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
  font-size: 14px;
  font-family: inherit;
  color: var(--text);
  cursor: pointer;
  min-height: 44px;
  transition: border-color 0.2s;
}

.duration-selector select:focus {
  outline: none;
  border-color: var(--amber);
  box-shadow: 0 0 0 3px var(--amber-bg);
}

.map-container {
  width: 100%;
  height: 380px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #e8e8e8;
  position: relative;
}

.map-container::before {
  content: "地图加载中...";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  color: var(--text-muted);
  font-size: 14px;
  z-index: 0;
}

.map-info {
  margin-top: 16px;
  padding: 16px 18px;
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
}

.map-info-row {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  margin-bottom: 8px;
}

.map-info-row:last-child { margin-bottom: 0; }

.map-info-icon { font-size: 16px; }

.map-info-label {
  color: var(--text-muted);
  font-weight: 500;
  flex-shrink: 0;
}

.map-info-value {
  color: var(--ink);
  font-weight: 500;
  word-break: break-word;
}

.map-radius-info {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dashed var(--line-soft);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.map-radius-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
}

.map-radius-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid #fff;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.1);
}

.map-radius-dot-high { background: var(--red); }
.map-radius-dot-medium { background: var(--amber); }
.map-radius-dot-low { background: var(--ink); }

.map-radius-label {
  font-weight: 600;
  color: var(--ink);
  flex-shrink: 0;
  min-width: 70px;
}

.map-radius-value {
  color: var(--text-soft);
}

.map-radius-value strong {
  color: var(--ink);
  font-family: "JetBrains Mono", monospace;
}

.map-disclaimer {
  margin-top: 12px;
  padding: 10px 14px;
  background: #fff8e1;
  border: 1px solid rgba(241, 143, 1, 0.25);
  border-radius: 6px;
  font-size: 12px;
  color: var(--text-soft);
  line-height: 1.7;
  display: flex;
  align-items: flex-start;
  gap: 6px;
}

.map-disclaimer-icon {
  color: var(--amber);
  font-weight: bold;
  flex-shrink: 0;
}

/* 海报搜索范围行 */
.poster-info-search .poster-value {
  font-size: 13px;
  color: var(--ink);
}

/* 地图响应式 */
@media (max-width: 768px) {
  .map-section { padding: 16px; }
  .map-feature-header .section-title { font-size: 24px; }
  .map-feature-header .section-desc { font-size: 13px; }
  .map-controls { flex-direction: column; gap: 10px; }
  .map-search-box { min-width: 100%; }
  .duration-selector { width: 100%; }
  .duration-selector select { flex: 1; }
  .map-container { height: 300px; }
  .map-info { padding: 14px; }
  .map-info-row { font-size: 13px; }
  .map-radius-item { font-size: 12px; }
  .map-radius-label { min-width: 60px; }
}

@media (max-width: 480px) {
  .map-section { padding: 12px; }
  .map-feature-header .section-title { font-size: 20px; }
  .map-container { height: 240px; }
  .map-hint { font-size: 12px; }
  .map-disclaimer { font-size: 11px; padding: 8px 12px; }
}
