
/* Strona Mapa (Dynmapa) */
#map .content {
    display: flex;
    flex-direction: column;
    gap: 28px;
}
#map .map-head {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
#map .map-head h1 {
    font-family: var(--display-font);
    color: var(--white-color);
    font-size: 40px;
    font-weight: 700;
    text-transform: uppercase;
}
#map .map-head h1 span { color: var(--main-color); }
#map .map-head p {
    color: var(--description-color);
    font-size: 17px;
    line-height: 1.6;
    max-width: 700px;
}
#map .map-wrapper {
    position: relative;
    width: 100%;
    height: 72vh;
    min-height: 460px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(247, 170, 169, 0.15);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
    background: var(--stats-background);
}
#map .dynmap-frame {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}
#map .map-fallback {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    text-align: center;
    padding: 30px;
    color: var(--description-color);
    line-height: 1.6;
}
#map .map-fallback i { font-size: 42px; color: var(--main-color); }
#map .map-fallback b { color: var(--white-color); }
#map .dynmap-open {
    align-self: flex-start;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--copy-ip-button-background);
    border: 2px solid var(--main-color);
    color: var(--white-color);
    font-weight: 600;
    font-size: 16px;
    padding: 11px 24px;
    border-radius: 8px;
    transition: 0.2s ease;
}
#map .dynmap-open:hover { background: var(--main-color); }

@media screen and (max-width: 819px) {
    #map .map-head h1 { font-size: 30px; }
    #map .map-wrapper { height: 60vh; }
}
