/* arpt.sh palette: positive #3F9D72, accent #B5732A, negative #C75A4F, ink near-black. */
html, body {
  margin: 0;
  padding: 0;
  background: #1c1f24;
  color: #e9e6dd;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 12px;
  overflow: hidden;
  height: 100%;
  width: 100%;
}

#meta {
  position: fixed;
  top: 8px;
  left: 12px;
  z-index: 10;
  display: flex;
  gap: 16px;
  color: #a09c91;
  letter-spacing: 0.04em;
}

#meta { pointer-events: none; }
#town canvas { cursor: pointer; }

#town {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

#town canvas {
  image-rendering: pixelated;
  image-rendering: crisp-edges;
}

#ticker {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 6px 12px;
  background: rgba(20, 22, 26, 0.85);
  border-top: 1px solid #2c3038;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #c8c4b9;
}

#ticker .who { color: #B5732A; }
#ticker .sep { color: #555; padding: 0 6px; }
