:root {
  --bg: #0c0e13;
  --card: #191c23;
  --text: #f4f5f7;
  --muted: #9aa0ac;
  --yellow: #f6c445;
  --divider: #2a2e38;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

.wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 32px 20px 80px;
}

.logo {
  font-family: "Snell Roundhand", "Brush Script MT", cursive;
  font-size: 44px;
  color: var(--yellow);
  text-align: center;
  margin: 8px 0 0;
}

.doc-title {
  text-align: center;
  font-size: 28px;
  font-weight: 800;
  margin: 6px 0 4px;
}

.updated {
  text-align: center;
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 36px;
}

h2 {
  font-size: 20px;
  font-weight: 800;
  margin: 40px 0 12px;
  padding-top: 20px;
  border-top: 1px solid var(--divider);
}

h3 { font-size: 16px; font-weight: 700; margin: 24px 0 8px; }

p, li { color: var(--text); font-size: 15.5px; }

strong { color: var(--yellow); font-weight: 700; }

a { color: var(--yellow); }

ul, ol { padding-left: 22px; }

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  margin: 16px 0;
}

th, td {
  text-align: left;
  padding: 10px 12px;
  border-bottom: 1px solid var(--divider);
  vertical-align: top;
}

th { color: var(--muted); font-weight: 700; }

.footer {
  margin-top: 56px;
  padding-top: 20px;
  border-top: 1px solid var(--divider);
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

.nav {
  text-align: center;
  font-size: 14px;
  margin-bottom: 8px;
}
.nav a { margin: 0 10px; text-decoration: none; }
.nav a:hover { text-decoration: underline; }
