.map-loader-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    pointer-events: all;
}

.map-loader {
    background: linear-gradient(to bottom, rgba(26, 13, 10, 0.95), rgba(58, 44, 26, 0.8));
    border: 2px solid #8b4513;
    border-radius: 12px;
    padding: 24px 40px;
    text-align: center;
    font-family: "MedievalSharp", cursive;
    color: #e0a84b;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.map-loader-spinner {
    width: 48px;
    height: 48px;
    border: 4px solid rgba(255, 255, 255, 0.2);
    border-top-color: #e0a84b;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 12px;
}

.map-loader-text {
    font-size: 18px;
    animation: pulse 1.2s ease-in-out infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}
