:root {
  --ink: #2a2218;
  --paper: #f6f0e4;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; background: #1a1410; color: var(--paper); font-family: Outfit, system-ui, sans-serif; overflow: hidden; }
#stage { display: block; width: 100%; height: 100%; touch-action: none; }
.back {
  position: fixed; z-index: 8; top: 12px; left: 12px;
  color: #f3e6c4; text-decoration: none;
  font-family: "Special Elite", serif; font-size: 0.78rem; letter-spacing: 0.08em;
  background: rgba(20,14,8,.55); padding: 0.4rem 0.65rem; border: 1px solid #8a6a32;
}
#hud {
  position: fixed; z-index: 7; left: 12px; right: 12px; bottom: 14px;
  pointer-events: none; text-align: center;
}
.hud-line {
  display: inline-block;
  background: rgba(20,14,8,.55);
  border: 1px solid #6d5226;
  padding: 0.35rem 0.7rem;
  font-size: 0.82rem;
}
#card {
  position: fixed; z-index: 9;
  right: 12px; top: 52px;
  width: min(360px, calc(100vw - 24px));
  max-height: calc(100vh - 120px);
  overflow: auto;
  background: var(--paper);
  color: var(--ink);
  padding: 1.1rem 1.15rem 1.2rem;
  border: 1px solid #cbb896;
  box-shadow: 0 16px 40px rgba(0,0,0,.4);
}
#card[hidden], #fail[hidden], #touch-walk[hidden] { display: none; }
#card-close {
  float: right; width: 2rem; height: 2rem;
  border: 1px solid #cbb896; background: #fff; cursor: pointer; font-size: 1.3rem;
}
.card-kicker {
  font-family: "Special Elite", serif;
  letter-spacing: 0.12em; text-transform: uppercase;
  font-size: 0.68rem; color: #8a5a28; margin-bottom: 0.25rem;
}
#card-title {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 1.45rem; line-height: 1.15; margin-bottom: 0.35rem;
}
#card-meta { font-size: 0.85rem; color: #5a4c38; margin-bottom: 0.7rem; }
#card-body { line-height: 1.5; font-size: 0.95rem; }
#fail {
  position: fixed; inset: 0; z-index: 20;
  display: grid; place-items: center; text-align: center; padding: 2rem;
  background: #1a1410;
}
#fail a { color: #f3e6c4; }
#touch-walk {
  position: fixed; z-index: 8; right: 14px; bottom: 64px;
  display: flex; flex-direction: column; gap: 8px;
}
#touch-walk button {
  width: 52px; height: 52px; border-radius: 8px;
  border: 1px solid #8a6a32; background: rgba(20,14,8,.65);
  color: #f3e6c4; font-size: 1.1rem; cursor: pointer;
}
@media (min-width: 900px) {
  #touch-walk { display: none !important; }
}

.gal-sisters {
  position: fixed;
  top: 0.85rem;
  right: 1rem;
  z-index: 5;
  margin: 0;
  font-family: "Special Elite", serif;
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  color: rgba(240, 230, 210, 0.72);
}
.gal-sisters a { color: inherit; text-decoration: underline; text-underline-offset: 2px; }
@media (max-width: 560px) {
  .gal-sisters { top: auto; bottom: 0.7rem; right: 0.7rem; left: 0.7rem; text-align: center; }
}
