body {
    margin: 0;
    background: #0b1c2d;
    font-family: Arial, sans-serif;
}

.map-container {
    position: relative;
    max-width: 1600px;
    margin: auto;
}

.map-bg {
    width: 100%;
    display: block;
}

.map-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

/* TRASY */
.trasa {
    fill: none;
    stroke-width: 10;
    stroke-linecap: round;
    cursor: pointer;
    transition: 0.3s;
}

.trasa.niebieska {
    stroke: #2da9ff;
}

.trasa.czerwona {
    stroke: #ff3b3b;
}

.trasa:hover {
    stroke-width: 16;
    filter: drop-shadow(0 0 12px rgba(255,255,255,.8));
}

/* PUNKTY */
.punkt {
    fill: #ffffff;
    stroke: #003366;
    stroke-width: 3;
    cursor: pointer;
    transition: 0.2s;
}

.punkt:hover {
    fill: #003366;
}

/* TEKSTY */
svg text {
    fill: #003366;
    font-size: 18px;
    font-weight: bold;
    pointer-events: none;
}

/* NARCIARZ */
.narciarz text {
    filter: drop-shadow(0 3px 6px rgba(0,0,0,.6));
}
