:root {
  color-scheme: light;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  background: #f6f4ee;
  color: #17202a;
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  background:
    linear-gradient(140deg, rgba(27, 114, 114, 0.14), transparent 42%),
    linear-gradient(320deg, rgba(222, 83, 73, 0.12), transparent 48%),
    #f6f4ee;
}

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

.hero {
  padding: 32px 0 40px;
}

.eyebrow {
  margin: 0 0 12px;
  color: #23706e;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 16px;
  font-size: clamp(3rem, 9vw, 6.5rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.lead {
  max-width: 620px;
  margin-bottom: 0;
  color: #42515f;
  font-size: 1.15rem;
  line-height: 1.7;
}

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

.game-card {
  min-height: 190px;
  padding: 22px;
  border: 1px solid rgba(23, 32, 42, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 18px 45px rgba(23, 32, 42, 0.08);
}

.game-card h2 {
  margin-bottom: 10px;
  font-size: 1.45rem;
}

.game-card p {
  margin-bottom: 18px;
  color: #4c5966;
  line-height: 1.6;
}

.game-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 8px;
  background: #17202a;
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-bottom: 22px;
  padding: 0 10px;
  border-radius: 999px;
  background: #23706e;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
}

.badge.muted {
  background: #d9ded8;
  color: #435044;
}

@media (max-width: 760px) {
  .shell {
    width: min(100% - 24px, 560px);
    padding: 32px 0;
  }

  .hero {
    padding-top: 20px;
  }

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