:root {
  --bg: #0A0E1A; --surface: #101527; --border: #232B47; --text: #EEF1FB;
  --text2: #A6ADCE; --muted: #6B7397; --blue: #3B82F6; --violet: #8B5CF6;
  --grad: linear-gradient(90deg, #3B82F6, #8B5CF6);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Inter', system-ui, sans-serif; background: var(--bg); color: var(--text); font-size: 15px; line-height: 1.7; }
a { color: #60A5FA; text-decoration: none; }
a:hover { text-decoration: underline; }
.wrap { max-width: 760px; margin: 0 auto; padding: 0 24px; }
nav { border-bottom: 1px solid var(--border); background: rgba(10,14,26,.85); backdrop-filter: blur(10px); position: sticky; top: 0; }
.nav-inner { display: flex; align-items: center; height: 58px; gap: 10px; }
.logo { display: flex; align-items: center; gap: 9px; font-weight: 800; font-size: 15px; color: var(--text); }
.logo-dot { width: 26px; height: 26px; border-radius: 7px; background: var(--grad); display: grid; place-items: center; font-size: 13px; color: #fff; }
.nav-inner a.home { margin-left: auto; color: var(--text2); font-size: 13.5px; font-weight: 500; }
main { padding: 48px 0 80px; }
h1 { font-size: 30px; font-weight: 800; letter-spacing: -0.6px; margin-bottom: 6px; }
.updated { color: var(--muted); font-size: 13px; margin-bottom: 8px; }
.tmpl { background: rgba(245,158,11,.08); border: 1px solid rgba(245,158,11,.25); color: #FCD34D; border-radius: 10px; padding: 12px 16px; font-size: 13px; margin: 18px 0 28px; }
h2 { font-size: 18px; font-weight: 700; margin: 30px 0 8px; }
p, li { color: var(--text2); }
ul { padding-left: 22px; margin: 8px 0; }
li { margin: 5px 0; }
strong { color: var(--text); }
footer { border-top: 1px solid var(--border); padding: 24px 0; color: var(--muted); font-size: 13px; }
footer a { color: var(--text2); }
