.world-map-page {
    width: 100%;
    margin: 0 auto;
}

.world-map-header {
    background: #FF69B4;
    color: #ffffff;
    display: inline-block;
    padding: 7px 15px;
    border-radius: 14px;
    font-family: "Book Antiqua", Palatino, serif;
    letter-spacing: 1px;
    font-size: 1.25rem;
    margin-bottom: 15px;
}

.world-map-description {
    margin-bottom: 25px;
    color: #6c757d;
}

.world-map-container {
    position: relative;
    width: 100%;
    max-width: none;
    margin: 0 auto 50px;
}

.world-map-image {
    display: block;
    width: 100%;
    height: auto;
     border: 2px solid #FF69B4;
    border-radius: 12px;
    box-shadow: 0 0 25px rgba(255, 105, 180, 0.65);
}

/* Map buttons */

.map-label {
    position: absolute;
    z-index: 10;
}

.map-label a {
    display: inline-block;
    background: #FF69B4;
    color: #ffffff !important;
    padding: 3px 8px;
    border-radius: 6px;
    font-size: 0.85rem;
    line-height: 1.2;
    text-decoration: none !important;
    white-space: nowrap;
    transition: all 0.15s ease;
}

.map-label a:hover {
    background: #ff4fa3;
    transform: scale(1.05);
}

/* Positions */

.map-label.gold {
    top: 10%;
    left: 12%;
}

.map-label.paradis {
    top: 11%;
    right: 7%;
}

.map-label.divata {
    top: 24%;
    left: 62%;
}

.map-label.lovita {
    top: 38%;
    left: 55%;
}

.map-label.middletown {
    top: 38%;
    left: 70%;
}

.map-label.crovita {
    top: 38%;
    left: 80%;
}

.map-label.spavida {
    top: 51%;
    left: 69%;
}

.map-label.wastelands {
    top: 63%;
    right: 4%;
}

/* Mobile */

@media (max-width: 767px) {

    .world-map-header {
        font-size: 1rem;
    }

    .world-map-description {
        font-size: 0.9rem;
    }

    .map-label a {
        font-size: 0.7rem;
        padding: 2px 5px;
        border-radius: 5px;
    }

}

/* Full-width layout for the interactive map page */
@media (min-width: 992px) {
    .world-map-full-width {
        flex: 0 0 83.333333%;
        max-width: 83.333333%;
    }

    .world-map-full-width .featured-homesteads-layout {
        display: block;
    }

    .world-map-full-width .featured-homesteads-content {
        width: 100%;
    }
}

/* World map music button */

.world-music-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 1000;

    width: 48px;
    height: 48px;

    border: 2px solid #ffffff;
    border-radius: 50%;

    background: #FF69B4;
    color: #ffffff;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;
    pointer-events: auto;

    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.25);

    transition: transform 0.15s ease, background 0.15s ease;
}

.world-music-toggle:hover {
    background: #ff4fa3;
    transform: scale(1.08);
}

.world-music-toggle:active {
    transform: scale(0.95);
}

.world-music-toggle i {
    font-size: 1.1rem;
}

/* Make sure the map image cannot block the controls */
.world-map-image {
    position: relative;
    z-index: 1;
    pointer-events: none;
}

@media (max-width: 767px) {

    .world-music-toggle {
        top: 10px;
        right: 10px;
        width: 42px;
        height: 42px;
    }

    .world-music-toggle i {
        font-size: 1rem;
    }

}
