.pokedex-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1.5rem;
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.pokemon-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 1rem;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: transform 0.2s;
}

.pokemon-card:hover {
  transform: translateY(-4px);
}

.pokemon-number {
  display: block;
  color: #999;
  font-size: 0.75rem;
}

.pokemon-name {
  margin: 0.25rem 0;
  font-size: 1rem;
}

.pokemon-type {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 99px;
  font-size: 0.75rem;
  color: #fff;
  margin: 0.25rem 0;
}

.type-feu { background: #F08030; }
.type-eau { background: #6890F0; }
.type-plante { background: #78C850; }
.type-électrik { background: #F8D030; color: #333; }
.type-psy { background: #F85888; }
.type-normal { background: #A8A878; }

.pokemon-hp {
  font-size: 0.8rem;
  color: #555;
  margin-top: 0.5rem;
}