.support-doc-root {
  --max: 1080px;
  --bg: #f5efe1;
  --surface: #fffaf0;
  --surface-deep: #eee3cf;
  --surface-strong: #fff6e6;
  --surface-raised: #ffffff;
  --text: #111b1c;
  --muted: #526566;
  --line: rgba(17, 27, 28, 0.18);
  --line-accent: rgba(0, 137, 146, 0.46);
  --accent: #008992;
  --accent-strong: #006d78;
  --focus: #008992;
  --shadow: 0 16px 40px rgba(31, 39, 34, 0.14);
  background:
    radial-gradient(circle at 92% 10%, rgba(0, 137, 146, 0.12), transparent 16rem),
    linear-gradient(120deg, rgba(215, 56, 48, 0.08), transparent 18rem),
    repeating-linear-gradient(
      0deg,
      rgba(17, 27, 28, 0.035) 0,
      rgba(17, 27, 28, 0.035) 1px,
      transparent 1px,
      transparent 2rem
    ),
    var(--bg);
}

.page-root {
  display: grid;
  align-content: start;
  gap: 1.5rem;
  min-height: 100vh;
  padding-top: 1.35rem;
}

.page-root .hero {
  display: grid;
  gap: 0.7rem;
  max-width: 39rem;
  padding: 0.9rem 0 0.2rem;
}

.page-root .hero-brand {
  justify-self: start;
  min-height: 2.75rem;
  margin-bottom: 0.1rem;
  padding: 0.4rem 0;
  color: var(--text);
}

.page-root .eyebrow {
  width: fit-content;
  margin: 0;
  padding: 0.18rem 0.46rem;
  color: #fffaf0;
  background: var(--accent);
  border-radius: 0.25rem;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.page-root h1 {
  max-width: 10ch;
  margin-bottom: 0;
  color: var(--text);
  font-size: 3.95rem;
  line-height: 0.98;
}

.page-root .lead {
  max-width: 33rem;
  margin: 0;
  color: var(--muted);
}

.game-directory {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 21rem), 30rem));
  justify-content: start;
  gap: 1rem;
}

.game-tile {
  position: relative;
  padding: 0.85rem;
  border: 2px solid #142223;
  border-radius: 1.25rem 0.45rem 1.25rem 0.45rem;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.7), transparent 42%),
    var(--surface);
  box-shadow: 0.55rem 0.55rem 0 #142223;
}

.game-tile::after {
  content: "";
  position: absolute;
  inset: auto 1rem 1rem auto;
  width: 4.25rem;
  height: 0.5rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent-strong), var(--accent));
  opacity: 0.82;
}

.game-tile:focus-within,
.game-tile:hover {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), transparent 42%),
    #fffdf7;
}

.game-tile-main {
  display: grid;
  grid-template-columns: 5.4rem 1fr;
  gap: 1rem;
  align-items: center;
  padding: 0.2rem 0.2rem 0.8rem;
  color: var(--text);
  text-decoration: none;
}

.game-tile-main:hover {
  color: var(--text);
}

.game-tile-media {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  border: 2px solid rgba(0, 137, 146, 0.38);
  border-radius: 50%;
  background: #071112;
}

.game-tile-art {
  width: 82%;
  height: 82%;
  object-fit: contain;
}

.game-tile-copy {
  display: grid;
  gap: 0.3rem;
}

.game-tile-label {
  width: fit-content;
  color: var(--accent-strong);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.game-tile-copy strong {
  font-size: 1.8rem;
  line-height: 1;
}

.game-tile-copy span:last-child {
  color: var(--muted);
}

.game-actions {
  display: flex;
  flex-wrap: wrap;
  column-gap: 1.1rem;
  row-gap: 0.15rem;
  padding: 0.15rem 0.2rem 0 6.6rem;
}

.game-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  min-width: 2.75rem;
  border: 0;
  border-bottom: 2px solid rgba(0, 137, 146, 0.4);
  border-radius: 0;
  color: var(--text);
  background: transparent;
  padding: 0.35rem 0.08rem 0.22rem;
  text-decoration: none;
}

.game-actions a:hover {
  border-bottom-color: var(--accent-strong);
  color: var(--accent);
}

.game-actions-secondary {
  opacity: 0.82;
}

.site-footer span {
  color: var(--muted);
  padding: 0.42rem 0;
}

@media (min-width: 920px) {
  .page-root {
    gap: 2rem;
    padding-top: 2rem;
  }
}

@media (max-width: 640px) {
  .page-root {
    gap: 1.15rem;
    padding-top: 0.8rem;
  }

  .page-root .hero {
    padding-top: 0.5rem;
  }

  .page-root h1 {
    max-width: 11ch;
    font-size: 2.85rem;
  }

  .game-tile {
    padding: 0.7rem;
    box-shadow: 0.35rem 0.35rem 0 #142223;
  }

  .game-tile-main {
    grid-template-columns: 4.25rem 1fr;
    gap: 0.75rem;
  }

  .game-tile-copy strong {
    font-size: 1.45rem;
  }

  .game-actions {
    padding-left: 5.2rem;
  }
}
