
:root {
  --bg: #070606;
  --wine: #5d1717;
  --paper: #c8b7a5;
  --ink: #dbc8b5;
  --muted: #9d8d7f;
}
* { box-sizing: border-box; }
html, body { margin: 0; min-height: 100%; background: var(--bg); }
body {
  font-family: "Courier New", ui-monospace, monospace;
  color: var(--ink);
  background:
    radial-gradient(circle at 20% 10%, rgba(100,0,0,.12), transparent 32%),
    radial-gradient(circle at 80% 80%, rgba(80,0,0,.10), transparent 38%),
    #060505;
}
.page {
  position: relative;
  width: min(100%, 1600px);
  margin: 0 auto;
  line-height: 0;
  box-shadow: 0 0 80px rgba(0,0,0,.8);
}
.page img {
  display: block;
  width: 100%;
  height: auto;
  user-select: none;
}
.hotspot {
  position: absolute;
  display: block;
  z-index: 5;
  border-radius: 3px;
  text-decoration: none;
  outline: none;
}
.hotspot:focus-visible,
.hotspot:hover {
  background: rgba(130, 22, 22, .12);
  box-shadow: inset 0 0 0 1px rgba(175,65,65,.45);
}
.screen-reader {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.mobile-nav {
  display: none;
}
@media (max-width: 700px) {
  .mobile-nav {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(8,7,7,.96);
    border-bottom: 1px solid #4c2623;
    line-height: 1.2;
  }
  .mobile-nav a {
    color: #caa895;
    padding: 12px 5px;
    text-align: center;
    text-decoration: none;
    font-size: 12px;
  }
}
