		body, html {
			margin: 0;
			padding: 0;
			height: auto; /* Cambia da 100% ad auto */
			width: 100%;
			font-family: 'Cinzel', serif;
			color: #e0e0e0;
			background-color: #000;
			overflow-x: hidden; /* Mantieni solo hidden per l'asse x */
			overflow-y: auto; /* Cambia da hidden ad auto */
			position: relative;
		}

		/* Container principale */
		.container {
			position: relative;
			z-index: 2;
			display: flex;
			flex-direction: column;
			justify-content: flex-start; /* Cambia da center a flex-start */
			align-items: center;
			min-height: 100vh; /* Cambia da height a min-height */
			text-align: center;
			padding: 60px 20px; /* Aumenta il padding */
			box-sizing: border-box;
		}
        
        /* Titolo principale */
        h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            text-shadow: 0 0 10px rgba(150, 0, 200, 0.7), 0 0 20px rgba(150, 0, 200, 0.5);
            color: #fff;
            letter-spacing: 3px;
        }
        
        /* Messaggio */
        p {
            font-size: 1.5rem;
            max-width: 800px;
            margin-bottom: 30px;
            line-height: 1.6;
        }
        
        /* Simboli magici decorativi */
        .symbol {
            position: absolute;
            font-size: 3rem;
            opacity: 0.3;
            z-index: 1;
        }
        
        .symbol:nth-child(1) {
            top: 15%;
            left: 15%;
            transform: rotate(30deg);
        }
        
        .symbol:nth-child(2) {
            top: 20%;
            right: 20%;
            transform: rotate(-20deg);
        }
        
        .symbol:nth-child(3) {
            bottom: 25%;
            left: 25%;
            transform: rotate(15deg);
        }
        
        .symbol:nth-child(4) {
            bottom: 15%;
            right: 15%;
            transform: rotate(-15deg);
        }
        
        /* Ragnatele */
        .web {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: 0;
            opacity: 0.3;
        }
        
        .web-line {
            position: absolute;
            background: linear-gradient(to bottom, rgba(255,255,255,0.2), rgba(255,255,255,0.05));
            width: 2px;
        }
        
        /* Effetto di scintillio */
        @keyframes sparkle {
            0% { opacity: 0; }
            50% { opacity: 1; }
            100% { opacity: 0; }
        }
        
        .sparkle {
            position: absolute;
            background-color: #fff;
            border-radius: 50%;
            width: 3px;
            height: 3px;
            animation: sparkle 3s infinite;
        }
        
        /* Countdown */
        .countdown {
            margin-top: 30px;
            font-size: 1.8rem;
            border: 1px solid rgba(150, 0, 200, 0.5);
            padding: 15px 30px;
            border-radius: 10px;
            background-color: rgba(0, 0, 0, 0.5);
            box-shadow: 0 0 15px rgba(150, 0, 200, 0.3);
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            h1 { font-size: 2.5rem; }
            p { font-size: 1.2rem; }
        }