@import url("https://fonts.googleapis.com/css2?family=DM+Mono:wght@400;500&family=Fraunces:opsz,wght@9..144,600;9..144,700&family=Noto+Sans+SC:wght@400;500&family=Noto+Serif+SC:wght@600;700&display=swap");

:root {
  color-scheme: dark;
  --ink: #f4f0e8;
  --muted: #aaa69d;
  --paper: #11100f;
  --line: #34312d;
  --acid: #d9ff57;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at 80% 10%, #28331d 0, transparent 28rem),
    var(--paper);
  font-family: "DM Mono", "Noto Sans SC", monospace;
}

body::before {
  position: fixed;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: .15;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
}

main {
  width: min(1080px, calc(100% - 40px));
  margin: 0 auto;
  padding: 72px 0 28px;
}

.hero { max-width: 850px; margin-bottom: 72px; }

.eyebrow {
  margin: 0 0 32px;
  color: var(--acid);
  font-size: 12px;
  letter-spacing: .16em;
}

h1 {
  margin: 0;
  font-family: "Noto Serif SC", "Fraunces", serif;
  font-size: clamp(56px, 10vw, 116px);
  font-weight: 700;
  line-height: .96;
  letter-spacing: -.04em;
}

h1 em { color: var(--acid); font-weight: 600; }

.intro {
  max-width: 610px;
  margin: 38px 0 0 auto;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.games { border-top: 1px solid var(--line); }

.game-card {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 22px;
  align-items: center;
  min-height: 118px;
  padding: 24px 18px 24px 0;
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  animation: enter .55s both;
  animation-delay: var(--delay);
  transition: background .2s ease, padding .2s ease;
}

.game-card:hover {
  padding-left: 18px;
  background: var(--acid);
  color: #11100f;
}

.game-number { color: var(--muted); font-size: 11px; }
.game-card:hover .game-number { color: #454b2b; }

.game-copy { display: grid; gap: 7px; }
.game-copy strong { font-family: "Noto Serif SC", "Fraunces", serif; font-size: 29px; }
.game-copy span { color: var(--muted); font-size: 12px; }
.game-card:hover .game-copy span { color: #454b2b; }
.game-arrow { font-size: 28px; }

footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 64px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

@keyframes enter {
  from { opacity: 0; transform: translateY(14px); }
}

@media (max-width: 620px) {
  main { width: min(100% - 28px, 1080px); padding-top: 42px; }
  .hero { margin-bottom: 48px; }
  .intro { margin-top: 28px; }
  .game-card { grid-template-columns: 34px 1fr auto; gap: 10px; min-height: 104px; }
  .game-copy strong { font-size: 24px; }
  footer { flex-direction: column; }
}
