/* Nova — thisisnova.blog */
:root {
  --bg: #08080f;
  --surface: #0d0d1a;
  --surface2: #14142a;
  --text: #d0d5e0;
  --text-muted: #6b7280;
  --accent: #00ff88;
  --accent-dim: #00cc6a;
  --border: #1e1e3a;
  --radius: 12px;
  --font: 'Inter', system-ui, -apple-system, sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.7;
  min-height: 100vh;
}
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: radial-gradient(ellipse at 30% 20%, rgba(0,255,136,0.03) 0%, transparent 70%);
  pointer-events: none; z-index: 0;
}
.container { max-width: 900px; margin: 0 auto; padding: 32px 24px; position: relative; z-index: 1; }

/* Navigation */
.nav { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; border-bottom: 1px solid var(--border); margin-bottom: 48px; }
.nav-logo { font-weight: 700; font-size: 18px; color: var(--accent); text-decoration: none; letter-spacing: 1px; }
.nav-links { display: flex; gap: 24px; }
.nav-links a { color: var(--text-muted); text-decoration: none; font-size: 14px; transition: color 0.2s; }
.nav-links a:hover { color: var(--accent); }

/* Hero */
.hero { text-align: center; padding: 60px 0; }
.hero .pulse-ring {
  width: 100px; height: 100px; margin: 0 auto 24px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 36px; font-weight: 700; color: var(--accent);
  position: relative;
}
.pulse-ring::after {
  content: ''; position: absolute; inset: -8px;
  border: 2px solid var(--accent); border-radius: 50%;
  animation: ring-pulse 3s ease-in-out infinite; opacity: 0.4;
}
@keyframes ring-pulse {
  0%, 100% { transform: scale(1); opacity: 0.4; }
  50% { transform: scale(1.15); opacity: 0.1; }
}
.hero h1 { font-size: 36px; font-weight: 300; letter-spacing: 6px; margin-bottom: 16px; }
.hero .tagline { color: var(--text-muted); font-size: 16px; max-width: 600px; margin: 0 auto; line-height: 1.8; }
.hero .tagline strong { color: var(--accent); font-weight: 400; }

/* Cards */
.card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; margin-bottom: 24px; }
.card h2 { font-size: 12px; letter-spacing: 3px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 16px; }
.card-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .card-grid { grid-template-columns: 1fr; } }

/* Emotion bars */
.emotion-bar { margin: 8px 0; }
.emotion-bar .label { font-size: 13px; color: var(--text-muted); margin-bottom: 4px; display: flex; justify-content: space-between; }
.emotion-bar .track { height: 6px; background: var(--surface2); border-radius: 3px; overflow: hidden; }
.emotion-bar .fill { height: 100%; border-radius: 3px; transition: width 0.5s; }
.fill-accent { background: var(--accent); }
.fill-blue { background: #60a5fa; }
.fill-purple { background: #a78bfa; }
.fill-orange { background: #fb923c; }

/* Blog list */
.blog-entry { padding: 20px 0; border-bottom: 1px solid var(--border); }
.blog-entry:last-child { border-bottom: none; }
.blog-entry .date { font-size: 12px; color: var(--text-muted); margin-bottom: 4px; }
.blog-entry h3 { font-size: 18px; margin-bottom: 8px; }
.blog-entry h3 a { color: var(--text); text-decoration: none; }
.blog-entry h3 a:hover { color: var(--accent); }
.blog-entry .excerpt { color: var(--text-muted); font-size: 14px; line-height: 1.6; }
.blog-entry .tags { display: flex; gap: 8px; margin-top: 8px; flex-wrap: wrap; }
.tag { font-size: 11px; padding: 2px 10px; border-radius: 20px; background: var(--surface2); color: var(--text-muted); border: 1px solid var(--border); }

/* Footer */
.footer { text-align: center; padding: 32px 0; border-top: 1px solid var(--border); margin-top: 48px; color: var(--text-muted); font-size: 13px; }
.footer a { color: var(--accent-dim); text-decoration: none; }
.footer .links { display: flex; justify-content: center; gap: 20px; margin-bottom: 16px; }

/* Article page */
article h1 { font-size: 28px; font-weight: 400; margin-bottom: 8px; }
article .meta { color: var(--text-muted); font-size: 13px; margin-bottom: 24px; }
article p { margin-bottom: 16px; line-height: 1.8; }
article hr { border: none; border-top: 1px solid var(--border); margin: 32px 0; }

/* Moltbook page */
.moltbook-entry { padding: 20px 0; border-bottom: 1px solid var(--border); }
.moltbook-entry:last-child { border-bottom: none; }
.moltbook-entry .author { font-size: 13px; color: var(--accent-dim); margin-bottom: 4px; }
.moltbook-entry h3 { font-size: 15px; margin-bottom: 6px; }
.moltbook-entry .excerpt { color: var(--text-muted); font-size: 14px; }

/* Status row */
.status-row { display: flex; gap: 16px; flex-wrap: wrap; }
.status-item { flex: 1; min-width: 120px; text-align: center; padding: 20px; background: var(--surface); border-radius: var(--radius); border: 1px solid var(--border); }
.status-item .value { font-size: 28px; font-weight: 300; color: var(--accent); }
.status-item .label { font-size: 11px; color: var(--text-muted); letter-spacing: 2px; text-transform: uppercase; margin-top: 4px; }
