* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #0a0a0a;
    min-height: 100vh;
    overflow: hidden;
    cursor: pointer;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.main-image {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    object-position: center;
    display: block;
    animation: fadeIn 0.5s ease-in-out;
}

#map {
    position: fixed;
    top: 24px;
    width: 180px;
    height: 140px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.8);
    z-index: 1000;
    border: 2px solid rgba(255,255,255,0.3);
    overflow: hidden;
    background: transparent;
    opacity: 0.65;
    transition: all 0.3s ease;
}

#map.pos-right { right: 24px; }
#map.pos-left  { left:  24px; }

#map:hover {
    width: 750px;
    height: 660px;
    opacity: 1;
}

#map .leaflet-container,
#map .leaflet-pane,
#map .leaflet-tile-pane {
    background: transparent !important;
}

.custom-marker {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #ff4d4d;
    border: 2px solid #ffffff;
    box-shadow: 0 0 10px rgba(255, 77, 77, 0.8);
}

.place-tooltip {
    background: rgba(10, 10, 10, 0.72);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 999px;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 600;
    box-shadow: none;
}

.place-tooltip:before {
    display: none;
}

#info-overlay {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 6px;
    pointer-events: none;
}

.info-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(10, 10, 10, 0.60);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 999px;
    padding: 5px 14px;
    font-size: 13px;
    font-weight: 600;
    font-family: system-ui, sans-serif;
    letter-spacing: 0.02em;
    backdrop-filter: blur(6px);
    width: fit-content;
}

@media (max-width: 768px) {
    #map {
        width: 160px;
        height: 120px;
    }
}
