.overall-panels {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 10px;
}

.overall-panel {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
  padding: 10px 12px;
}

.panel-title {
  font-weight: 700;
  margin-bottom: 6px;
}

.stats h3 {
  margin: 10px 0 6px;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
}

.stat-card.controversial {
  grid-column: 1 / -1;
  align-items: center;
  width: 100%;
}

.stat-card.color-card {
  border-left: 6px solid transparent;
}

.stat-card {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 8px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-card img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 8px;
}

.stat-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.stat-name {
  font-weight: 700;
  font-size: 14px;
}

.stat-points {
  font-size: 12px;
  color: var(--muted);
}

.heatmap-list {
  display: none;
}
