:root {
  color-scheme: dark;
  background: #000000;
  color: #f5f1df;
  font-family: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  background: #000000;
  color: #f5f1df;
}

main {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: clamp(18px, 3vw, 48px);
}

.brand {
  width: max-content;
  max-width: 100%;
  margin: clamp(16px, 2.2vw, 30px) auto 0;
  overflow: hidden;
}

h1 {
  margin: 0;
  color: #f5f1df;
  font-family: Impact, 'Arial Black', 'Helvetica Neue', Arial, sans-serif;
  font-size: clamp(48px, 12.2vw, 188px);
  font-weight: 900;
  line-height: 0.82;
  letter-spacing: -0.055em;
  white-space: nowrap;
}

.tagline {
  width: 100%;
  margin: 0.12em 0 0;
  color: #f5f1df;
  font: 700 clamp(7px, 0.94vw, 14px)/1 'Courier New', Courier, monospace;
  letter-spacing: 0.12em;
  text-align: justify;
  text-align-last: justify;
  white-space: nowrap;
}

.hero-image {
  width: min(1260px, 100%);
  margin: clamp(14px, 1.8vw, 24px) auto 0;
}

.hero-image img {
  display: block;
  width: 100%;
  height: auto;
}

.image-blurb {
  width: min(1260px, 100%);
  margin: 14px auto 0;
  color: #f5f1df;
  font: 700 clamp(13px, 1.65vw, 24px)/1.2 Arial, Helvetica, sans-serif;
  letter-spacing: 0.015em;
  text-align: center;
}

.social-links {
  width: min(1260px, 100%);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 6px 18px;
  font: 700 clamp(6px, 0.7vw, 10px)/1.35 'Courier New', Courier, monospace;
  letter-spacing: 0.08em;
}

.social-links a {
  color: #f5f1df;
  text-decoration: none;
}

.social-links a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.social-links a:focus-visible {
  outline: 2px solid #f5f1df;
  outline-offset: 3px;
}

.games {
  width: min(540px, 100%);
  margin: clamp(42px, 6vw, 74px) 0 4px auto;
}

.game-link {
  display: grid;
  grid-template-columns: 22px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  color: inherit;
  border-top: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  text-decoration: none;
  transition: padding 150ms ease;
}

.game-link:hover {
  padding-inline: 8px;
}

.game-link--logo .logo {
  height: clamp(64px, 9vw, 120px);
  width: auto;
  justify-self: start;
}

.game-link + .game-link {
  border-top: 0;
}

.game-link:focus-visible {
  outline: 3px solid #f5f1df;
  outline-offset: 6px;
}

.number {
  font-size: 8px;
}

.title {
  font-size: clamp(12px, 1.5vw, 18px);
  font-weight: 700;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.arrow {
  font-size: clamp(14px, 1.5vw, 18px);
  line-height: 1;
}

@media (max-width: 680px) {
  main {
    padding: 18px;
  }

  .brand {
    margin-top: 12px;
  }

  .games {
    margin-bottom: 0;
  }

  .social-links {
    flex-direction: column;
  }

  .game-link {
    grid-template-columns: 18px 1fr auto;
    gap: 6px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .game-link {
    transition: none;
  }
}
