:root {
            --primary: #FF4D80;
            --secondary: #00E5FF;
            --accent: #FFEB3B;
            --dark: #1A1A2E;
            --light: #F8F9FA;
            --retro-pink: #FF6EC7;
            --retro-blue: #00C8FF;
            --retro-purple: #9C27B0;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Courier New', monospace;
        }

        body {
            background-color: var(--dark);
            color: var(--light);
            line-height: 1.6;
            padding-top: 80px;
            overflow-x: hidden;
        }

        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(26, 26, 46, 0.9);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 1rem 2rem;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
            border-bottom: 2px solid var(--retro-pink);
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--retro-pink);
            text-decoration: none;
        }

        .logo span {
            color: var(--retro-blue);
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        nav a {
            color: var(--light);
            text-decoration: none;
            font-size: 1.1rem;
            font-weight: bold;
            transition: color 0.3s;
            position: relative;
        }

        nav a:hover {
            color: var(--retro-pink);
        }

        nav a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: var(--retro-blue);
            transition: width 0.3s;
        }

        nav a:hover::after {
            width: 100%;
        }

        .burger {
            display: none;
            cursor: pointer;
            flex-direction: column;
            gap: 5px;
        }

        .burger div {
            width: 25px;
            height: 3px;
            background-color: var(--light);
            transition: all 0.3s;
        }

        .burger.active div:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .burger.active div:nth-child(2) {
            opacity: 0;
        }

        .burger.active div:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }

        section {
            padding: 5rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .hero {
            height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;
            background: linear-gradient(rgba(26, 26, 46, 0.7), rgba(26, 26, 46, 0.7)), url('https://images.unsplash.com/photo-1571019613454-1cb2f99b2d8b?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
            position: relative;
            color: white;
        }

        .hero h1 {
            font-size: 4rem;
            margin-bottom: 1rem;
            text-transform: uppercase;
            background: linear-gradient(to right, var(--retro-pink), var(--retro-blue));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            animation: gradientShift 5s infinite alternate;
        }

        @keyframes gradientShift {
            0% {
                background-position: 0% 50%;
            }
            100% {
                background-position: 100% 50%;
            }
        }

        .hero p {
            font-size: 1.5rem;
            max-width: 600px;
            margin-bottom: 2rem;
        }

        .btn {
            display: inline-block;
            padding: 0.8rem 2rem;
            background: linear-gradient(45deg, var(--retro-pink), var(--retro-purple));
            color: white;
            text-decoration: none;
            border-radius: 30px;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: transform 0.3s, box-shadow 0.3s;
            border: none;
            cursor: pointer;
            font-size: 1rem;
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }

        .btn-secondary {
            background: transparent;
            border: 2px solid var(--retro-blue);
            margin-left: 1rem;
        }

        .btn-secondary:hover {
            background: var(--retro-blue);
            color: var(--dark);
        }

        h2 {
            font-size: 2.5rem;
            margin-bottom: 2rem;
            color: var(--retro-pink);
            position: relative;
            display: inline-block;
        }

        h2::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 3px;
            bottom: -10px;
            left: 0;
            background: linear-gradient(to right, var(--retro-pink), var(--retro-blue));
        }

        h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
            color: var(--retro-blue);
        }

        .about {
            background-color: rgba(26, 26, 46, 0.8);
            border-radius: 20px;
            margin: 2rem auto;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .about-content {
            display: flex;
            align-items: center;
            gap: 3rem;
        }

        .about-text {
            flex: 1;
        }

        .about-img {
            flex: 1;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
            transition: transform 0.5s;
        }

        .about-img:hover {
            transform: scale(1.03);
        }

        .about-img img {
            width: 100%;
            height: auto;
            display: block;
        }

        .products {
            text-align: center;
        }

        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .product-card {
            background-color: rgba(26, 26, 46, 0.8);
            border-radius: 15px;
            padding: 2rem;
            transition: transform 0.3s, box-shadow 0.3s;
            border: 1px solid var(--retro-purple);
        }

        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(156, 39, 176, 0.3);
        }

        .product-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
            color: var(--retro-blue);
        }

        .prices {
            background-color: rgba(26, 26, 46, 0.8);
            border-radius: 20px;
            text-align: center;
        }

        .price-cards {
            display: flex;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
            margin-top: 3rem;
        }

        .price-card {
            background: linear-gradient(135deg, rgba(26, 26, 46, 0.9), rgba(62, 39, 83, 0.9));
            border-radius: 15px;
            padding: 2rem;
            width: 300px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
            border: 1px solid var(--retro-purple);
            transition: transform 0.3s;
        }

        .price-card:hover {
            transform: scale(1.05);
        }

        .price-card h3 {
            color: var(--retro-pink);
            margin-bottom: 1rem;
        }

        .price {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--retro-blue);
            margin: 1rem 0;
        }

        .price span {
            font-size: 1rem;
            color: var(--light);
        }

        .price-features {
            list-style: none;
            margin: 1.5rem 0;
            text-align: left;
        }

        .price-features li {
            margin-bottom: 0.8rem;
            position: relative;
            padding-left: 1.5rem;
        }

        .price-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--retro-pink);
        }

        .highlight {
            border: 2px solid var(--retro-blue);
            position: relative;
            overflow: hidden;
        }

        .highlight::after {
            content: 'POPOLARE';
            position: absolute;
            top: 10px;
            right: -30px;
            background-color: var(--retro-blue);
            color: var(--dark);
            padding: 0.2rem 2rem;
            transform: rotate(45deg);
            font-size: 0.8rem;
            font-weight: bold;
        }

        .gallery {
            text-align: center;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1rem;
            margin-top: 2rem;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            height: 250px;
            transition: transform 0.3s;
        }

        .gallery-item:hover {
            transform: scale(1.03);
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .gallery-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
            color: white;
            padding: 1rem;
            transform: translateY(100%);
            transition: transform 0.3s;
        }

        .gallery-item:hover .gallery-caption {
            transform: translateY(0);
        }

        .feedback {
            background-color: rgba(26, 26, 46, 0.8);
            border-radius: 20px;
            text-align: center;
        }

        .slider {
            position: relative;
            max-width: 800px;
            margin: 3rem auto 0;
            overflow: hidden;
        }

        .slides {
            display: flex;
            transition: transform 0.5s ease;
        }

        .slide {
            min-width: 100%;
            padding: 2rem;
            background-color: rgba(62, 39, 83, 0.5);
            border-radius: 15px;
            box-sizing: border-box;
        }

        .client-img {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            object-fit: cover;
            margin: 0 auto 1rem;
            border: 3px solid var(--retro-pink);
        }

        .client-name {
            font-weight: bold;
            color: var(--retro-blue);
            margin-bottom: 0.5rem;
        }

        .client-role {
            color: var(--retro-pink);
            font-style: italic;
            margin-bottom: 1rem;
        }

        .slider-nav {
            display: flex;
            justify-content: center;
            margin-top: 1rem;
            gap: 1rem;
        }

        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: var(--retro-purple);
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .slider-dot.active {
            background-color: var(--retro-blue);
        }

        .faq {
            max-width: 800px;
            margin: 0 auto;
        }

        .accordion {
            margin-top: 2rem;
        }

        .accordion-item {
            margin-bottom: 1rem;
            border: 1px solid var(--retro-purple);
            border-radius: 10px;
            overflow: hidden;
        }

        .accordion-header {
            padding: 1rem;
            background-color: rgba(62, 39, 83, 0.5);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: bold;
            color: var(--retro-blue);
        }

        .accordion-header:hover {
            background-color: rgba(62, 39, 83, 0.7);
        }

        .accordion-content {
            padding: 0 1rem;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
            background-color: rgba(26, 26, 46, 0.8);
        }

        .accordion-content.active {
            padding: 1rem;
            max-height: 500px;
        }

        .contact-form {
            max-width: 600px;
            margin: 3rem auto 0;
            background-color: rgba(26, 26, 46, 0.8);
            padding: 2rem;
            border-radius: 15px;
            border: 1px solid var(--retro-purple);
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: var(--retro-blue);
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 0.8rem;
            background-color: rgba(62, 39, 83, 0.5);
            border: 1px solid var(--retro-purple);
            border-radius: 5px;
            color: var(--light);
            font-size: 1rem;
        }

        .form-group textarea {
            resize: vertical;
            min-height: 100px;
        }

        footer {
            background-color: #0F0F1A;
            padding: 3rem 2rem;
            color: var(--light);
            border-top: 2px solid var(--retro-purple);
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
        }

        .footer-logo {
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--retro-pink);
            margin-bottom: 1rem;
            display: inline-block;
        }

        .footer-logo span {
            color: var(--retro-blue);
        }

        .footer-about p {
            margin-bottom: 1rem;
        }

        .footer-links h3,
        .footer-contact h3 {
            color: var(--retro-blue);
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.8rem;
        }

        .footer-links a {
            color: var(--light);
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: var(--retro-pink);
        }

        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
            gap: 0.8rem;
        }

        .contact-icon {
            color: var(--retro-pink);
            font-size: 1.2rem;
        }

        .copyright {
            text-align: center;
            margin-top: 3rem;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .disclaimer {
            background-color: rgba(255, 0, 0, 0.1);
            padding: 1rem;
            border-radius: 5px;
            margin-top: 3rem;
            border-left: 4px solid var(--retro-pink);
        }

        .disclaimer p {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.7);
        }

        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            z-index: 2000;
            justify-content: center;
            align-items: center;
        }

        .modal-content {
            background-color: var(--dark);
            padding: 2rem;
            border-radius: 10px;
            max-width: 500px;
            text-align: center;
            border: 2px solid var(--retro-blue);
            position: relative;
        }

        .close-modal {
            position: absolute;
            top: 10px;
            right: 10px;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--retro-pink);
        }

        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background-color: rgba(26, 26, 46, 0.95);
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            border-top: 2px solid var(--retro-purple);
            transform: translateY(100%);
            transition: transform 0.3s;
        }

        .cookie-banner.show {
            transform: translateY(0);
        }

        .cookie-text {
            max-width: 800px;
            margin-right: 1rem;
        }

        .cookie-banner .btn {
            white-space: nowrap;
        }

        @media (max-width: 768px) {
            .header-container {
                padding: 1rem;
            }

            nav {
                position: fixed;
                top: 80px;
                left: 0;
                width: 100%;
                background-color: rgba(26, 26, 46, 0.95);
                padding: 1rem;
                transform: translateY(-150%);
                transition: transform 0.3s;
                z-index: 999;
            }

            nav.active {
                transform: translateY(0);
            }

            nav ul {
                flex-direction: column;
                gap: 1rem;
            }

            .burger {
                display: flex;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .hero p {
                font-size: 1.2rem;
            }

            .about-content {
                flex-direction: column;
            }

            .price-cards {
                flex-direction: column;
                align-items: center;
            }

            .cookie-banner {
                flex-direction: column;
                text-align: center;
            }

            .cookie-banner .btn {
                margin-top: 1rem;
            }
        }

        /* Retro-futuristic animations */
        @keyframes neonGlow {
            0%, 100% {
                text-shadow: 0 0 5px var(--retro-pink), 0 0 10px var(--retro-pink), 0 0 20px var(--retro-pink);
            }
            50% {
                text-shadow: 0 0 10px var(--retro-blue), 0 0 20px var(--retro-blue), 0 0 30px var(--retro-blue);
            }
        }

        .neon-text {
            animation: neonGlow 2s infinite alternate;
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-10px);
            }
        }

        .floating {
            animation: float 3s ease-in-out infinite;
        }

