* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "nyt-cheltenham", "Georgia", serif;
  background: #faf8f5;
  color: #1a1a1a;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 48px 16px;
}

header {
  text-align: center;
  margin-bottom: 40px;
}

header h1 {
  font-size: 2.2rem;
  font-weight: 700;
  font-style: italic;
  letter-spacing: -0.5px;
}

.tagline {
  margin-top: 6px;
  font-size: 1rem;
  color: #888;
}

.games {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  max-width: 360px;
}

.game-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  background: white;
  border: 1.5px solid #e6e2dc;
  border-radius: 10px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.15s;
}

.game-card:hover {
  border-color: #d4eef7;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

.game-card:active {
  transform: translateY(0);
}

.game-icon {
  flex-shrink: 0;
  border-radius: 8px;
}

.game-title {
  font-size: 1.25rem;
  font-weight: 600;
}

@media (max-width: 420px) {
  header h1 {
    font-size: 1.8rem;
  }

  .game-title {
    font-size: 1.1rem;
  }
}
