.character-select {
  --background: linear-gradient(180deg, #0a0a0a, #1a1a1a);
  color: #fff;
  text-align: center;
  padding: 3rem 1rem;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.character-select__title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #00ff88;
  text-shadow: 0 0 10px #00ff88;
}

/* GRID DE PERSONAGENS */
.character-select__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1.5rem;
  max-width: 800px;
  width: 100%;
  margin-bottom: 2rem;
}

.character-card {
  background-color: #111;
  border: 2px solid transparent;
  border-radius: 1rem;
  padding: 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.character-card img {
  width: 100%;
  border-radius: 0.75rem;
  margin-bottom: 0.5rem;
}

.character-card p {
  font-size: 1rem;
  margin: 0;
}

/* AO PASSAR O MOUSE */
.character-card:hover {
  border-color: #00ff88;
  transform: scale(1.05);
}

/* PERSONAGEM SELECIONADO */
.character-card.selected {
  border-color: #00ff88;
  box-shadow: 0 0 20px #00ff8840;
}

/* BOTÕES */
.character-select__actions {
  display: flex;
  gap: 1rem;
}

.btn {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.3s;
}

.btn--primary {
  background-color: #00ff88;
  color: #000;
}

.btn--primary:hover {
  background-color: #00cc6a;
  transform: scale(1.05);
}

.btn--secondary {
  background-color: #333;
  color: #fff;
}

.btn--secondary:hover {
  background-color: #555;
  transform: scale(1.05);
}

