/* ===== 皇宫主地图场景 ===== */
.map-scene {
  background: linear-gradient(180deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  justify-content: flex-start;
  padding-top: 60px;
}

.map-title {
  font-size: 36px;
  font-weight: bold;
  color: #ffd700;
  text-align: center;
  margin-bottom: 40px;
  text-shadow: 3px 3px 0 #000;
  letter-spacing: 6px;
}

.map-locations {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 900px;
  padding: 20px;
}

.location-card {
  width: 200px;
  height: 200px;
  background: #2c3e50;
  border: 4px solid #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 
    4px 4px 0 #000,
    inset -2px -2px 0 rgba(0, 0, 0, 0.3);
  position: relative;
}

.location-card:hover {
  background: #34495e;
  transform: translate(-2px, -2px);
  box-shadow: 
    6px 6px 0 #000,
    inset -2px -2px 0 rgba(0, 0, 0, 0.3);
}

.location-card:active {
  transform: translate(2px, 2px);
  box-shadow: 
    2px 2px 0 #000,
    inset -2px -2px 0 rgba(0, 0, 0, 0.3);
}

.location-icon {
  font-size: 64px;
  margin-bottom: 16px;
}

.location-name {
  font-size: 20px;
  font-weight: bold;
  color: #ffd700;
  text-shadow: 2px 2px 0 #000;
  letter-spacing: 3px;
}

.location-desc {
  font-size: 12px;
  color: #bdc3c7;
  margin-top: 8px;
  text-align: center;
  letter-spacing: 1px;
}

/* 特殊地点高亮 */
.location-card.palace {
  background: linear-gradient(135deg, #8b0000 0%, #dc143c 100%);
}

.location-card.palace:hover {
  background: linear-gradient(135deg, #a00000 0%, #ff1744 100%);
}
