.statistics-page {
  max-width: 800px;
  margin: 2rem auto;
  padding: 0 1rem;
}

.statistics-content {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.statistics-content h1 {
  color: var(--text-color);
  font-size: 2rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-color);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1.5rem;
}

.stat-card {
  background: var(--background-color, #f9f9f9);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
}

.stat-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-color);
  opacity: 0.75;
}

@media (max-width: 768px) {
  .statistics-content {
    padding: 1.5rem;
  }

  .statistics-content h1 {
    font-size: 1.75rem;
  }

  .stats-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  }
}
