       * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body, html {
            height: 100%;
            overflow: hidden;
        }
        
        .container {
            height: 100vh;
            width: 100vw;
            display: flex;
            justify-content: center;
            align-items: center;
            /*background: radial-gradient(ellipse at center, 
                        rgba(255, 255, 255, 1) 0%, 
                        rgba(240, 240, 240, 1) 50%, 
                        rgba(220, 220, 220, 1) 100%);*/




/* Radial con centro schiarito e falloff più morbido */
background-image: radial-gradient(
  circle at 50% 50%,
  #2F3B52 0%,   /* più chiaro al centro */
  #253046 30%,
  #141924 60%,
  #0D0F14 100%
);

        }
        
        .logo-container {
            max-width: 90vw;
            max-height: 90vh;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        #logo {
            max-width: 100%;
            max-height: 100%;
            width: auto;
            height: auto;
            object-fit: contain;
            filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
        }
        
        /* Versione alternativa per schermi molto larghi */
        @media (min-aspect-ratio: 16/9) {
            #logo {
                height: 80vh;
                width: auto;
            }
        }
        
        /* Versione alternativa per schermi molto alti */
        @media (max-aspect-ratio: 4/5) {
            #logo {
                width: 80vw;
                height: auto;
            }

        }
