:root {
  --bg: #17151f;
  --surface: #211e2c;
  --text: #ece9f5;
  --muted: #a39fb3;
  --accent: #a855f7;
  --border: #312c40;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo",
    "Pretendard", "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

.wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 56px 22px 96px;
}

header.site {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 40px;
}

header.site .dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 14px var(--accent);
}

header.site a {
  color: var(--text);
  font-weight: 700;
  font-size: 17px;
  text-decoration: none;
  letter-spacing: -0.01em;
}

h1 {
  font-size: 28px;
  letter-spacing: -0.02em;
  margin: 0 0 6px;
}

.updated {
  color: var(--muted);
  font-size: 14px;
  margin: 0 0 36px;
}

h2 {
  font-size: 18px;
  margin: 40px 0 12px;
  letter-spacing: -0.01em;
}

h3 {
  font-size: 15px;
  margin: 22px 0 8px;
  color: var(--text);
}

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

.muted, .muted * { color: var(--muted); }

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

ul { padding-left: 20px; margin: 8px 0; }
li { margin: 5px 0; }

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

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

th { background: var(--surface); font-weight: 600; }

.box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 20px;
  margin: 16px 0;
}

footer {
  margin-top: 64px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 13.5px;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

footer a { color: var(--muted); text-decoration: none; }
footer a:hover { color: var(--text); }
