/* RESET E IMPOSTAZIONI BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #000;
    overflow: hidden;
    height: 100vh;
    width: 100vw;
}

.catalogo-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pagina {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 1280px;
    max-height: 1280px;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background-color: white;
    cursor: pointer;
    /* Aggiunte per mobile */
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.contenuto-pagina {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.elemento-pagina {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.contenitore-media {
    overflow: hidden;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    pointer-events: none;
}

.contenitore-media img,
.contenitore-media video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    pointer-events: none;
}

img, video, button {
    -webkit-tap-highlight-color: transparent;
    outline: none;
}