.global-reach {
    padding: 6rem 2rem;
    /* Standardized spacing */
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

/* Removed min-height from pixel-map */
.pixel-map {
    width: 100%;
    display: flex;
    justify-content: center;
}

/* Fallback was map-fallback, now using map-bg object */
.map-bg {
    position: relative;
    /* Changed from absolute to flow naturally */
    top: auto;
    left: auto;
    transform: none;
    width: 100%;
    max-width: 620px;
    /* Restricted width as requested */
    height: auto;
    object-fit: contain;
    opacity: 0.8;
    pointer-events: none;
    mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
}

.map-fallback {
    display: none;
}

/* Use a background image if available for the world map */
/* Removed .pixel-map::before as we are using a direct image now */

/* Pins */
.map-pin {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.map-pin:hover {
    transform: scale(1.1);
    z-index: 10;
}

/* Pin Positions (Approximate % for responsiveness - centered on Mercator) */
.pin-us {
    top: 35%;
    left: 20%;
    /* North America */
}

.pin-eu {
    top: 28%;
    left: 52%;
    /* Europe */
}

.pin-asia {
    top: 38%;
    left: 78%;
    /* Asia */
}

.pin-dot {
    width: 14px;
    height: 14px;
    background-color: #6366f1;
    /* Primary accent */
    border: 2px solid #fff;
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(99, 102, 241, 0.6);
    position: relative;
    z-index: 2;
}

.pin-wave {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(99, 102, 241, 0.5);
    opacity: 0;
    animation: pinPulse 2.5s infinite;
    z-index: 1;
}

@keyframes pinPulse {
    0% {
        width: 12px;
        height: 12px;
        opacity: 0.8;
    }

    100% {
        width: 40px;
        height: 40px;
        opacity: 0;
    }
}

.pin-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
    background: rgba(0, 0, 0, 0.6);
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    opacity: 0.8;
}