    <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Courier New', monospace;
            background: #0a0a0a;
            color: #e3e3e3;
            overflow-x: hidden;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-start;
            gap: 18px;
            padding: 20px;
        }

        /* Header row (logo + Artemis II link) */
        .top-header {
            width: 100%;
            display: flex;
            justify-content: center;
            align-items: flex-start;
            gap: 16px;
            flex-wrap: wrap;
            margin-top: 6px;
            margin-bottom: 4px;
            animation: fadeInDown 1.1s ease-out;
        }

        .top-logo {
            display: flex;
            justify-content: center;
            align-items: center;
            pointer-events: none;
        }

        .top-logo img {
            display: block;
            height: auto;
            width: min(340px, 78vw);
            filter: contrast(0.95) brightness(0.95) drop-shadow(0 6px 10px rgba(0, 0, 0, 0.55));
        }

        .a2-card {
            text-decoration: none;
            color: inherit;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            padding: 10px 12px;
            border-radius: 12px;
            background: rgba(20, 20, 20, 0.35);
            border: 1px solid rgba(107, 153, 153, 0.22);
            box-shadow:
                0 0 16px rgba(107, 153, 153, 0.10),
                inset 0 0 16px rgba(0, 0, 0, 0.55);
            transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
        }

        .a2-card:hover {
            transform: translateY(-2px);
            border-color: rgba(107, 153, 153, 0.45);
            background: rgba(25, 25, 25, 0.45);
        }

        .a2-img {
            display: block;
            width: min(148px, 42vw);
            height: auto;
            filter: contrast(0.95) brightness(0.95) drop-shadow(0 8px 12px rgba(0, 0, 0, 0.55));
        }

        .a2-label {
            font-size: 0.78rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: rgba(184, 184, 184, 0.90);
            text-align: center;
            animation: cdFlicker 3.2s infinite;
        }

        .a2-countdown {
            display: flex;
            gap: 8px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .a2-unit {
            min-width: 64px;
            padding: 8px 8px 7px;
            border-radius: 10px;
            background: rgba(139, 0, 0, 0.08);
            border: 1px solid rgba(107, 48, 48, 0.30);
            box-shadow:
                0 0 12px rgba(139, 0, 0, 0.10),
                inset 0 0 12px rgba(0, 0, 0, 0.45);
            text-align: center;
        }

        .a2-num {
            font-size: 1.35rem;
            font-weight: 700;
            line-height: 1;
            color: #b8b8b8;
            text-shadow:
                0 0 8px rgba(107, 153, 153, 0.16),
                2px 2px 0 rgba(0, 0, 0, 0.55);
        }

        .a2-text {
            margin-top: 4px;
            font-size: 0.62rem;
            letter-spacing: 2px;
            color: rgba(107, 153, 153, 0.80);
        }

        @keyframes cdFlicker {
            0%, 100% { opacity: 0.95; }
            7% { opacity: 0.82; }
            10% { opacity: 0.95; }
            12% { opacity: 0.70; }
            14% { opacity: 0.95; }
            50% { opacity: 0.88; }
            52% { opacity: 0.60; }
            54% { opacity: 0.92; }
        }

        /* CRT TV Frame */
        .tv-frame {
            position: relative;
            width: 100%;
            max-width: 1200px;
            background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
            border-radius: 30px;
            padding: 40px;
            box-shadow: 
                inset 0 0 50px rgba(0, 0, 0, 0.8),
                0 20px 60px rgba(0, 0, 0, 0.9);
        }

        .tv-frame::before {
            content: '';
            position: absolute;
            top: 15px;
            left: 15px;
            right: 15px;
            bottom: 15px;
            border: 3px solid #3a3a3a;
            border-radius: 20px;
            pointer-events: none;
        }

        /* CRT Screen */
        .crt-screen {
            position: relative;
            background: radial-gradient(ellipse at center, #1a1a2e 0%, #0a0a0a 100%);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 
                inset 0 0 100px rgba(0, 0, 0, 0.9),
                inset 0 0 30px rgba(0, 100, 100, 0.1);
            border: 2px solid #0a0a0a;
        }

        /* CRT Curvature effect */
        .crt-screen::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(ellipse at center, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
            pointer-events: none;
            z-index: 10;
        }

        /* Static noise overlay */
        .static-noise {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200"><filter id="noise"><feTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="4" stitchTiles="stitch"/></filter><rect width="100%" height="100%" filter="url(%23noise)" opacity="0.05"/></svg>');
            opacity: 0.3;
            z-index: 5;
            pointer-events: none;
            animation: staticFlicker 0.2s infinite;
        }

        @keyframes staticFlicker {
            0%, 100% { opacity: 0.3; }
            50% { opacity: 0.4; }
        }

        /* Interference lines */
        .interference {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: repeating-linear-gradient(
                0deg,
                transparent,
                transparent 2px,
                rgba(0, 255, 255, 0.03) 2px,
                rgba(0, 255, 255, 0.03) 4px
            );
            z-index: 6;
            pointer-events: none;
            animation: interference 8s linear infinite;
        }

        @keyframes interference {
            0% { transform: translateY(0); }
            100% { transform: translateY(100px); }
        }

        /* Signal distortion */
        .signal-distortion {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: rgba(255, 255, 255, 0.1);
            z-index: 7;
            pointer-events: none;
            animation: distortion 3s ease-in-out infinite;
        }

        @keyframes distortion {
            0%, 100% { 
                top: 20%;
                opacity: 0;
            }
            50% { 
                top: 80%;
                opacity: 0.3;
            }
        }

        /* Animated particles */
        .particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 1;
        }

        .particle {
            position: absolute;
            width: 1px;
            height: 1px;
            background: rgba(100, 200, 200, 0.4);
            animation: float 15s infinite;
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0) translateX(0);
                opacity: 0;
            }
            10% {
                opacity: 0.6;
            }
            90% {
                opacity: 0.6;
            }
            100% {
                transform: translateY(-100vh) translateX(100px);
                opacity: 0;
            }
        }

        /* Main container */
        .container {
            position: relative;
            z-index: 2;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            min-height: 70vh;
            padding: 40px 20px;
        }

        /* Logo animation */
        .logo-container {
            margin-bottom: 40px;
            animation: fadeInDown 1.5s ease-out;
            filter: contrast(0.95) brightness(0.95);
        }

        .logo {
            font-size: 3.5rem;
            font-weight: bold;
            text-align: center;
            letter-spacing: 3px;
            text-shadow: 
                2px 2px 4px rgba(139, 0, 0, 0.5),
                0 0 10px rgba(139, 0, 0, 0.3);
        }

        .logo .vigevano {
            color: #d0d0d0;
            display: block;
        }

        .logo .retro {
            color: #a01414;
            display: inline-block;
        }

        .logo .futura {
            color: #d0d0d0;
            display: inline-block;
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Glitch effect */
        .glitch {
            position: relative;
            animation: glitch 5s infinite;
        }

        @keyframes glitch {
            0%, 90%, 100% {
                transform: translate(0);
            }
            92% {
                transform: translate(-2px, 2px);
                filter: hue-rotate(90deg);
            }
            94% {
                transform: translate(2px, -2px);
            }
            96% {
                transform: translate(-2px, -2px);
                filter: hue-rotate(-90deg);
            }
            98% {
                transform: translate(2px, 2px);
            }
        }

        /* Content */
        .content {
            text-align: center;
            max-width: 800px;
            animation: fadeInUp 2s ease-out;
            filter: contrast(0.9) brightness(0.95);
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .tagline {
            font-size: 1.5rem;
            margin-bottom: 30px;
            color: #83b7b7;
            text-shadow: 0 0 8px rgba(107, 153, 153, 0.4);
            animation: pulse 2s infinite;
        }

                .subcopy { 
                        font-size: 1.1rem; 
                        margin-bottom: 20px; 
                        color: #c0c0c0; 
                }

        @keyframes pulse {
            0%, 100% {
                opacity: 0.9;
            }
            50% {
                opacity: 0.6;
            }
        }

        .date-container {
            background: rgba(139, 0, 0, 0.15);
            border: 2px solid #6b3030;
            padding: 30px 50px;
            margin: 40px 0;
            border-radius: 10px;
            box-shadow: 
                0 0 20px rgba(139, 0, 0, 0.2),
                inset 0 0 20px rgba(0, 0, 0, 0.3);
            animation: borderGlow 2s infinite alternate;
        }

        @keyframes borderGlow {
            from {
                box-shadow: 
                    0 0 15px rgba(139, 0, 0, 0.2),
                    inset 0 0 20px rgba(0, 0, 0, 0.3);
            }
            to {
                box-shadow: 
                    0 0 25px rgba(139, 0, 0, 0.3),
                    inset 0 0 20px rgba(0, 0, 0, 0.3);
            }
        }

        .date {
            font-size: 2.5rem;
            font-weight: bold;
            color: #00ffff;
            margin-bottom: 10px;
            text-shadow:
                0 0 10px rgba(0, 255, 255, 0.8),
                0 0 20px rgba(0, 255, 255, 0.5),
                0 0 40px rgba(0, 255, 255, 0.3),
                2px 2px 4px rgba(0, 0, 0, 0.5);
        }

        .location {
            font-size: 1.3rem;
            color: #ffffff;
            text-shadow:
                0 0 8px rgba(255, 255, 255, 0.6),
                0 0 16px rgba(200, 230, 230, 0.3);
        }

        /* Countdown evento (80s style) */
        .countdown-wrap {
            margin: 22px auto 10px;
            padding: 16px 18px;
            max-width: 760px;
            border-radius: 12px;
            background: rgba(20, 20, 20, 0.35);
            border: 1px solid rgba(107, 153, 153, 0.25);
            box-shadow:
                0 0 18px rgba(107, 153, 153, 0.10),
                inset 0 0 18px rgba(0, 0, 0, 0.55);
            backdrop-filter: blur(2px);
        }

        .countdown-label {
            font-size: 0.95rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: rgba(184, 184, 184, 0.92);
            margin-bottom: 10px;
            text-shadow: 0 0 10px rgba(107, 153, 153, 0.18);
            animation: cdFlicker 3.2s infinite;
        }

        .countdown {
            display: flex;
            justify-content: center;
            align-items: stretch;
            gap: 14px;
            flex-wrap: wrap;
        }

        .cd-unit {
            min-width: 110px;
            padding: 12px 12px 10px;
            border-radius: 10px;
            background: rgba(139, 0, 0, 0.10);
            border: 1px solid rgba(107, 48, 48, 0.35);
            box-shadow:
                0 0 14px rgba(139, 0, 0, 0.14),
                inset 0 0 14px rgba(0, 0, 0, 0.50);
            text-align: center;
        }

        .cd-num {
            font-size: 2.2rem;
            font-weight: 700;
            line-height: 1;
            color: #b8b8b8;
            text-shadow:
                0 0 8px rgba(107, 153, 153, 0.20),
                2px 2px 0 rgba(0, 0, 0, 0.55);
            filter: contrast(0.95) brightness(0.95);
        }

        .cd-text {
            margin-top: 6px;
            font-size: 0.75rem;
            letter-spacing: 2px;
            color: rgba(107, 153, 153, 0.85);
        }

        @media (max-width: 768px) {
            .cd-unit { min-width: 92px; }
            .cd-num { font-size: 1.8rem; }
        }

        /* Pulsante Evento 2026 */
        .evento2026-btn {
			display: block;
			max-width: 500px; /* 🔥 larghezza coerente */
			margin: 30px auto 10px; /* centra */
			padding: 20px 24px;

			font-family: 'Courier New', monospace;
			font-size: 1.15rem;
			font-weight: 700;
			letter-spacing: 2px;
			text-transform: uppercase;
			text-align: center;
			text-decoration: none;

			color: #a0d4d4;
			background: rgba(50, 50, 50, 0.3);
			border: 1px solid rgba(107, 153, 153, 0.3);
			border-radius: 10px;

			box-shadow: inset 0 0 10px rgba(0,0,0,0.5);
			transition: all 0.3s ease;
		}

        .evento2026-btn:hover {
            transform: translateY(-6px);
            box-shadow:
                0 10px 20px rgba(107, 153, 153, 0.3),
                0 0 30px rgba(0, 255, 255, 0.15),
                inset 0 0 10px rgba(0, 0, 0, 0.5);
            border-color: #6b9999;
            background: rgba(50, 50, 50, 0.5);
            color: #ffffff;
            text-shadow:
                0 0 8px rgba(255, 255, 255, 0.7),
                0 0 16px rgba(0, 255, 255, 0.4),
                0 0 30px rgba(0, 255, 255, 0.2);
        }

        .features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin: 40px 0;
        }

        .feature {
            background: rgba(50, 50, 50, 0.3);
            padding: 20px;
            border-radius: 10px;
            border: 1px solid rgba(107, 153, 153, 0.3);
            transition: all 0.3s ease;
            animation: fadeIn 2s ease-out backwards;
            box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
        }

        .feature:nth-child(1) { animation-delay: 0.2s; }
        .feature:nth-child(2) { animation-delay: 0.4s; }
        .feature:nth-child(3) { animation-delay: 0.6s; }
        .feature:nth-child(4) { animation-delay: 0.8s; }
        .feature:nth-child(5) { animation-delay: 1s; }
        .feature:nth-child(6) { animation-delay: 1.2s; }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: scale(0.8);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        .feature:hover {
            transform: translateY(-10px);
            box-shadow: 
                0 10px 20px rgba(107, 153, 153, 0.2),
                inset 0 0 10px rgba(0, 0, 0, 0.5);
            border-color: #6b9999;
            background: rgba(50, 50, 50, 0.5);
        }

        .feature-icon {
            font-size: 2rem;
            margin-bottom: 10px;
            filter: grayscale(0.3) brightness(0.9);
        }

        .feature-text {
            font-size: 1rem;
            color: #83b7b7;
        }

        .cta {
            margin-top: 50px;
            font-size: 1.2rem;
            color: #b8b27a;
            animation: blink 1.5s infinite;
        }

        @keyframes blink {
            0%, 50%, 100% {
                opacity: 0.9;
            }
            25%, 75% {
                opacity: 0.5;
            }
        }

        /* Scanline effect */
        .scanline {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                to bottom,
                rgba(255, 255, 255, 0) 50%,
                rgba(0, 0, 0, 0.1) 50%
            );
            background-size: 100% 4px;
            z-index: 8;
            pointer-events: none;
            opacity: 0.5;
        }

        /* CRT Flicker */
        @keyframes crtFlicker {
            0% { opacity: 1; }
            98% { opacity: 1; }
            99% { opacity: 0.8; }
            100% { opacity: 1; }
        }

        .crt-screen {
            animation: crtFlicker 0.15s infinite;
        }

        /* Screen glow */
        .screen-glow {
            position: absolute;
            top: -20px;
            left: -20px;
            right: -20px;
            bottom: -20px;
            background: radial-gradient(ellipse at center, rgba(107, 153, 153, 0.1) 0%, transparent 70%);
            pointer-events: none;
            z-index: -1;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .tv-frame {
                padding: 20px;
            }
            .logo {
                font-size: 2rem;
            }
            .tagline {
                font-size: 1.1rem;
            }
            .date {
                font-size: 1.8rem;
            }
            .location {
                font-size: 1rem;
            }
            .features {
                grid-template-columns: 1fr;
            }
            .container {
                padding: 20px 10px;
            }
        }

        /* VHS tracking lines */
        .vhs-lines {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: repeating-linear-gradient(
                0deg,
                rgba(0, 0, 0, 0.1),
                rgba(0, 0, 0, 0.1) 1px,
                transparent 1px,
                transparent 2px
            );
            z-index: 9;
            pointer-events: none;
            opacity: 0.3;
        }
    </style>