:root { --bg: #0e0e10; --text: #efeff1; --accent: #9146ff; --muted: #adadb8; --card: #18181b; --border: #26262c; }
* { box-sizing: border-box; margin: 0; padding: 0; }
body { background: var(--bg); color: var(--text); font-family: 'Segoe UI', system-ui, sans-serif; min-height: 100vh; display: flex; flex-direction: column; }
.content { max-width: 720px; margin: 0 auto; padding: 48px 24px 80px; width: 100%; flex: 1; }
h1 { font-size: 1.8rem; font-weight: 800; margin-bottom: 8px; }
.updated { font-size: 0.8rem; color: var(--muted); margin-bottom: 40px; }
h2 { font-size: 1rem; font-weight: 700; margin-top: 36px; margin-bottom: 10px; color: #a970ff; text-transform: uppercase; letter-spacing: .05em; }
p { font-size: 0.92rem; color: var(--muted); line-height: 1.75; margin-bottom: 12px; }
ul { font-size: 0.92rem; color: var(--muted); line-height: 1.75; padding-left: 20px; margin-bottom: 12px; }
ul li { margin-bottom: 4px; }
a { color: #a970ff; text-decoration: none; }
a:hover { text-decoration: underline; }
table { width: 100%; border-collapse: collapse; margin-bottom: 16px; font-size: 0.88rem; }
th { text-align: left; padding: 8px 12px; background: var(--card); color: var(--muted); font-weight: 600; border: 1px solid var(--border); }
td { padding: 8px 12px; border: 1px solid var(--border); color: var(--muted); vertical-align: top; }
