/* 阿亚克孜的欢迎主页 —— 独立样式表（bridge 的 CSP 是 style-src 'self'，不允许内联 <style>） */
:root {
  --bg: #f7f7f5;
  --surface: #ffffff;
  --line: #e3e2dd;
  --text: #1f1f1d;
  --muted: #6b6a65;
  --faint: #97968f;
  --accent: #185fa5;
  --accent-soft: #e6f1fb;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  min-height: 100vh;
  padding: 56px 20px 40px;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 15px;
  -webkit-text-size-adjust: 100%;
}
main { max-width: 520px; margin: 0 auto; }

.hero { text-align: center; margin-bottom: 34px; }
.hero h1 {
  font-size: 26px;
  line-height: 1.45;
  font-weight: 600;
  margin: 0 0 10px;
  letter-spacing: .5px;
}
.hero p { font-size: 14px; color: var(--muted); margin: 0; line-height: 1.7; }

.entry {
  display: block;
  padding: 18px 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  text-decoration: none;
  color: var(--text);
  transition: border-color .15s, transform .15s;
}
.entry:hover { border-color: var(--accent); transform: translateY(-1px); }
.entry + .entry { margin-top: 12px; }
.entry .t { font-size: 16px; font-weight: 500; display: flex; align-items: center; gap: 8px; }
.entry .d { font-size: 13px; color: var(--muted); margin-top: 6px; line-height: 1.6; }
.entry.primary { border-color: var(--accent); background: var(--accent-soft); }
.entry.primary .t { color: var(--accent); font-weight: 600; }
.entry.primary .d { color: #3f6d99; }
.tag {
  font-size: 11px; font-weight: 400; color: var(--muted);
  border: 1px solid var(--line); background: var(--surface);
  border-radius: 999px; padding: 1px 8px;
}

footer { margin-top: 40px; text-align: center; font-size: 12px; color: #b4b2a9; }
