/* Manu Arcade — per-game notes leaf: a crawlable "about / how to play /
   controls / tips" block below each cabinet game. Same manuscript shell as
   palette.css; lighter than the board-frame so it reads as supporting text.
   No em dashes in on-screen copy. */

.notes {
  width: min(720px, 100%);
  margin: clamp(10px, 2vw, 22px) auto 0;
  padding: clamp(20px, 3.4vw, 34px);
  text-align: left;
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.64;
  color: var(--ink-soft);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .10), rgba(0, 0, 0, .02)), var(--parchment);
  box-shadow:
    inset 0 0 0 1px rgba(200, 156, 58, .45),
    inset 0 0 0 3px rgba(122, 104, 80, .16),
    0 10px 26px rgba(58, 46, 34, .16);
}

.notes > h2 {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  color: var(--ink);
  font-size: clamp(25px, 4.4vw, 34px);
  line-height: 1.02;
  margin: 0 0 10px;
}

.notes h3 {
  font-family: var(--caps);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 12.5px;
  color: var(--oxblood);
  margin: 24px 0 8px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(122, 104, 80, .26);
}

.notes p { margin: 0 0 12px; }
.notes p:last-child { margin-bottom: 0; }

.notes a {
  color: var(--oxblood);
  text-decoration: none;
  border-bottom: 1px solid rgba(90, 26, 31, .3);
}
.notes a:hover { color: var(--oxblood-bright); }

/* Controls: a gilded key/legend list, input on the left, action on the right. */
.notes .controls {
  list-style: none;
  margin: 4px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.notes .controls li {
  display: grid;
  grid-template-columns: minmax(90px, 34%) 1fr;
  gap: 4px 18px;
  align-items: baseline;
}
.notes .controls .k {
  font-family: var(--caps);
  text-transform: uppercase;
  letter-spacing: .07em;
  font-size: 12px;
  color: var(--oxblood);
}
.notes .controls .a { color: var(--ink-soft); }

@media (max-width: 460px) {
  .notes .controls li { grid-template-columns: 1fr; gap: 1px; }
  .notes .controls .k { font-size: 11.5px; }
}
