/* ==========================================================
   estadio.css — Sistema de Estádio
   ========================================================== */

/* ── Estados de carregamento/erro ── */
.estadio-loading {
  text-align: center;
  color: #aaa;
  font-family: monospace;
  padding: 40px 0;
}
.estadio-error { color: red; }

/* ── Painel de status ── */
.estadio-status {
  text-align: center;
  padding: 10px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.estadio-status__icon {
  font-size: 32px;
  margin-bottom: 6px;
}
.estadio-status__title {
  font-size: 14px;
  font-weight: 900;
  color: #ffcc00;
  font-family: monospace;
}
.estadio-status__info {
  font-size: 10px;
  color: #aaa;
  font-family: monospace;
  margin-top: 4px;
}
.estadio-status__bonus {
  font-size: 9px;
  color: #2ecc71;
  font-family: monospace;
  margin-top: 4px;
}

/* ── Cabeçalho de seção ── */
.estadio-section-title {
  font-size: 11px;
  font-weight: 900;
  color: #ffcc00;
  font-family: monospace;
  margin-top: 8px;
}

/* ── Lista de defensores ── */
.estadio-defensores-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* Slot preenchido */
.estadio-slot-filled {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  padding: 8px;
}
.estadio-slot-filled img {
  width: 36px;
  height: 36px;
  image-rendering: pixelated;
}
.estadio-slot-info { flex: 1; }
.estadio-slot-name {
  font-size: 11px;
  font-weight: 900;
  color: #fff;
  font-family: monospace;
}
.estadio-slot-sub {
  font-size: 9px;
  color: #aaa;
  font-family: monospace;
}

/* Slot vazio */
.estadio-slot-empty {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 0, 0, 0.2);
  border: 1px dashed rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 8px;
}
.estadio-slot-empty__icon {
  font-size: 20px;
  opacity: 0.3;
}
.estadio-slot-empty__text {
  flex: 1;
  color: #555;
  font-family: monospace;
  font-size: 10px;
}

/* ── Seleção de Pokémon (modal de slot) ── */
.estadio-select-title {
  font-size: 12px;
  font-weight: 900;
  color: #ffcc00;
  font-family: monospace;
  margin-bottom: 8px;
}
.estadio-select-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  max-height: 300px;
  overflow-y: auto;
}
.estadio-pk-option {
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 6px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  background: rgba(0, 0, 0, 0.2);
}
.estadio-pk-option--selected {
  border-color: #ffcc00;
  background: rgba(255, 204, 0, 0.1);
}
.estadio-pk-option img {
  width: 40px;
  height: 40px;
  image-rendering: pixelated;
}
.estadio-pk-option__name {
  font-size: 8px;
  font-weight: 900;
  color: #fff;
  font-family: monospace;
}
.estadio-pk-option__level {
  font-size: 7px;
  color: #aaa;
  font-family: monospace;
}
