 @import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;400;500;600&family=Syne:wght@400;600;700;800&display=swap');
  :root {
    --bg: #080A0F; --surface: #0E1117; --surface2: #141820;
    --border: rgba(255,255,255,0.06); --text: #E8EAF0;
    --text-muted: #6B7280; --text-dim: #374151;
    --accent: #3B82F6; --accent2: #06B6D4; --success: #10B981;
  }
  * { margin: 0; padding: 0; box-sizing: border-box; }
  body { background: var(--bg); color: var(--text); font-family: 'DM Sans', sans-serif; min-height: 100vh; }
  header {
    padding: 16px 24px; display: flex; align-items: center; justify-content: space-between;
    border-bottom: 1px solid var(--border); background: rgba(8,10,15,0.9); backdrop-filter: blur(20px);
    position: sticky; top: 0; z-index: 100;
  }
  .logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
  .logo-icon { width: 28px; height: 28px; }
  .logo-text { font-family: 'Syne', sans-serif; font-size: 17px; font-weight: 700; color: var(--text); letter-spacing: -0.3px; }
  .logo-text span { color: var(--accent); }
  .back-btn {
    display: inline-flex; align-items: center; gap: 6px; font-size: 13px;
    color: var(--text-muted); text-decoration: none; transition: color 0.2s;
  }
  .back-btn:hover { color: var(--accent); }
  .container { max-width: 720px; margin: 0 auto; padding: 48px 24px 80px; }
  .page-label { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; }
  h1 { font-family: 'Syne', sans-serif; font-size: 32px; font-weight: 800; letter-spacing: -0.5px; margin-bottom: 8px; }
  .updated { font-size: 12px; color: var(--text-dim); margin-bottom: 40px; }
  h2 { font-family: 'Syne', sans-serif; font-size: 16px; font-weight: 700; color: var(--text); margin: 32px 0 10px; }
  p { font-size: 14px; color: rgba(232,234,240,0.75); line-height: 1.8; margin-bottom: 12px; }
  ul { padding-left: 20px; margin-bottom: 12px; }
  ul li { font-size: 14px; color: rgba(232,234,240,0.75); line-height: 1.8; margin-bottom: 6px; }
  .divider { height: 1px; background: var(--border); margin: 32px 0; }
  
  .highlight-box { background: var(--surface); border: 1px solid rgba(16,185,129,0.2); border-radius: 12px; padding: 16px 20px; margin: 24px 0; }
  .highlight-box p { margin-bottom: 0; color: var(--text-muted); }
  .highlight-box strong { color: var(--success); }

  footer { text-align: center; padding: 24px; border-top: 1px solid var(--border); font-size: 11px; color: var(--text-dim); }
  footer a { color: var(--text-dim); text-decoration: none; margin: 0 10px; transition: color 0.2s; }
  footer a:hover { color: var(--text-muted); }