/* About page — game-specific styles only (shared.css handles nav/footer/base) */

main {
  flex-grow: 1;
  padding: 2rem 1.5rem;
  max-width: 760px;
  margin: 0 auto;
}

h1 {
  font-size: 2.4rem;
  color: var(--accent);
  margin: 0 0 0.5rem;
}

.intro {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin: 0 0 1.5rem;
}

.section {
  margin-bottom: 2.5rem;
}

.section h2 {
  font-size: 1.5rem;
  color: var(--text);
  margin: 0 0 0.75rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--border);
}

.section p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0 0 0.8rem;
}

.games-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-bottom: 1rem;
}

.games-group h3 {
  font-size: 1rem;
  color: var(--text);
  margin: 0 0 0.5rem;
}

.games-group ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.games-group li {
  font-size: 0.92rem;
  color: var(--text-muted);
}

.games-group a {
  font-weight: 600;
}

.suggest-link {
  font-size: 0.95rem;
  color: var(--text-dim);
  margin-top: 1rem !important;
}

@media (max-width: 480px) {
  h1 { font-size: 2rem; }
  .section h2 { font-size: 1.3rem; }
}
