/* =========================
   Our Games page specific styles
   ========================= */
.games-header-section {
  margin-top: var(--space-12);
  margin-bottom: var(--space-10);
  text-align: center;
}
.games-lead {
  font-size: var(--font-size-lg);
  color: var(--color-gray-700);
  margin: 0 auto var(--space-4) auto;
  max-width: 700px;
  line-height: var(--line-height-loose);
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-8);
  margin: var(--space-6) 0;
}
.game-card {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.game-card img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-3);
}
.game-card h3 {
  margin-bottom: var(--space-2);
}
.reward-image {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: var(--space-3);
}
.games-features-list,
.games-tips-list,
.games-events-list {
  padding-left: var(--space-6);
  list-style-type: disc;
  color: var(--color-text);
}
.games-features-list li, .games-tips-list li, .games-events-list li {
  margin-bottom: var(--space-2);
  font-size: var(--font-size-md);
}
.games-features-section, .games-tips-section, .games-rewards-section, .games-events-section, .games-development-section, .games-community-section {
  margin-bottom: var(--space-10);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-6);
  margin: var(--space-6) 0;
}
.review-card {
  background: var(--color-gray-50);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: var(--space-5);
  font-style: italic;
  color: var(--color-gray-800);
}
.review-card footer {
  font-style: normal;
  color: var(--color-primary);
  font-weight: 600;
  margin-top: var(--space-3);
}

.rewards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-6);
  margin: var(--space-6) 0 var(--space-4) 0;
}
.reward-card {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: var(--space-4);
  text-align: center;
}
.reward-card h3 {
  color: var(--color-primary);
  margin-bottom: var(--space-2);
}

.games-rewards-section a.button,
.games-events-section a.button,
.games-development-section a.button,
.games-community-section a.button {
  margin-top: var(--space-4);
  display: inline-block;
  text-decoration: none;
  font-size: var(--font-size-md);
}

@media (max-width: 700px) {
  .games-header-section {
    margin-top: var(--space-8);
    margin-bottom: var(--space-8);
    padding-left: var(--space-2);
    padding-right: var(--space-2);
  }
  .games-lead {
    font-size: var(--font-size-md);
  }
  .games-grid,
  .reviews-grid,
  .rewards-grid {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }
}
