/* Galeria 3D — Styl główny */
body {
    margin: 0;
    overflow: hidden;
    background-color: #000;
    touch-action: none;
    font-family: 'Noto Sans Display', sans-serif;
}
#canvas-container {
    width: 100vw;
    height: 100vh;
    display: block;
}
#loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 24px;
    pointer-events: none;
    z-index: 10;
    font-family: 'Noto Sans Display', sans-serif;
    text-align: center;
}
#loading img {
    max-width: 80vw;
    max-height: 50vh;
    margin-bottom: 20px;
    pointer-events: none;
}
#tooltip {
    display: none;
    position: absolute;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    pointer-events: none;
    z-index: 100;
    font-family: 'Noto Sans Display', sans-serif;
    font-size: 7px;
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
}
#lightbox {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    cursor: grab;
    overflow: hidden;
}
#lightbox-img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
    box-shadow: 0 0 20px black;
    transform-origin: center center;
    transform: scale(1) translate(0px, 0px);
    transition: transform 0.2s ease-out;
}
