.map-container {
  position: relative;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

.map-header {
  text-align: center;
  margin-bottom: 2rem;
}

.map-header h1 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.map-header p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
}

#map {
  width: 100%;
  height: 500px;
  border-radius: 12px;
  overflow: hidden;
  background: #0f2440;
}

.detail-panel {
  display: none;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 1.5rem;
  margin-top: 1.5rem;
}

.detail-panel.visible { display: block; }

.detail-panel h2 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #f97316;
}

.detail-panel .stat {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.95rem;
}

.detail-panel .stat-label { color: rgba(255, 255, 255, 0.6); }
.detail-panel .stat-value { font-weight: 600; }

.detail-panel .insufficient {
  color: rgba(255, 255, 255, 0.5);
  font-style: italic;
  text-align: center;
  padding: 1rem 0;
}

.cta-bar {
  text-align: center;
  margin-top: 2rem;
}

@media (max-width: 640px) {
  #map { height: 350px; }
  .map-header h1 { font-size: 1.4rem; }
}
