
        /* Variabili di Design - Gestione centralizzata dei colori e delle transizioni */
        :root {
            --bg-dark: #0a192f;
            --bg-light: #112240;
            --accent-blue: #00d2ff;
            --text-primary: #e6f1ff;
            --text-secondary: #8892b0;
            --nav-height: 80px;
            --transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
        }

        /* Reset e Stili Base */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            background-color: var(--bg-dark);
            color: var(--text-primary);
            line-height: 1.6;
            overflow-x: hidden;
            padding-top: var(--nav-height);
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }

        ul {
            list-style: none;
        }

        /* Scrollbar Personalizzata per browser basati su Webkit */
        ::-webkit-scrollbar {
            width: 10px;
        }

        ::-webkit-scrollbar-track {
            background: var(--bg-dark);
        }

        ::-webkit-scrollbar-thumb {
            background: var(--bg-light);
            border-radius: 5px;
            border: 2px solid var(--bg-dark);
        }

        ::-webkit-scrollbar-thumb:hover {
            background: var(--accent-blue);
        }

        /* Navigazione e Header */
        header {
            height: var(--nav-height);
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 50px;
            background: rgba(10, 25, 47, 0.85);
            backdrop-filter: blur(10px);
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            border-bottom: 1px solid rgba(0, 210, 255, 0.1);
        }

        .logo {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--accent-blue);
            letter-spacing: 2px;
            z-index: 1001; /* Mantiene il logo sopra il menu mobile */
        }

        nav ul {
            display: flex;
            gap: 30px;
        }

        nav ul li a:hover {
            color: var(--accent-blue);
        }

        /* Stili per il pulsante Hamburger (nascosto su desktop) */
        .hamburger {
            display: none;
            cursor: pointer;
            z-index: 1001; /* Deve stare sopra il menù a tendina */
        }

        .hamburger .bar {
            display: block;
            width: 25px;
            height: 3px;
            margin: 5px auto;
            background-color: var(--accent-blue);
            transition: var(--transition);
        }

        /* Sezione Hero */
        .hero {
            height: calc(100vh - var(--nav-height));
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 0 10%;
            background: radial-gradient(circle at 80% 20%, rgba(0, 210, 255, 0.05) 0%, transparent 40%);
        }

        .hero span {
            color: var(--accent-blue);
            font-size: 1.1rem;
            margin-bottom: 20px;
            display: block;
        }

        .hero h1 {
            font-size: 3rem;
            margin-bottom: 10px;
        }

        .hero h2 {
            font-size: 2.5rem;
            color: var(--text-secondary);
            margin-bottom: 30px;
        }

        .hero p {
            max-width: 600px;
            color: var(--text-secondary);
            margin-bottom: 50px;
        }

        /* Pulsanti e Azioni */
        .cta-button {
            display: inline-block;
            padding: 18px 30px;
            border: 1px solid var(--accent-blue);
            border-radius: 4px;
            color: var(--accent-blue);
            font-weight: 600;
            background: transparent;
            cursor: pointer;
            transition: var(--transition);
        }

        .cta-button:hover {
            background: rgba(0, 210, 255, 0.1);
            transform: translateY(-3px);
        }

        /* Sezioni Contenuto Generiche */
        section {
            padding: 60px 10%;
        }
				
				
		.section-title {
			display: flex;
			align-items: center;
			margin-bottom: 40px;
			font-size: 2rem;
			white-space: nowrap;
		}

		.section-title::after {
			content: "";
			display: block;
			width: 300px;
			height: 1px;
			background: var(--bg-light);
			margin-left: 20px;
		}

		/* Griglia Progetti e Card */
		.projects-grid {
			display: grid;
			grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
			gap: 20px;
		}

		.project-card {
			background: var(--bg-light);
			padding: 25px;
			border-radius: 8px;
			transition: var(--transition);
			border: 1px solid transparent;
		}

		.project-card:hover {
			transform: translateY(-10px);
			border-color: var(--accent-blue);
			box-shadow: 0 20px 30px -15px rgba(2, 12, 27, 0.7);
		}

		.project-card h3 {
			margin-bottom: 15px;
			color: var(--text-primary);
		}

		.project-card p {
			color: var(--text-secondary);
			font-size: 0.9rem;
		}

		.tech-tags {
			display: flex;
			flex-wrap: wrap;
			gap: 10px;
			margin-top: 20px;
		}

		.tech-tags span {
			font-size: 0.8rem;
			color: var(--accent-blue);
			font-family: 'Courier New', Courier, monospace;
		}

		/* Footer della pagina */
		footer {
			padding: 50px 10%;
			text-align: center;
			color: var(--text-secondary);
			border-top: 1px solid var(--bg-light);
			font-size: 0.9rem;
		}

        /* Media Queries per dispositivi mobili e tablet */
        @media (max-width: 768px) {
            header {
                padding: 0 20px;
            }

            .logo {
                font-size: 2rem;
            }

            /* Mostra il pulsante hamburger */
            .hamburger {
                display: block;
            }

            /* Trasforma il nav in un pannello laterale */
            nav {
                position: fixed;
                top: 0;
                right: -100%; /* Nascosto fuori dallo schermo a destra */
                width: 70%;
                height: 100vh;
                background-color: var(--bg-light);
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                transition: 0.4s ease-in-out;
                box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
            }

            /* Classe aggiunta tramite JavaScript per mostrare il menù */
            nav.active {
                right: 0;
            }

            nav ul {
                flex-direction: column;
                text-align: center;
                gap: 40px;
            }

            nav ul li a {
                font-size: 1.2rem;
            }

            /* Animazione per trasformare le 3 barre in una "X" */
            .hamburger.active .bar:nth-child(1) {
                transform: translateY(8px) rotate(45deg);
            }

            .hamburger.active .bar:nth-child(2) {
                opacity: 0;
            }

            .hamburger.active .bar:nth-child(3) {
                transform: translateY(-8px) rotate(-45deg);
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .hero h2 {
                font-size: 2rem;
            }

            .section-title::after {
                width: 100px;
            }
            
            section {
                padding: 60px 5%;
            }
        }
