:root {
  color-scheme: dark;
  --bg: #101112;
  --panel: #191c1f;
  --ink: #f5f7fa;
  --muted: #aab2bd;
  --line: #2b3036;
  --accent: #17c3b2;
  --accent-2: #ffcb47;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 15% 10%, rgba(23, 195, 178, 0.18), transparent 30%),
    radial-gradient(circle at 85% 5%, rgba(255, 203, 71, 0.14), transparent 28%),
    var(--bg);
  color: var(--ink);
}

.page-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 44px 0 56px;
}

.hero {
  display: grid;
  gap: 12px;
  margin-bottom: 28px;
}

.eyebrow,
.lede {
  margin: 0;
  color: var(--muted);
}

.eyebrow {
  color: var(--accent);
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(3rem, 10vw, 6.8rem);
  line-height: 0.9;
  letter-spacing: 0;
}

.lede {
  max-width: 680px;
  font-size: 1.1rem;
  line-height: 1.6;
}

.game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 12px;
}

.game-card {
  min-height: 118px;
  display: grid;
  align-content: space-between;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: color-mix(in srgb, var(--panel) 92%, white);
  color: inherit;
  text-decoration: none;
}

.game-card:hover,
.game-card:focus-visible {
  border-color: var(--accent);
  outline: none;
}

.game-card span {
  font-size: 1.05rem;
  font-weight: 800;
}

.game-card small {
  color: var(--muted);
}
