        /* Generale */
        body {
            font-family: 'Poppins', sans-serif;
            margin: 0;
            padding: 0;
            background: #121212; /* Sfondo scuro */
            color: white;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            min-height: 100vh;
        }

        /* Header */
        header {
            background-color: #1f1f1f;
            color: white;
            padding: 20px 0;
            width: 100%;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); /* Ombra per profondità */
        }

        .header-content {
            text-align: center;
            padding: 0 20px;
        }

        .beta-badge {
            background-color: #ff6347;
            color: white;
            padding: 5px 10px;
            border-radius: 5px;
            font-size: 14px;
            position: absolute;
            top: 10px;
            right: 10px;
        }

        nav ul {
            list-style-type: none;
            padding: 0;
            margin-top: 20px;
            display: flex;
            justify-content: center;
        }

        nav ul li {
            margin: 0 15px;
        }

        nav ul li a {
            color: #bbb;
            text-decoration: none;
            font-weight: bold;
            font-size: 16px;
            transition: color 0.3s ease;
        }

        nav ul li a:hover {
            color: #ff9800;
        }

/* Call to Action Button */
.cta-button {
    display: inline-block;
    padding: 12px 25px;
    background: #ff9800;
    color: white;
    text-decoration: none;
    border-radius: 50px; /* Bordi arrotondati */
    font-weight: bold;
    font-size: 16px;
    letter-spacing: 1px;
    box-shadow: 0 6px 15px rgba(255, 152, 0, 0.3); /* Ombra morbida per un effetto di profondità */
    transition: background 0.3s, transform 0.2s, box-shadow 0.2s ease-out;
    margin-top: 20px;
}

.cta-button:hover {
    background: #e68900; /* Colore più scuro al passaggio del mouse */
    transform: scale(1.1); /* Effetto di ingrandimento al passaggio del mouse */
    box-shadow: 0 8px 20px rgba(255, 152, 0, 0.5); /* Ombra più marcata */
}

.cta-button:active {
    transform: scale(0.95); /* Effetto di "pressione" quando si clicca */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Ombra ridotta al clic */
}

/* Aggiungere effetti anche per i link nel footer */
footer a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 12px 25px;
    background-color: #ff9800;
    border-radius: 50px; /* Bordi arrotondati */
    letter-spacing: 1px;
    transition: background 0.3s, transform 0.2s, box-shadow 0.2s ease-out;
}

footer a:hover {
    background-color: #e68900; /* Colore più scuro al passaggio del mouse */
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(255, 152, 0, 0.5);
}

footer a:active {
    transform: scale(0.95);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}


        /* Sezioni */
        section {
            width: 80%;
            max-width: 900px;
            margin: 20px 0;
            padding: 40px;
            background: rgba(255, 255, 255, 0.05); /* Background traslucido */
            border-radius: 10px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Ombra per effetto di profondità */
        }

        section h2 {
            color: #ff9800;
            font-size: 28px;
            margin-bottom: 20px;
        }

        section p, section ul {
            color: #ccc;
            font-size: 16px;
        }

        ul {
            list-style-type: none;
            padding: 0;
        }

        ul li {
            margin: 10px 0;
        }

        iframe {
            border-radius: 10px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Ombra per il widget Discord */
        }

        /* Footer */
        footer {
            background-color: #1f1f1f;
            padding: 20px;
            width: 100%;
            text-align: center;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); /* Ombra per profondità */
        }

        footer a {
            color: white;
            text-decoration: none;
            font-weight: bold;
            padding: 10px 15px;
            background-color: #ff9800;
            border-radius: 5px;
            transition: background 0.3s;
        }

        footer a:hover {
            background-color: #e68900;
        }

        /* Animazioni */
        .fade-in {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 1s ease-out, transform 1s ease-out;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }
