#sf-world-map {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    z-index: 1;
}

/* Custom Marker */
.sf-marker {
    width: 44px;
    height: 44px;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    background: #1a1a2e;
    border: 3px solid #fff;
    box-shadow: 0 3px 10px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.sf-marker:hover {
    box-shadow: 0 5px 16px rgba(0,0,0,0.4);
}

.sf-marker img {
    transform: rotate(45deg);
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.sf-marker-icon {
    transform: rotate(45deg);
    font-size: 20px;
}

/* Popup */
.sf-popup {
    text-align: center;
    min-width: 180px;
}

.sf-popup-img {
    width: 100%;
    max-width: 200px;
    height: 160px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 8px;
    display: block;
}

.sf-popup-title {
    font-weight: 700;
    font-size: 15px;
    margin: 4px 0 2px;
}

.sf-popup-country {
    color: #666;
    font-size: 13px;
    margin-bottom: 6px;
}

.sf-popup-ig {
    display: inline-block;
    margin-top: 4px;
    padding: 4px 12px;
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: #fff !important;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
}

.leaflet-popup-content-wrapper {
    border-radius: 12px !important;
    box-shadow: 0 8px 24px rgba(0,0,0,0.18) !important;
}
