@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@700;800&family=Barlow:wght@300;400;500&display=swap');

:root {
  --ink: #ffffff;
  --steel: #f4f7f4;
  --amber: #16a057;
  --chalk: #1a2a1a;
  --muted: #4a6a54;
  --border: rgba(0, 0, 0, 0.08);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: var(--ink);
  color: var(--chalk);
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  padding: 64px 24px 96px;
}

main { max-width: 720px; margin: 0 auto; }

h1, h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

h1 { font-size: 40px; margin-bottom: 8px; }
h2 { font-size: 22px; margin: 40px 0 12px; }

.updated {
  font-size: 13px;
  color: var(--muted);
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
}

p, ul { margin-bottom: 16px; }
ul { padding-left: 20px; }
li { margin-bottom: 6px; }

a { color: var(--amber); }
a:focus-visible, .back:focus-visible { outline: 2px solid var(--amber); outline-offset: 3px; }

table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 16px;
  font-size: 15px;
}
th, td {
  text-align: left;
  padding: 10px 12px;
  border: 1px solid var(--border);
  vertical-align: top;
}
th { background: var(--steel); font-weight: 500; }

.table-wrap { overflow-x: auto; }

.back {
  display: inline-block;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  width: 100%;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 14px;
}

@media (max-width: 600px) {
  body { padding: 40px 20px 64px; }
  h1 { font-size: 30px; }
}
