        /* Reset e Stili di Base */
        *, *::before, *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html, body {
            min-height: 100vh;
            background-color: #000000;
            color: #ffffff;
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
        }

        body {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 30px 20px;
            position: relative;
            /* CRITICO: impedisce a qualsiasi elemento di scivolare fuori a destra o in basso */
            overflow-x: hidden; 
            overflow-y: auto;
        }

        /* Sfondo Decorativo Sfumato - CORRETTO PER MOBILE */
        body::before {
            content: "";
            position: fixed; /* Cambiato in fixed per non seguire lo scroll */
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%); /* Lo centra perfettamente senza spingere i bordi */
            width: 100vw;  /* Usa la larghezza esatta dello schermo */
            height: 100vh; /* Usa l'altezza esatta dello schermo */
            background: radial-gradient(circle, rgba(13,76,108,0.2) 0%, rgba(0,0,0,0) 70%);
            z-index: 1;
            pointer-events: none;
        }

        /* Contenitore Principale */
        .container {
            max-width: 890px;
            width: 100%;
            text-align: center;
            z-index: 2;
            margin: auto;
        }

        /* Logo Autoadattivo */
        .logo-wrapper {
            margin-bottom: 25px;
        }

        .logo {
            max-width: 200px; /* Dimensione bilanciata per PC e Mobile */
            width: 100%;
            height: auto;
            display: block;
            margin: 0 auto;
        }

        /* Testi ed Intestazioni */
        h1 {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 10px;
            color: #ffffff;
        }

        /* Linea di separazione tricolore */
        .tricolore-divider {
            display: flex;
            justify-content: center;
            width: 120px;
            height: 4px;
            margin: 15px auto 20px auto;
            border-radius: 2px;
            overflow: hidden;
        }

        .tricolore-divider .verde { background-color: #009246; flex: 1; }
        .tricolore-divider .bianco { background-color: #ffffff; flex: 1; }
        .tricolore-divider .rosso { background-color: #ce2b37; flex: 1; }

        .status-tag {
            display: inline-block;
            background-color: rgba(13, 76, 108, 0.3);
            border: 1px solid #0d4c6c;
            color: #4ba3e3;
            padding: 6px 14px;
            font-size: 0.8rem;
            font-weight: 600;
            border-radius: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 25px;
        }

        p.description {
            font-size: 1rem;
            line-height: 1.5;
            color: #b3b3b3;
            margin-bottom: 30px;
        }

        /* Box Contatti */
        .contacts-box {
            background: rgba(20, 20, 20, 0.6);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            padding: 25px;
            margin-bottom: 30px;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            text-align: left;
        }

        .contacts-box h2 {
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 15px;
            color: #ffffff;
            text-align: center;
            letter-spacing: 0.5px;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 12px;
            font-size: 0.95rem;
        }

        .contact-item:last-child {
            margin-bottom: 0;
        }

        .contact-label {
            font-weight: 600;
            color: #4ba3e3;
            min-width: 80px;
            flex-shrink: 0;
        }

        .contact-value, .contact-value a {
            color: #e0e0e0;
            text-decoration: none;
            word-break: break-all;
            transition: color 0.2s ease;
        }

        .contact-value a:hover {
            color: #4ba3e3;
        }


       /* --- 1. ANIMAZIONI BASE (KEYFRAMES) --- */
        @keyframes paginaEntrata {
            from { opacity: 0; transform: translateY(15px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes pulsazioneSoft {
            0% { transform: scale(1); opacity: 0.9; }
            50% { transform: scale(1.04); opacity: 1; box-shadow: 0 4px 10px rgba(220, 53, 69, 0.3); }
            100% { transform: scale(1); opacity: 0.9; }
        }

        /* Animazione globale all'apertura della pagina */
        body {
            animation: paginaEntrata 0.8s ease-out forwards;
        }

        /* --- 2. STILI DELLA SEZIONE NEWS --- */
        .news-section {
            margin: 35px 0;
            text-align: left;
        }
        .news-section h2 {
            font-size: 1.4rem;
            color: #fff;
            margin-bottom: 20px;
            text-align: center;
            font-weight: 700;
        }
        .news-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
            padding: 0 5px;
        }
        .news-card {
            display: flex;
            flex-direction: column;
            background: #ffffff;
            border: 1px solid #e0e0e0;
            border-radius: 12px;
            overflow: hidden;
            text-decoration: none;
            color: #333333;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
            /* Transizione fluida per il movimento della card */
            transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s ease, border-color 0.3s ease;
        }
        
        /* Effetto Hover sulla Card */
        .news-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
            border-color: #0056b3;
        }

        /* Effetto Zoom sulla foto della card al passaggio del mouse */
        .news-img-wrapper {
            width: 100%;
            height: 210px;
            overflow: hidden; /* Fondamentale per contenere lo zoom */
            background-color: #f0f0f0;
        }
        .news-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
        }
        .news-card:hover .news-img {
            transform: scale(1.06); /* Ingrandimento leggero e controllato */
        }

        .news-body {
            padding: 20px;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }
        .news-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 12px;
            font-size: 0.8rem;
        }
        .news-source {
            font-weight: 700;
            color: #0056b3;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .news-date {
            color: #888;
        }
        .news-card h3 {
            font-size: 1.05rem;
            margin: 0 0 10px 0;
            line-height: 1.4;
            color: #111111;
            font-weight: 600;
        }
        .news-card p {
            font-size: 0.9rem;
            color: #555555;
            line-height: 1.5;
            margin: 0 0 15px 0;
            flex-grow: 1;
        }
        
        /* Animazione sulla freccia del "Leggi di più" */
        .news-link-text {
            font-size: 0.85rem;
            font-weight: 600;
            color: #0056b3;
            display: inline-flex;
            align-items: center;
            margin-top: auto;
        }
        .news-link-text span {
            transition: transform 0.2s ease;
            display: inline-block;
            margin-left: 5px;
        }
        .news-card:hover .news-link-text span {
            transform: translateX(4px); /* La freccetta si sposta a destra */
        }

        /* --- 3. OTTIMIZZAZIONE ALTRI ELEMENTI ESISTENTI --- */
        
        /* Animazione Pulse sul tag di stato (se non ha già stili contrastanti nel tuo style.css) */
        .status-tag {
            display: inline-block;
            animation: pulsazioneSoft 3s ease-in-out infinite;
        }

        /* Micro-interazione sul bottone nazionale */
        .btn-national {
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }
        .btn-national:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        @media (max-width: 480px) {
            .news-grid {
                grid-template-columns: 1fr;
                padding: 0;
            }
        }


        
        /* Pulsante Collegamento Nazionale */
        .btn-national {
            display: inline-block;
            background-color: transparent;
            color: #ffffff;
            border: 1px solid rgba(255, 255, 255, 0.3);
            padding: 10px 20px;
            font-size: 0.85rem;
            font-weight: 500;
            border-radius: 6px;
            text-decoration: none;
            transition: all 0.3s ease;
            margin-bottom: 35px;
        }

        .btn-national:hover {
            background-color: #ffffff;
            color: #000000;
            border-color: #ffffff;
        }

        /* Footer */
        footer {
            font-size: 0.75rem;
            color: #666666;
            width: 100%;
        }

        /* Adattamento specifico per Smartphone */
        @media (max-width: 768px) {
            body {
                align-items: flex-start; /* Allinea in alto così se serve scrollare parte da zero */
                padding: 25px 15px;
            }
            h1 {
                font-size: 1.5rem;
            }
            .contact-item {
                flex-direction: column;
            }
            .contact-label {
                margin-bottom: 2px;
            }
        }