/* ========= 地图页面样式 ========= */
.map-page-content {
    padding: 0;
    height: 100%;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.map-page-header {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 30;
    font-size: 2rem;
    font-weight: 600;
    color: #ecf3ff;
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(10, 20, 40, 0.6);
    backdrop-filter: blur(8px);
    padding: 12px 24px;
    border-radius: 60px;
    border: 1px solid #3e70b0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.real-map-container {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.map-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-markers {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
}

.robot-marker {
    position: absolute;
    width: 56px;
    height: 56px;
    background: #0a4c7acc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #56b4ff;
    box-shadow: 0 0 30px #0077ff, 0 0 60px #0077ff80;
    font-size: 28px;
    color: white;
    backdrop-filter: blur(2px);
    pointer-events: auto;
    cursor: pointer;
    z-index: 20;
    transition: all 0.2s;
    animation: markerPulse 2s infinite;
}

.robot-marker:hover {
    transform: scale(1.15);
    background: #1a6bb0;
    border-color: #ffaa33;
}

@keyframes markerPulse {
    0% { box-shadow: 0 0 20px #0077ff, 0 0 40px #0077ff80; }
    50% { box-shadow: 0 0 40px #0099ff, 0 0 80px #0099ffcc; }
    100% { box-shadow: 0 0 20px #0077ff, 0 0 40px #0077ff80; }
}

.hotspot {
    position: absolute;
    padding: 8px 20px;
    background: #c02f3fe0;
    color: white;
    border-radius: 40px;
    font-size: 1rem;
    font-weight: 600;
    border: 1px solid #ff8a8a;
    box-shadow: 0 0 20px #ff4757;
    z-index: 15;
    pointer-events: auto;
    white-space: nowrap;
    backdrop-filter: blur(4px);
}

.map-legend {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: #0f1b30e0;
    backdrop-filter: blur(10px);
    padding: 14px 28px;
    border-radius: 60px;
    color: white;
    border: 1px solid #3e6ba0;
    font-size: 1.1rem;
    z-index: 15;
    display: flex;
    gap: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}