/* ===== ESTILOS PARA ESTADÍSTICAS (sin cambiar estructura) ===== */
#seccion-estadisticas-personaje {
  height: 100%;
}

.stats-container {
  background: linear-gradient(145deg, #2a2a3a, #1e1e2a);
  border-radius: 12px;
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.stats-label {
  color: #ffeb3b;
  font-size: 0.9rem;
  display: block;
  margin-bottom: 8px;
  text-shadow: 0 0 3px rgba(255, 235, 59, 0.3);
}

.stats-select {
  background: rgba(30, 20, 50, 0.8);
  color: #fff !important;
  border: 1px solid rgba(255, 215, 0, 0.3) !important;
  border-radius: 6px !important;
}

.stats-select:focus {
  border-color: #ffeb3b !important;
  box-shadow: 0 0 0 0.25rem rgba(255, 235, 59, 0.25) !important;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 15px;
}

.stat-item {
  background: rgba(26, 26, 37, 0.6);
  border-radius: 8px;
  padding: 10px;
  display: flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-icon {
  width: 20px;
  height: 20px;
  margin-right: 8px;
}

.stat-label {
  color: #fff;
  font-size: 0.8rem;
  margin-right: 5px;
}

.stat-value {
  color: #ffeb3b;
  font-weight: 600;
  margin-left: auto;
}

/* Responsive */
@media (min-width: 768px) {
  .stat-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  #bloque-stats-arma .stat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  #seccion-estadisticas-personaje {
    max-height: 70vh;
    overflow-y: auto;
    padding-right: 6px;
  }
}
