.map-page {
    position: fixed;
    inset: 0;
    background: #121821;
}

#map {
    position: absolute;
    left: 50%;
    top: 46%;

    width: 76vw;
    height: 80vh;

    transform: translate(-50%, -50%);

    background: #121821;
    border-radius: 24px;
    overflow: hidden;

    border: 2px solid #7b95b5;

    box-shadow:
        0 0 0 1px rgba(255,255,255,0.05),
        0 0 20px rgba(123,149,181,0.10),
        0 16px 48px rgba(0,0,0,0.35);
}

.leaflet-container {
    background: #121821;
}

.leaflet-control-zoom {
    display: none;
}

.leaflet-control-attribution {
    display: none;
}

#country-tooltip {
    position: fixed;
    z-index: 9999;

    padding: 7px 10px;

    background: rgba(16, 23, 34, 0.94);
    color: #e8eef9;

    border: 1px solid rgba(123, 149, 181, 0.55);
    border-radius: 8px;

    font-size: 14px;
    line-height: 1.25;

    pointer-events: none;

    opacity: 0;
    transform: translate(12px, 12px);

    transition: opacity 0.08s ease;
}

#country-tooltip.show {
    opacity: 1;
}

#country-tooltip span {
    color: #b7c4d6;
    font-size: 13px;
}

.album-map-preview {
    pointer-events: auto;
    background: transparent;
    border: 0;
}

.album-preview-card {
    display: flex;
    flex-direction: column;
    align-items: center;

    background: transparent;

    color: #e8eef9;
    text-align: center;

    cursor: pointer;

    transition:
        transform 0.12s ease,
        filter 0.12s ease;
}

.album-preview-image-wrap {
    height: 58px;

    box-sizing: border-box;

    border: 2px solid rgba(180, 200, 220, 0.9);
    border-radius: 7px;

    overflow: hidden;

    background: #101722;

    box-shadow: 0 8px 18px rgba(0,0,0,0.35);
}

.album-preview-image-wrap img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;
}

.album-preview-footer {
    width: 80px;

    margin-top: 2px;
    padding: 3px 4px 4px;
    box-sizing: border-box;

    background: rgba(16, 23, 34, 0.98);

    border: 2px solid rgba(123, 149, 181, 0.65);
    border-radius: 6px;

    box-shadow: 0 6px 14px rgba(0,0,0,0.28);

    line-height: 1;
}

.album-preview-footer strong {
    display: block;

    font-size: 9px;
    font-weight: 700;

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.album-preview-footer span {
    display: block;

    margin-top: 2px;

    color: #b7c4d6;
    font-size: 8px;
}

.album-preview-card:hover {
    transform: translateY(-2px);
    filter: brightness(1.08);
}