:root {
  --bg: #e9f3ef;
  --bg-2: #f7fbf9;
  --ink: #14241f;
  --muted: #4d635c;
  --line: #c5d6cf;
  --teal: #2a5a52;
  --orange: #c9842a;
  --white: #ffffff;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, "Times New Roman", serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
  min-height: 100vh;
}

.wrap {
  width: min(720px, calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0 80px;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: -0.03em;
  font-size: 15px;
}

.brand img {
  width: 36px;
  height: 36px;
  border-radius: 9px;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-size: 13px;
  font-weight: 600;
}

nav a {
  color: var(--teal);
  text-decoration: none;
}

nav a:hover { text-decoration: underline; }
nav a[aria-current="page"] { color: var(--ink); }

h1 {
  font-size: clamp(34px, 6vw, 52px);
  letter-spacing: -0.045em;
  line-height: 1.05;
  margin: 36px 0 12px;
  font-weight: 700;
}

.lede {
  font-size: 19px;
  color: var(--muted);
  margin: 0 0 28px;
}

.meta {
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 28px 0 0;
}

article h2 {
  font-size: 22px;
  letter-spacing: -0.03em;
  margin: 32px 0 8px;
}

article p, article li {
  font-size: 17px;
  color: #1c2e29;
}

article ul { padding-left: 1.15em; }
article li { margin: 6px 0; }

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px 24px;
  margin: 22px 0;
}

.btn {
  display: inline-block;
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-size: 14px;
  font-weight: 700;
  background: var(--teal);
  color: var(--white);
  text-decoration: none;
  padding: 12px 16px;
  border-radius: 12px;
}

.btn:hover { filter: brightness(1.08); }

.btn-ghost {
  background: transparent;
  color: var(--teal);
  border: 1px solid var(--line);
}

footer {
  margin-top: 56px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-size: 13px;
  color: var(--muted);
}

footer a { color: var(--teal); }

.games {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.game {
  display: flex;
  gap: 16px;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px;
  text-decoration: none;
  color: inherit;
}

.game img {
  width: 64px;
  height: 64px;
  border-radius: 14px;
}

.game strong {
  display: block;
  font-size: 18px;
  letter-spacing: -0.03em;
}

.game span {
  color: var(--muted);
  font-size: 15px;
}

@media (max-width: 560px) {
  header { flex-direction: column; align-items: flex-start; }
}
