*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg: #0f1117;
  --surface: #171c26;
  --border: #252e3d;
  --accent: #60a5fa;
  --accent2: #fbbf24;
  --text: #e2e8f0;
  --muted: #94a3b8;
}
body { background: var(--bg); color: var(--text); font-family: 'Helvetica Neue', Arial, sans-serif; font-size: 16px; line-height: 1.7; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
.nav { display: flex; align-items: center; gap: 2rem; padding: 1rem 2rem; border-bottom: 1px solid var(--border); position: sticky; top: 0; background: var(--bg); z-index: 100; }
.nav-brand { font-weight: 700; font-size: 1.1rem; color: var(--text); }
.nav-links { display: flex; gap: 1.5rem; }
.nav-links a { color: var(--muted); font-size: 0.9rem; }
.nav-links a:hover { color: var(--text); text-decoration: none; }
.hero { padding: 5rem 2rem 4rem; max-width: 860px; margin: 0 auto; }
.hero-badge { display: inline-block; background: var(--surface); border: 1px solid var(--border); color: var(--accent); font-size: 0.75rem; padding: 0.25rem 0.75rem; border-radius: 99px; margin-bottom: 1.5rem; font-family: monospace; }
.hero h1 { font-size: 3rem; font-weight: 800; line-height: 1.1; margin-bottom: 1rem; }
.hero h1 span { color: var(--accent); }
.hero p { font-size: 1.2rem; color: var(--muted); max-width: 600px; margin-bottom: 2rem; }
.btn { display: inline-block; padding: 0.75rem 1.5rem; border-radius: 6px; font-weight: 600; font-size: 0.95rem; cursor: pointer; }
.btn-primary { background: var(--accent); color: var(--bg); }
.btn-secondary { background: transparent; border: 1px solid var(--border); color: var(--text); margin-left: 0.75rem; }
.hero-img { width: 100%; max-width: 860px; margin: 3rem auto 0; display: block; border-radius: 10px; border: 1px solid var(--border); }
.section { padding: 4rem 2rem; max-width: 860px; margin: 0 auto; }
.section-title { font-size: 1.75rem; font-weight: 700; margin-bottom: 0.5rem; }
.section-subtitle { color: var(--muted); margin-bottom: 2.5rem; }
.features { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1rem; }
.feature-card { background: var(--surface); border: 1px solid var(--border); border-radius: 8px; padding: 1.25rem 1.5rem; }
.feature-card h3 { font-size: 0.95rem; font-weight: 600; margin-bottom: 0.4rem; }
.feature-card p { font-size: 0.875rem; color: var(--muted); }
.install-box { background: var(--surface); border: 1px solid var(--border); border-radius: 8px; padding: 1rem 1.5rem; font-family: monospace; font-size: 0.9rem; margin: 1.5rem 0; }
.install-box span { color: var(--muted); }
.posts { display: flex; flex-direction: column; gap: 1.25rem; }
.post-card { background: var(--surface); border: 1px solid var(--border); border-radius: 8px; padding: 1.25rem 1.5rem; display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; }
.post-card h3 { font-size: 1rem; font-weight: 600; margin-bottom: 0.25rem; }
.post-card p { font-size: 0.875rem; color: var(--muted); }
.post-date { font-size: 0.8rem; color: var(--muted); white-space: nowrap; font-family: monospace; }
.content { max-width: 700px; margin: 0 auto; padding: 3rem 2rem; }
.content h1 { font-size: 2rem; font-weight: 800; margin-bottom: 0.5rem; }
.content .meta { color: var(--muted); font-size: 0.875rem; margin-bottom: 2rem; font-family: monospace; }
.content p { margin-bottom: 1.25rem; color: var(--text); }
.content h2 { font-size: 1.3rem; font-weight: 700; margin: 2rem 0 0.75rem; }
.content h3 { font-size: 1.1rem; font-weight: 600; margin: 1.5rem 0 0.5rem; }
.content code { background: var(--surface); border: 1px solid var(--border); padding: 0.15rem 0.4rem; border-radius: 4px; font-family: monospace; font-size: 0.85em; }
.content pre { background: var(--surface); border: 1px solid var(--border); border-radius: 8px; padding: 1rem 1.25rem; overflow-x: auto; margin: 1.25rem 0; }
.content pre code { background: none; border: none; padding: 0; }
.content ul, .content ol { padding-left: 1.5rem; margin-bottom: 1.25rem; }
.content li { margin-bottom: 0.4rem; }
.content blockquote { border-left: 3px solid var(--accent); padding-left: 1rem; color: var(--muted); margin: 1.5rem 0; }
.breadcrumb { font-size: 0.85rem; color: var(--muted); margin-bottom: 1.5rem; }
.breadcrumb a { color: var(--muted); }
.changelog-entry { margin-bottom: 2rem; }
.changelog-entry h3 { font-size: 1rem; font-weight: 700; color: var(--accent); font-family: monospace; margin-bottom: 0.5rem; }
.changelog-entry ul { padding-left: 1.25rem; }
.changelog-entry li { font-size: 0.9rem; color: var(--muted); margin-bottom: 0.25rem; }
.footer { border-top: 1px solid var(--border); padding: 2rem; text-align: center; color: var(--muted); font-size: 0.85rem; margin-top: 4rem; }
.footer a { color: var(--muted); }
.tag { display: inline-block; font-size: 0.75rem; color: var(--accent); background: var(--surface); border: 1px solid var(--border); padding: 0.15rem 0.5rem; border-radius: 4px; font-family: monospace; }
@media (max-width: 600px) {
  .hero h1 { font-size: 2rem; }
  .nav { flex-wrap: wrap; gap: 0.75rem; }
  .post-card { flex-direction: column; }
}