/*
 * One stylesheet for all three pages.
 *
 * The palette is Tapiro's own, taken from `app/constants/theme.ts` so the site
 * and the game look like the same product. It is duplicated here rather than
 * imported because this is a static site with no build step - which is the
 * whole reason it costs nothing to host.
 */
:root {
  --bg: #F4F7F5;
  --surface: #ffffff;
  --border: #DCE5DF;
  --text: #14261C;
  --muted: #5E7367;
  --green: #128A45;
}
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #07130F;
    --surface: #142B22;
    --border: #24463A;
    --text: #EAF4EE;
    --muted: #9DB5A8;
    --green: #2BD97A;
  }
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  padding: 32px 20px 64px;
  background: var(--bg);
  color: var(--text);
  font: 16px/1.65 system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}
main {
  max-width: 720px;
  margin: 0 auto;
}
h1 {
  font-size: 30px;
  margin: 0 0 4px;
  letter-spacing: 0.2px;
}
h2 {
  font-size: 19px;
  margin: 30px 0 8px;
}
a {
  color: var(--green);
}
.updated {
  color: var(--muted);
  font-size: 14px;
  margin: 0 0 26px;
}
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 20px 22px;
  margin-bottom: 16px;
}
.card p:last-child,
.card ul:last-child {
  margin-bottom: 0;
}
ul {
  padding-left: 20px;
}
li {
  margin-bottom: 6px;
}
nav {
  margin-bottom: 26px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
nav a {
  text-decoration: none;
  font-weight: 600;
}
footer {
  color: var(--muted);
  font-size: 14px;
  margin-top: 36px;
  text-align: center;
}
.hero {
  text-align: center;
  padding: 12px 0 4px;
}
.hero .logo {
  font-size: 54px;
  line-height: 1.1;
}
.hero p {
  color: var(--muted);
  font-size: 17px;
}
