/* Makeshift one-pager. Palette lifted from the game's HUD: dark steel ground,
   cyan status text, amber for the one thing you should press. Big type so it
   reads on a TV as well as a monitor. */

:root {
  --ground: #1e1f24;
  --panel:  #2a2b31;
  --line:   #4a4c55;
  --text:   #d9d6cc;
  --dim:    #8b8d96;
  --cyan:   #3fd0c9;
  --amber:  #e08a2a;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--ground);
  color: var(--text);
  font: 18px/1.5 ui-monospace, "SF Mono", Menlo, Consolas, "DejaVu Sans Mono", monospace;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
}

.hero {
  text-align: center;
  padding: 3rem 1rem 1.5rem;
}

h1 {
  margin: 0;
  font-size: clamp(3rem, 12vw, 6rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cyan);
  text-shadow: 4px 4px 0 #000;
}

.tag {
  margin: 0.75rem auto 1.5rem;
  max-width: 34ch;
  font-size: 1.15rem;
}

.stores { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.btn {
  display: inline-block;
  padding: 0.7rem 1.6rem;
  border: 3px solid var(--amber);
  background: var(--amber);
  color: #000;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 4px 4px 0 #000;
}
.btn:hover { background: #f5a442; border-color: #f5a442; }

/* Unfilled store links read as coming soon rather than dead. */
.btn[href="#"] {
  background: transparent;
  color: var(--dim);
  border-color: var(--line);
  box-shadow: none;
  pointer-events: none;
}
.btn[href="#"]::after { content: " (soon)"; text-transform: none; font-weight: 400; }

main {
  width: min(100% - 2rem, 900px);
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-bottom: 3rem;
}

.shot {
  width: 100%;
  height: auto;
  image-rendering: pixelated;
  border: 3px solid var(--line);
  box-shadow: 6px 6px 0 #000;
}

.blurb p { max-width: 60ch; margin: 0 auto 1rem; }

.facts dl {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 0.4rem 1.5rem;
  margin: 0 auto;
  width: max-content;
  max-width: 100%;
  padding: 1rem 1.5rem;
  background: var(--panel);
  border: 2px solid var(--line);
}
.facts dt { color: var(--cyan); text-transform: uppercase; font-size: 0.85rem; letter-spacing: 0.1em; align-self: baseline; }
.facts dd { margin: 0; }

footer {
  margin-top: auto;
  padding: 1.5rem;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
  color: var(--dim);
  font-size: 0.95rem;
}
footer a { color: var(--cyan); }
