        :root {
            --primary-color: #8A2BE2;
            --secondary-color: #4B0082;
            --accent-color: #FF1493;
            --background-dark: #0F0F1A;
            --text-light: #FFFFFF;
            --text-dark: #1A1A2E;
            --transition-speed: 0.3s;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background-color: var(--background-dark);
            color: var(--text-light);
            line-height: 1.6;
            overflow-x: hidden;
        }

        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(15, 15, 26, 0.9);
            backdrop-filter: blur(10px);
            z-index: 1000;
            border-bottom: 1px solid rgba(138, 43, 226, 0.2);
            transition: all var(--transition-speed) ease;
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo-text {
            font-size: 1rem;
            font-weight: bold;
            background: linear-gradient(45deg, var(--accent-color), var(--primary-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 5px;
            transition: all var(--transition-speed) ease;
        }

        .logo-text:hover {
            text-shadow: 0 0 15px rgba(138, 43, 226, 0.5);
            transform: scale(1.05);
        }

        .nav-links {
            display: flex;
            gap: 2.5rem;
            align-items: center;
        }

        .nav-links a {
            color: var(--text-light);
            text-decoration: none;
            font-weight: 500;
            font-size: 1.1rem;
            padding: 0.5rem 1rem;
            border-radius: 25px;
            transition: all var(--transition-speed) ease;
            position: relative;
            overflow: hidden;
        }

        .nav-links a:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(138, 43, 226, 0.2), transparent);
            transition: var(--transition-speed);
        }

        .nav-links a:hover:before {
            left: 100%;
        }

        .nav-links a:hover {
            color: var(--accent-color);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(138, 43, 226, 0.3);
        }

        .hero {
            min-height: 100vh;
            position: relative;
            padding: 8rem 2rem 4rem;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .background-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 0;
            opacity: 0.3;
        }

        .hero-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 2rem;
            padding: 4rem 2rem;
            background-color: var(--background-dark);
        }

        .hero-text {
            flex: 1;
        }

        .hero-title {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            color: var(--text-light);
            font-weight: 800;
        }

        .gradient-text {
            background: linear-gradient(45deg, var(--accent-color), var(--primary-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            color: transparent;
        }

        .hero-description {
            margin-bottom: 1rem;
            font-size: 1.1rem;
            color: var(--text-light);
            line-height: 1.6;
        }

        .cta-button {
            display: inline-block;
            padding: 1rem 2.5rem;
            background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
            color: var(--text-light);
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all var(--transition-speed) ease;
            box-shadow: 0 4px 15px rgba(138, 43, 226, 0.3);
        }

        .cta-button:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 6px 25px rgba(138, 43, 226, 0.4);
        }

        .hero-image {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
        }

        .image-fan {
            position: relative;
            width: 300px;
            height: 400px;
            perspective: 1000px;
        }

        .interface-preview {
            position: absolute;
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(138, 43, 226, 0.2);
            transition: transform 0.3s ease;
        }

        .interface-preview:nth-child(1) {
            transform: rotate(-10deg) translateX(-20px);
            z-index: 1;
        }

        .interface-preview:nth-child(2) {
            transform: rotate(0deg);
            z-index: 2;
        }

        .interface-preview:nth-child(3) {
            transform: rotate(10deg) translateX(20px);
            z-index: 3;
        }

        .image-fan:hover .interface-preview:nth-child(1) {
            transform: rotate(-20deg) translateX(-40px);
        }

        .image-fan:hover .interface-preview:nth-child(3) {
            transform: rotate(20deg) translateX(40px);
        }

        .features {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            gap: 2rem;
            margin-top: 4rem;
        }

        .feature {
            flex-basis: calc(33.333% - 2rem);
            background: rgba(75, 0, 130, 0.2);
            padding: 2rem;
            border-radius: 15px;
            text-align: center;
            transition: all var(--transition-speed) ease;
        }

        .feature:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(138, 43, 226, 0.3);
        }

        .feature i {
            font-size: 3rem;
            color: var(--accent-color);
            margin-bottom: 1rem;
        }

        .feature h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--primary-color);
        }

        .app-download, .radio-section {
            padding: 5rem 2rem;
            background-color: var(--background-dark);
            text-align: center;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 2rem;
            background: linear-gradient(45deg, var(--accent-color), var(--primary-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
            letter-spacing: 2px;
        }

        .section-description {
            font-size: 1.25rem;
            max-width: 800px;
            margin: 0 auto 2rem;
            color: var(--text-light);
            line-height: 1.8;
        }

        .download-buttons {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .download-btn {
            padding: 0.8rem 1.5rem;
            background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
            color: var(--text-light);
            text-decoration: none;
            border-radius: 25px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all var(--transition-speed) ease;
            box-shadow: 0 4px 15px rgba(138, 43, 226, 0.3);
        }

        .download-btn:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 6px 25px rgba(138, 43, 226, 0.4);
        }

        .radio-icons {
            font-size: 3rem;
            color: var(--accent-color);
            margin-bottom: 2rem;
        }

        .radio-icons i {
            margin: 0 1rem;
        }

        .faq-section {
            padding: 5rem 2rem;
            background-color: var(--background-dark);
        }

        .faq-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .faq-content {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            gap: 2rem;
        }

        .faq-box {
            flex: 1;
            max-width: 600px;
        }

        .accordion {
            background-color: rgba(138, 43, 226, 0.1);
            border-radius: 10px;
            margin-bottom: 1rem;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .question {
            padding: 1rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
        }

        .question h3 {
            font-size: 1.1rem;
            color: var(--text-light);
            font-weight: 600;
        }

        .arrow {
            transition: transform 0.3s ease;
        }

        .accordion.active .arrow {
            transform: rotate(180deg);
        }

        .answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .accordion.active .answer {
            max-height: 300px;
        }

        .answer p {
            padding: 1rem;
            color: var(--text-light);
        }

        .faq-image {
            flex: 1;
            max-width: 400px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .faq-image img {
            max-width: 100%;
            height: auto;
            filter: drop-shadow(0 0 20px rgba(138, 43, 226, 0.3));
        }

        .footer {
            background-color: #0a0a0f;
            color: #a9a9a9;
            padding: 4rem 2rem 2rem;
            position: relative;
            overflow: hidden;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #4a0e4e, #8a2be2, #4a0e4e);
            animation: gradient-flow 5s linear infinite;
            background-size: 200% 100%;
        }

        @keyframes gradient-flow {
            0% { background-position: 100% 0; }
            100% { background-position: -100% 0; }
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-section {
            flex: 1;
            margin-bottom: 2rem;
            min-width: 250px;
        }

        .footer-title {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: #8a2be2;
            text-shadow: 0 0 10px rgba(138, 43, 226, 0.5);
        }

        .footer-section p {
            margin-bottom: 1rem;
        }

        .social-icons {
            display: flex;
            gap: 1rem;
        }

        .social-icon {
            color: #a9a9a9;
            font-size: 1.2rem;
            transition: all 0.3s ease;
        }

        .social-icon:hover {
            color: #8a2be2;
            transform: translateY(-3px);
        }

        .footer-links {
            list-style: none;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 0.5rem;
        }

        .footer-links a {
            color: #a9a9a9;
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
        }

        .footer-links a::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 1px;
            bottom: -2px;
            left: 0;
            background-color: #8a2be2;
            transform: scaleX(0);
            transform-origin: bottom right;
            transition: transform 0.3s ease;
        }

        .footer-links a:hover {
            color: #8a2be2;
        }

        .footer-links a:hover::after {
            transform: scaleX(1);
            transform-origin: bottom left;
        }

        .footer-section h4 {
            font-size: 1.2rem;
            margin-bottom: 1rem;
            color: #8a2be2;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid rgba(169, 169, 169, 0.1);
        }

        @media (max-width: 768px) {
            .nav-container {
                flex-direction: column;
                padding: 1rem;
            }

            .nav-links {
                flex-direction: column;
                gap: 1rem;
                width: 100%;
                padding: 1rem 0;
            }

            .nav-links a {
                width: 100%;
                text-align: center;
            }

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

            .hero-content {
                flex-direction: column;
                padding: 2rem 1rem;
            }

            .hero-image {
                margin-top: 2rem;
            }

            .feature {
                flex-basis: 100%;
            }

            .faq-content {
                flex-direction: column;
            }

            .faq-box, .faq-image {
                max-width: 100%;
            }

            .footer-content {
                flex-direction: column;
            }

            .footer-section {
                margin-bottom: 2rem;
            }

            .image-fan {
                width: 200px;
                height: 300px;
            }
        }

        .hero-cloud {
            width: 150px;
            height: 150px;
            object-fit: contain;
            filter: drop-shadow(0 5px 15px rgba(154, 50, 204, 0.5));
        }

        .cta-scarica {
    display: block;
    margin: 0 auto;
    padding: 1rem 2.5rem;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    color: var(--text-light);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all var(--transition-speed) ease;
    width: 200px;
        }

        .cta-scarica:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 6px 25px rgba(138, 43, 226, 0.4);
        }
        /* Hiding any audio elements if necessary */
        audio { display: none; }
