.container {
  max-width: 480px;
  margin: 0 auto;
  padding: 12px;
}
.select-area {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
  align-items: stretch;
}
.select-area > div { flex: 1; }
.select-area label {
  display: block;
  font-size: 0.75em;
  color: #aaa;
  margin-bottom: 4px;
  text-align: center;
}
.stats-row {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}
.stat-card {
  flex: 1;
  background: linear-gradient(145deg, #16213e, #1a1a2e);
  border: 1px solid #0f3460;
  border-radius: 10px;
  padding: 10px;
  font-size: 0.72em;
  min-height: 80px;
}
.stat-card h3 {
  font-size: 1.1em;
  color: #e94560;
  margin-bottom: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.stat-line {
  display: flex;
  justify-content: space-between;
  padding: 1px 0;
  color: #ccc;
}
.stat-line span:last-child {
  color: #fff;
  font-weight: bold;
}
.type-badge {
  display: inline-block;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.85em;
  font-weight: bold;
  margin-top: 4px;
}
.type-power { background: #c0392b; color: #fff; }
.type-agility { background: #27ae60; color: #fff; }
.type-dos { background: #8e44ad; color: #fff; }
