.mm-village-panel {
  max-width: min(40rem, 100%);
  margin: 0 auto;
}

.mm-village-map {
  position: relative;
  margin: 1rem 0;
  padding: 1rem;
  border-radius: 16px;
  background: linear-gradient(180deg, #87ceeb 0%, #a8d8a8 35%, #5a8f3c 100%);
  border: 3px solid #5c3d1e;
  box-shadow: inset 0 4px 20px rgba(0, 0, 0, 0.15);
  min-height: 16rem;
}

.mm-village-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  max-width: 22rem;
  margin: 0 auto;
}

.mm-tile {
  aspect-ratio: 1;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.35);
  transition: transform 0.2s;
}

.mm-tile.lit {
  background: rgba(255, 255, 255, 0.45);
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.mm-stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin: 0.75rem 0;
}

.mm-stat-chip {
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: var(--surface2);
  border: 1px solid var(--border);
  font-size: 0.85rem;
  font-weight: 600;
}

.mm-mood {
  text-align: center;
  font-weight: 600;
  margin: 0.5rem 0;
  color: var(--accent2);
}

.mm-contrib-box {
  text-align: center;
  margin-top: 1rem;
  padding: 0.75rem;
  border-radius: 12px;
  background: rgba(61, 214, 140, 0.08);
  border: 1px solid rgba(61, 214, 140, 0.25);
}
