/*
 * Theme Name: Default
 * Description: Moe CMS 默认主题，清新极简，移动端友好
 * Author: Moe Team
 * Version: 1.0.0
 */
:root {
  --moe-pink: #ff5fa2;
  --moe-purple: #a06bff;
  --moe-ink: #1f1320;
  --moe-muted: #8a7e88;
  --moe-bg: #fffafc;
  --moe-card: #ffffff;
  --moe-radius: 18px;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: -apple-system, "PingFang SC", "Microsoft YaHei", system-ui, sans-serif;
  color: var(--moe-ink);
  background: var(--moe-bg);
  line-height: 1.7;
}
a { color: var(--moe-pink); text-decoration: none; }
.container { max-width: 760px; margin: 0 auto; padding: 0 20px; }
.site-header {
  position: sticky; top: 0; z-index: 10;
  backdrop-filter: blur(10px);
  background: rgba(255,250,252,.8);
  border-bottom: 1px solid #ffe6f1;
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.logo { font-weight: 800; font-size: 20px;
  background: linear-gradient(120deg, var(--moe-pink), var(--moe-purple));
  -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero { text-align: center; padding: 56px 0 24px; }
.hero h1 { font-size: 34px; margin: 0 0 8px;
  background: linear-gradient(120deg, var(--moe-pink), var(--moe-purple));
  -webkit-background-clip: text; background-clip: text; color: transparent; }
.post-list { display: grid; gap: 16px; margin: 24px 0; }
.post-card { background: var(--moe-card); border: 1px solid #ffe6f1; border-radius: var(--moe-radius);
  padding: 20px; transition: transform .2s, box-shadow .2s; }
.post-card:hover { transform: translateY(-4px); box-shadow: 0 14px 30px rgba(255,95,162,.15); }
.post-card h2 { margin: 0 0 6px; font-size: 20px; }
.post-meta { color: var(--moe-muted); font-size: 13px; }
.article { background: var(--moe-card); border: 1px solid #ffe6f1; border-radius: var(--moe-radius);
  padding: 32px; margin: 24px 0; }
.article h1 { margin-top: 0; }
.moe-badge { display: inline-block; margin-top: 24px; padding: 6px 14px; border-radius: 999px;
  background: linear-gradient(120deg, var(--moe-pink), var(--moe-purple)); color: #fff; font-size: 13px; }
.site-footer { text-align: center; color: var(--moe-muted); padding: 40px 0; font-size: 13px; }
