:root {
  color: #f5f3ed;
  background: #11110f;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 111, 61, .15), transparent 24rem),
    radial-gradient(circle at 92% 90%, rgba(87, 183, 255, .12), transparent 26rem),
    #11110f;
}

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

header {
  max-width: 720px;
  margin-bottom: 48px;
}

.eyebrow {
  margin: 0 0 14px;
  color: #ff6f3d;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .2em;
}

h1 {
  margin: 0;
  font-size: clamp(50px, 9vw, 104px);
  line-height: .95;
  letter-spacing: -.07em;
}

.intro {
  margin: 24px 0 0;
  color: #aaa89f;
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.7;
}

.games {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

article {
  position: relative;
  min-height: 280px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid #302f2a;
  border-radius: 20px;
  background: rgba(26, 26, 23, .9);
  transition: transform .2s ease, border-color .2s ease;
}

article:hover {
  transform: translateY(-3px);
  border-color: #5a574d;
}

.number {
  color: #656258;
  font: 700 13px/1 ui-monospace, SFMono-Regular, Menlo, monospace;
}

h2 {
  margin: 44px 0 12px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1;
  letter-spacing: -.04em;
}

article p {
  max-width: 32rem;
  margin: 0 0 28px;
  color: #aaa89f;
  line-height: 1.65;
}

.actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

a {
  color: inherit;
  text-decoration: none;
}

.play {
  display: inline-flex;
  padding: 11px 16px;
  border-radius: 999px;
  color: #151410;
  background: #f3df63;
  font-weight: 750;
}

.source {
  color: #aaa89f;
  font-size: 14px;
}

.source:hover {
  color: #fff;
}

footer {
  padding-top: 32px;
  color: #656258;
  font-size: 13px;
}

@media (max-width: 700px) {
  main {
    padding-top: 48px;
  }

  .games {
    grid-template-columns: 1fr;
  }

  article {
    min-height: 250px;
  }

  h2 {
    margin-top: 34px;
  }
}
