        :root {
            --primary-color: #0066ff;
            --secondary-color: #003399;
            --accent-color: #4d94ff;
            --dark-bg: #0a0a20;
            --text-color: #ffffff;
            --glow: 0 0 10px var(--primary-color);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Orbitron', sans-serif;
            background: var(--dark-bg);
            color: var(--text-color);
            line-height: 1.6;
            overflow-x: hidden;
            position: relative;
        }

        /* Video Background */
        .video-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            overflow: hidden;
        }

        .video-container::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(10, 10, 32, 0.8);
        }

        .video-container video {
            min-width: 100%;
            min-height: 100%;
            object-fit: cover;
        }

        /* Container */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            position: relative;
        }

        /* Header */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(11, 28, 61, 0.9);
            backdrop-filter: blur(10px);
            padding: 1rem 0;
            transform-style: preserve-3d;
            animation: floatY 6s ease-in-out infinite;
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        /* Logo */
        .logo {
            display: flex;
            align-items: center;
            gap: 1rem;
            position: relative;
            padding: 10px;
        }

        .logo img {
            height: 45px;
            transform-origin: center;
            animation: floatLogo 4s ease-in-out infinite;
        }

        .logo span {
            font-family: 'Orbitron', sans-serif;
            font-size: 2rem;
            font-weight: 700;
            color: #fff;
            position: relative;
            text-transform: uppercase;
            letter-spacing: 2px;
            animation: floatText 4s ease-in-out infinite;
            text-shadow: 2px 2px 4px rgba(0, 51, 255, 0.5);
        }

        .logo::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, transparent, #0066ff, transparent);
            animation: waveEffect 2s linear infinite;
        }

        @keyframes floatLogo {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-5px);
            }
        }

        @keyframes floatText {
            0%, 100% {
                transform: translateY(0) rotate(-1deg);
            }
            50% {
                transform: translateY(-5px) rotate(1deg);
            }
        }

        @keyframes waveEffect {
            0% {
                transform: translateX(-100%);
            }
            100% {
                transform: translateX(100%);
            }
        }

        .logo span::before {
            content: attr(data-text);
            position: absolute;
            left: -2px;
            top: -2px;
            width: calc(100% + 4px);
            height: calc(100% + 4px);
            background: linear-gradient(
                45deg,
                #0033ff,
                #0066ff,
                #0099ff,
                #00ccff
            );
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            filter: blur(8px);
            z-index: -1;
        }

        @keyframes hologramPulse {
            0%, 100% {
                filter: brightness(1.2) contrast(1.1) drop-shadow(0 0 5px #0066ff);
            }
            50% {
                filter: brightness(1.4) contrast(1.2) drop-shadow(0 0 15px #0066ff);
            }
        }

        @keyframes cyberpunkGlow {
            0%, 100% {
                text-shadow: 
                    0 0 10px #0066ff,
                    0 0 20px #0066ff,
                    0 0 30px #0066ff;
            }
            50% {
                text-shadow: 
                    0 0 15px #0066ff,
                    0 0 25px #0066ff,
                    0 0 35px #0066ff;
            }
        }



        @keyframes pulseLogo {
            0%, 100% {
                transform: scale(1);
                filter: drop-shadow(0 0 10px #0066ff);
            }
            50% {
                transform: scale(1.05);
                filter: drop-shadow(0 0 20px #0066ff);
            }
        }

        @keyframes glowText {
            0%, 100% {
                text-shadow: 
                    0 0 10px rgba(0, 102, 255, 0.8),
                    0 0 20px rgba(0, 102, 255, 0.5),
                    0 0 30px rgba(0, 102, 255, 0.3);
            }
            50% {
                text-shadow: 
                    0 0 20px rgba(0, 102, 255, 0.8),
                    0 0 30px rgba(0, 102, 255, 0.5),
                    0 0 40px rgba(0, 102, 255, 0.3);
            }
        }

        @keyframes rotateBorder {
            0% {
                transform: rotate(0deg);
            }
            100% {
                transform: rotate(360deg);
            }
        }

        /* Navigation */
        .nav-links {
            display: flex;
            gap: 2rem;
            align-items: center;
        }

        .nav-link {
            color: var(--text-color);
            text-decoration: none;
            padding: 0.5rem 1rem;
            border: 1px solid transparent;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .nav-link::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: 0.5s;
        }

        .nav-link:hover::before {
            left: 100%;
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 0 2rem;
            position: relative;
            perspective: 1000px;
            margin-top: 80px;
        }

        .hero-content {
            transform-style: preserve-3d;
            animation: floatZ 8s ease-in-out infinite;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            color: #0066ff;
            text-shadow: 
                0 0 15px #003cff,
                0 0 25px #0055ff,
                0 0 35px #1a75ff;
            font-weight: 700;
            letter-spacing: 2px;
            font-family: 'Orbitron', sans-serif;
            position: relative;
            animation: alienFloat 4s ease-in-out infinite;
            transform-style: preserve-3d;
        }

        @keyframes alienFloat {
            0%, 100% {
                transform: 
                    perspective(1000px) 
                    rotateX(2deg) 
                    rotateY(-2deg) 
                    translateY(0px) 
                    translateZ(0px);
            }
            50% {
                transform: 
                    perspective(1000px) 
                    rotateX(-2deg) 
                    rotateY(2deg) 
                    translateY(-10px) 
                    translateZ(20px);
            }
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            max-width: 600px;
            margin: 0 auto 2rem;
        }

        .hero-image {
            max-width: 300px;
            margin-bottom: 2rem;
            animation: floatY 6s ease-in-out infinite;
        }

        /* Buttons */
        .cta-button {
            display: inline-block;
            padding: 1rem 2rem;
            background: linear-gradient(45deg, var(--secondary-color), var(--primary-color));
            color: var(--text-color);
            text-decoration: none;
            border-radius: 50px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 0 15px rgba(0, 102, 255, 0.3);
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: 0.5s;
        }

        .cta-button:hover::before {
            left: 100%;
        }

        /* Features Section */
        .features {
            padding: 5rem 0;
            background: rgba(11, 28, 61, 0.3);
            position: relative;
            overflow: hidden;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            padding: 2rem;
        }

        .feature-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(49, 244, 255, 0.2);
            border-radius: 15px;
            padding: 2rem;
            text-align: center;
            transform-style: preserve-3d;
            transition: all 0.3s ease;
        }

        .feature-card:hover {
            transform: translateZ(20px);
            box-shadow: 0 0 20px rgba(49, 244, 255, 0.3);
        }

        .feature-card img {
            width: 80px;
            height: 80px;
            margin-bottom: 1.5rem;
            filter: drop-shadow(0 0 10px var(--primary-color));
        }

        /* App Showcase Section */
        .app-showcase {
            padding: 5rem 0;
            background: rgba(10, 10, 32, 0.5);
            position: relative;
        }

        .animated-title {
            font-size: 2.5rem;
            color: var(--primary-color);
            text-align: center;
            margin-bottom: 3rem;
            text-shadow: 0 0 15px var(--primary-color);
        }

        .app-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
            align-items: center;
        }

        .app-stats {
            padding: 2rem;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            backdrop-filter: blur(10px);
        }

        .highlight {
            color: var(--primary-color);
            font-weight: 700;
            text-shadow: 0 0 10px var(--primary-color);
        }

        /* Emoji Container */
        .emoji-container {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin: 2rem 0;
        }

        .emoji {
            font-size: 2rem;
            animation: bounce 2s infinite;
        }

        /* FAQ Section */
        .faq-section {
            padding: 5rem 0;
            background: rgba(11, 28, 61, 0.3);
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
            padding: 2rem;
        }

        .faq {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(49, 244, 255, 0.2);
            border-radius: 10px;
            margin-bottom: 1rem;
            overflow: hidden;
        }

        .faq h3 {
            padding: 1.5rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: var(--primary-color);
        }

        .faq h3::after {
            content: '\25BC';
            transition: transform 0.3s ease;
        }

        .faq.active h3::after {
            transform: rotate(-180deg);
        }

        .faq p {
            padding: 0 1.5rem 1.5rem;
            display: none;
        }

        .faq.active p {
            display: block;
        }

        /* Footer */
        .footer {
            position: relative;
            background: linear-gradient(180deg, var(--dark-bg), #000814);
            padding: 4rem 0 2rem;
            overflow: hidden;
        }

        .footer-waves {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            overflow: hidden;
            line-height: 0;
        }

        .wave {
            position: absolute;
            top: 0;
            width: 200%;
            height: 12px;
            background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
            animation: waveAnimation 8s linear infinite;
            opacity: 0.3;
        }

        .wave2 { animation-delay: -2s; opacity: 0.2; }
        .wave3 { animation-delay: -4s; opacity: 0.1; }

        .footer-content {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr;
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .main-info {
            text-align: left;
        }

        .footer-logo {
            width: 80px;
            margin-bottom: 1rem;
        }

        .main-info h2 {
            font-size: 1.8rem;
            margin-bottom: 0.5rem;
            background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
            -webkit-background-clip: text;
            color: transparent;
        }

        .main-info p {
            color: #9aa3bc;
            margin-bottom: 1.5rem;
        }

        .social-links {
            display: flex;
            gap: 1rem;
        }

        .social-link {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-color);
            transition: all 0.3s ease;
        }

        .social-link:hover {
            background: var(--primary-color);
            transform: translateY(-3px);
        }

        .footer-column h3 {
            color: var(--text-color);
            margin-bottom: 1.5rem;
            font-size: 1.2rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .footer-column ul li {
            margin-bottom: 0.8rem;
        }

        .footer-column ul li a {
            color: #9aa3bc;
            text-decoration: none;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .footer-column ul li a:hover {
            color: var(--primary-color);
            transform: translateX(5px);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: #9aa3bc;
        }

        .footer-links {
            display: flex;
            gap: 2rem;
        }

        .footer-links a {
            color: #9aa3bc;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--primary-color);
        }

        @keyframes waveAnimation {
            0% { transform: translateX(-50%); }
            100% { transform: translateX(0); }
        }

        /* Responsive design per il footer */
        @media (max-width: 768px) {
            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 2rem;
            }

            .main-info {
                text-align: center;
            }

            .social-links {
                justify-content: center;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 1rem;
                text-align: center;
            }

            .footer-links {
                justify-content: center;
            }
        }

        /* Animations */
        @keyframes floatY {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        @keyframes floatZ {
            0%, 100% { transform: translateZ(0); }
            50% { transform: translateZ(30px); }
        }

        @keyframes bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        @keyframes alienPulse {
            0%, 100% { text-shadow: 0 0 15px #0066ff, 0 0 25px #0033ff, 0 0 35px #0000ff; }
            50% { text-shadow: 0 0 20px #0066ff, 0 0 30px #0033ff, 0 0 40px #0000ff; }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-container {
                flex-direction: column;
                padding: 1rem;
            }

            .nav-links {
                flex-direction: column;
                width: 100%;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .app-content {
                grid-template-columns: 1fr;
            }

            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
            }
        }

        /* Scrollbar per desktop */
        @media (min-width: 769px) {
            ::-webkit-scrollbar {
                width: 12px;
                background: #000814;
            }

            ::-webkit-scrollbar-track {
                background: linear-gradient(to right, #000814, #001433);
                border-radius: 8px;
                box-shadow: inset 0 0 5px rgba(0, 51, 255, 0.2);
            }

            ::-webkit-scrollbar-thumb {
                background: linear-gradient(45deg, #0033ff, #0066ff);
                border-radius: 8px;
                border: 2px solid #000814;
                transition: all 0.3s ease;
                animation: pulseScroll 2s infinite;
            }

            ::-webkit-scrollbar-thumb:hover {
                background: linear-gradient(45deg, #1a75ff, #4d94ff);
                box-shadow: 
                    0 0 10px #0066ff,
                    inset 0 0 5px rgba(255, 255, 255, 0.3);
            }
        }

        /* Scrollbar per mobile */
        @media (max-width: 768px) {
            * {
                scrollbar-width: thin;
                scrollbar-color: #0066ff #000814;
            }
            
            ::-webkit-scrollbar {
                width: 6px;
            }

            ::-webkit-scrollbar-track {
                background: #000814;
            }

            ::-webkit-scrollbar-thumb {
                background: #0066ff;
                border-radius: 4px;
            }
        }

        @keyframes pulseScroll {
            0%, 100% {
                background: linear-gradient(45deg, #0033ff, #0066ff);
            }
            50% {
                background: linear-gradient(45deg, #001433, #0044cc);
            }
        }

        /* Scroll smooth per tutti i dispositivi */
        html {
            scroll-behavior: smooth;
        }

        /* Aggiorna il responsive design */
        @media (max-width: 768px) {
            /* Header e navigazione */
            .header {
                padding: 0.5rem 0;
            }

            .nav-container {
                flex-direction: column;
                gap: 1rem;
            }

            .nav-links {
                display: flex;
                flex-direction: column;
                gap: 0.8rem;
                width: 100%;
                text-align: center;
                padding: 1rem 0;
            }

            .logo span {
                font-size: 1.5rem;
            }

            .logo img {
                height: 35px;
            }

            /* Hero section */
            .hero {
                padding: 6rem 1rem 2rem;
            }

            .hero-content {
                padding: 1rem;
            }

            .hero h1 {
                font-size: 2rem;
            }

            .hero-image {
                width: 120px;
                height: auto;
            }

            /* Features section */
            .features-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
                padding: 1rem;
            }

            .feature-card {
                padding: 1.5rem;
            }

            /* App showcase */
            .app-showcase {
                padding: 3rem 1rem;
            }

            .app-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .app-stats {
                padding: 1.5rem;
            }

            .app-image img {
                max-width: 100%;
                height: auto;
            }

            .emoji {
                font-size: 1.5rem;
            }

            .platform-list {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 1rem;
            }

            /* FAQ section */
            .faq-container {
                padding: 1rem;
            }

            .faq h3 {
                font-size: 1rem;
                padding: 1rem;
            }

            .faq p {
                padding: 0 1rem 1rem;
                font-size: 0.9rem;
            }

            /* Footer */
            .footer {
                padding: 2rem 1rem;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 2rem;
                text-align: center;
            }

            .footer-column h3 {
                font-size: 1.2rem;
            }

            /* Buttons */
            .cta-button {
                width: 100%;
                text-align: center;
                padding: 0.8rem 1.5rem;
            }

            /* Typography */
            .animated-title {
                font-size: 1.8rem;
                margin-bottom: 2rem;
            }
        }

        /* Fix per dispositivi molto piccoli */
        @media (max-width: 320px) {
            .logo span {
                font-size: 1.2rem;
            }

            .hero h1 {
                font-size: 1.8rem;
            }

            .platform-list {
                grid-template-columns: 1fr;
            }
        }

        /* Fix per tablet */
        @media (min-width: 769px) and (max-width: 1024px) {
            .container {
                padding: 0 1.5rem;
            }

            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .app-content {
                gap: 2rem;
            }
        }

        /* Stili per il preloader */
        .preloader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--dark-bg);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
        }

        .logo-container {
            position: relative;
            width: 150px;
            height: 150px;
            margin-bottom: 2rem;
        }

        .split-logo {
            width: 100%;
            height: 100%;
            object-fit: contain;
            animation: splitLogo 1.5s ease-in-out forwards;
        }

        .loading-bar {
            width: 200px;
            height: 4px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 4px;
            overflow: hidden;
        }

        .progress {
            width: 0%;
            height: 100%;
            background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
            animation: loadProgress 4s ease-out forwards;
        }

        @keyframes splitLogo {
            0% {
                clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
                transform: translateX(-20%);
            }
            50% {
                clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
                transform: translateX(0);
            }
            51% {
                clip-path: polygon(50% 0, 100% 0, 100% 100%, 50% 100%);
                transform: translateX(0);
            }
            100% {
                clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
                transform: translateX(0);
            }
        }

        @keyframes loadProgress {
            0% { width: 0%; }
            100% { width: 100%; }
        }