/* Game page layout — article shell at top (visible to humans and
   crawlers), canvas play section as a 100vh slab below. */

html { scroll-behavior: smooth; }

html, body {
  margin: 0;
  padding: 0;
  background: #fbf6ec;
  color: #2a2622;
  font-family: "Iowan Old Style", "Palatino Linotype", Georgia, "Hiragino Mincho ProN", "Yu Mincho", serif;
  line-height: 1.6;
}

/* ---------- Article shell ---------- */

.kanji-article {
  max-width: 720px;
  margin: 0 auto;
  padding: 56px 24px 32px;
}

.kanji-article header {
  margin-bottom: 24px;
}

.kanji-article h1 {
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "MS Mincho", serif;
  font-size: 96px;
  line-height: 1;
  margin: 0 0 8px;
  letter-spacing: -2px;
  font-weight: 700;
}

.kanji-article .gloss {
  font-style: italic;
  color: #5a5048;
  margin: 0 0 18px;
  font-size: 18px;
}

.kanji-article dl.meta {
  display: grid;
  grid-template-columns: max-content 1fr;
  column-gap: 14px;
  row-gap: 4px;
  margin: 0 0 24px;
  font-size: 15px;
}
.kanji-article dl.meta dt {
  color: #5a5048;
  font-family: "Courier New", monospace;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  align-self: center;
}
.kanji-article dl.meta dd {
  margin: 0;
}
.kanji-article dl.meta dd[lang="ja"] {
  font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
}

.kanji-article p {
  margin: 0 0 14px;
  font-size: 17px;
}

.kanji-article .compounds span[lang="ja"] {
  font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-weight: 600;
}

.kanji-article a {
  color: #2a2622;
  text-decoration: underline;
  text-decoration-color: #d94a3a;
  text-underline-offset: 3px;
}
.kanji-article a:hover { color: #d94a3a; }

.kanji-article .play-cta {
  margin-top: 32px;
  text-align: center;
}
.kanji-article .play-cta a {
  display: inline-block;
  padding: 12px 28px;
  border: 2px solid #2a2622;
  border-radius: 4px;
  text-decoration: none;
  font-family: "Courier New", monospace;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: background 120ms, color 120ms;
}
.kanji-article .play-cta a:hover {
  background: #2a2622;
  color: #fbf6ec;
}

hr.divider {
  border: none;
  border-top: 1px dashed #d9cdb4;
  max-width: 720px;
  margin: 16px auto 0;
}

/* ---------- Canvas play section ---------- */

#stage {
  display: block;
  width: 100vw;
  height: 100vh;
  touch-action: none;
}

#exit {
  position: fixed;
  top: 14px;
  right: 18px;
  font-size: 26px;
  line-height: 1;
  text-decoration: none;
  color: #5a5048;
  font-family: "Courier New", monospace;
  z-index: 10;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 120ms, color 120ms;
}
#exit:hover {
  background: rgba(217, 74, 58, 0.12);
  color: #d94a3a;
}
