:root {
            --primary: #FF5E7D;
            --secondary: #47B8E0;
            --accent: #FFD166;
            --dark: #2A2D34;
            --light: #F7F7F7;
            --retro-pink: #FF2D75;
            --retro-blue: #00C4FF;
            --retro-yellow: #FFDE59;
            --retro-purple: #9B5DE5;
        }
        
        * {
            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;
            background-image: 
                radial-gradient(circle at 10% 20%, rgba(255, 94, 125, 0.1) 0%, transparent 20%),
                radial-gradient(circle at 90% 80%, rgba(71, 184, 224, 0.1) 0%, transparent 20%);
            background-attachment: fixed;
        }
        
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(42, 45, 52, 0.95);
            backdrop-filter: blur(10px);
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
            border-bottom: 1px solid var(--retro-blue);
        }
        
        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--retro-pink);
            text-decoration: none;
            letter-spacing: 2px;
            text-transform: uppercase;
            display: flex;
            align-items: center;
        }
        
        .logo span {
            color: var(--retro-blue);
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 2rem;
        }
        
        nav ul li a {
            color: var(--light);
            text-decoration: none;
            font-weight: bold;
            transition: color 0.3s;
            position: relative;
        }
        
        nav ul li a:hover {
            color: var(--retro-yellow);
        }
        
        nav ul li a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--retro-yellow);
            transition: width 0.3s;
        }
        
        nav ul li a:hover::after {
            width: 100%;
        }
        
        .burger {
            display: none;
            cursor: pointer;
            flex-direction: column;
            justify-content: space-between;
            width: 30px;
            height: 21px;
        }
        
        .burger span {
            display: block;
            height: 3px;
            width: 100%;
            background-color: var(--light);
            transition: all 0.3s;
        }
        
        main {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem;
        }
        
        section {
            margin-bottom: 5rem;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s, transform 0.6s;
        }
        
        section.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .hero {
            height: 80vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, rgba(42, 45, 52, 0.9) 0%, rgba(42, 45, 52, 0.6) 100%);
            z-index: -1;
        }
        
        .hero h1 {
            font-size: 4rem;
            margin-bottom: 1rem;
            color: var(--retro-yellow);
            text-transform: uppercase;
            letter-spacing: 3px;
            line-height: 1.2;
        }
        
        .hero p {
            font-size: 1.2rem;
            max-width: 600px;
            margin-bottom: 2rem;
            color: var(--light);
        }
        
        .hero .btn {
            padding: 0.8rem 2rem;
            background-color: var(--retro-pink);
            color: var(--light);
            border: none;
            border-radius: 30px;
            font-size: 1rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
        }
        
        .hero .btn:hover {
            background-color: var(--retro-blue);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 196, 255, 0.3);
        }
        
        h2 {
            font-size: 2.5rem;
            margin-bottom: 2rem;
            color: var(--retro-blue);
            position: relative;
            display: inline-block;
        }
        
        h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 50%;
            height: 4px;
            background-color: var(--retro-pink);
        }
        
        h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
            color: var(--retro-yellow);
        }
        
        .about-content {
            display: flex;
            align-items: center;
            gap: 3rem;
        }
        
        .about-text {
            flex: 1;
        }
        
        .about-image {
            flex: 1;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            transition: transform 0.3s;
        }
        
        .about-image:hover {
            transform: scale(1.02);
        }
        
        .about-image img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        .products {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        
        .product-card {
            background-color: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            overflow: hidden;
            transition: transform 0.3s, box-shadow 0.3s;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 196, 255, 0.2);
            border-color: var(--retro-blue);
        }
        
        .product-image {
            height: 200px;
            overflow: hidden;
        }
        
        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .product-card:hover .product-image img {
            transform: scale(1.1);
        }
        
        .product-info {
            padding: 1.5rem;
        }
        
        .product-info h3 {
            margin-bottom: 0.5rem;
            color: var(--retro-yellow);
        }
        
        .product-info p {
            margin-bottom: 1rem;
            color: rgba(255, 255, 255, 0.7);
        }
        
        .product-price {
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--retro-pink);
            margin-bottom: 1rem;
        }
        
        .product-btn {
            display: inline-block;
            padding: 0.6rem 1.5rem;
            background-color: var(--retro-blue);
            color: var(--light);
            border: none;
            border-radius: 30px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
        }
        
        .product-btn:hover {
            background-color: var(--retro-pink);
            transform: translateY(-3px);
        }
        
        .pricing {
            background-color: rgba(255, 255, 255, 0.05);
            padding: 3rem;
            border-radius: 10px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .pricing-plans {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }
        
        .pricing-card {
            background-color: rgba(42, 45, 52, 0.8);
            border-radius: 10px;
            padding: 2rem;
            transition: transform 0.3s, box-shadow 0.3s;
            border: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
            overflow: hidden;
        }
        
        .pricing-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(255, 45, 117, 0.2);
            border-color: var(--retro-pink);
        }
        
        .pricing-card.popular::before {
            content: 'POPOLARE';
            position: absolute;
            top: 0;
            right: 0;
            background-color: var(--retro-yellow);
            color: var(--dark);
            padding: 0.3rem 1rem;
            font-size: 0.8rem;
            font-weight: bold;
            border-bottom-left-radius: 10px;
        }
        
        .pricing-card h3 {
            margin-bottom: 1rem;
            color: var(--retro-blue);
        }
        
        .pricing-card .price {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--retro-yellow);
            margin-bottom: 1.5rem;
        }
        
        .pricing-card .price span {
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.7);
        }
        
        .pricing-card ul {
            list-style: none;
            margin-bottom: 2rem;
        }
        
        .pricing-card ul li {
            margin-bottom: 0.8rem;
            position: relative;
            padding-left: 1.5rem;
            color: rgba(255, 255, 255, 0.7);
        }
        
        .pricing-card ul li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--retro-blue);
        }
        
        .pricing-card .btn {
            display: block;
            text-align: center;
            padding: 0.8rem;
            background-color: var(--retro-pink);
            color: var(--light);
            border: none;
            border-radius: 30px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
        }
        
        .pricing-card .btn:hover {
            background-color: var(--retro-blue);
            transform: translateY(-3px);
        }
        
        .gallery {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1rem;
        }
        
        .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-item .caption {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 1rem;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
            color: var(--light);
            opacity: 0;
            transition: opacity 0.3s;
        }
        
        .gallery-item:hover .caption {
            opacity: 1;
        }
        
        .reviews {
            position: relative;
        }
        
        .review-slider {
            display: flex;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            scroll-behavior: smooth;
            -webkit-overflow-scrolling: touch;
            gap: 2rem;
            padding: 1rem 0;
            margin-bottom: 2rem;
        }
        
        .review-slider::-webkit-scrollbar {
            height: 8px;
        }
        
        .review-slider::-webkit-scrollbar-track {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
        }
        
        .review-slider::-webkit-scrollbar-thumb {
            background: var(--retro-pink);
            border-radius: 10px;
        }
        
        .review-card {
            min-width: 300px;
            scroll-snap-align: start;
            background-color: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            padding: 2rem;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .review-header {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
        }
        
        .review-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 1rem;
        }
        
        .review-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .review-author {
            flex: 1;
        }
        
        .review-author h4 {
            color: var(--retro-yellow);
            margin-bottom: 0.2rem;
        }
        
        .review-rating {
            color: var(--retro-yellow);
        }
        
        .review-text {
            color: rgba(255, 255, 255, 0.7);
            font-style: italic;
        }
        
        .slider-controls {
            display: flex;
            justify-content: center;
            gap: 1rem;
        }
        
        .slider-btn {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.1);
            border: none;
            color: var(--light);
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .slider-btn:hover {
            background-color: var(--retro-pink);
        }
        
        .faq-item {
            margin-bottom: 1rem;
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            overflow: hidden;
        }
        
        .faq-question {
            padding: 1.5rem;
            background-color: rgba(255, 255, 255, 0.05);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: bold;
            transition: background-color 0.3s;
        }
        
        .faq-question:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }
        
        .faq-question::after {
            content: '+';
            font-size: 1.5rem;
            color: var(--retro-blue);
        }
        
        .faq-question.active::after {
            content: '-';
        }
        
        .faq-answer {
            padding: 0 1.5rem;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s, padding 0.3s;
            color: rgba(255, 255, 255, 0.7);
        }
        
        .faq-answer.show {
            padding: 1.5rem;
            max-height: 500px;
        }
        
        .contact-form {
            background-color: rgba(255, 255, 255, 0.05);
            padding: 3rem;
            border-radius: 10px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .form-group {
            margin-bottom: 1.5rem;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: var(--retro-yellow);
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 0.8rem;
            background-color: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 5px;
            color: var(--light);
            transition: border-color 0.3s;
        }
        
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--retro-blue);
        }
        
        .form-submit {
            padding: 0.8rem 2rem;
            background-color: var(--retro-pink);
            color: var(--light);
            border: none;
            border-radius: 30px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .form-submit:hover {
            background-color: var(--retro-blue);
            transform: translateY(-3px);
        }
        
        .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: 3rem;
            border-radius: 10px;
            max-width: 500px;
            text-align: center;
            position: relative;
            border: 2px solid var(--retro-blue);
        }
        
        .modal-close {
            position: absolute;
            top: 1rem;
            right: 1rem;
            font-size: 1.5rem;
            color: var(--light);
            cursor: pointer;
            transition: color 0.3s;
        }
        
        .modal-close:hover {
            color: var(--retro-pink);
        }
        
        .modal h3 {
            color: var(--retro-yellow);
            margin-bottom: 1rem;
        }
        
        .modal p {
            margin-bottom: 2rem;
            color: rgba(255, 255, 255, 0.7);
        }
        
        .modal-btn {
            padding: 0.8rem 2rem;
            background-color: var(--retro-blue);
            color: var(--light);
            border: none;
            border-radius: 30px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .modal-btn:hover {
            background-color: var(--retro-pink);
        }
        
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: rgba(42, 45, 52, 0.95);
            padding: 1.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            transform: translateY(100%);
            transition: transform 0.3s;
            border-top: 1px solid var(--retro-pink);
        }
        
        .cookie-banner.show {
            transform: translateY(0);
        }
        
        .cookie-text {
            flex: 1;
            margin-right: 2rem;
            color: rgba(255, 255, 255, 0.7);
        }
        
        .cookie-buttons {
            display: flex;
            gap: 1rem;
        }
        
        .cookie-btn {
            padding: 0.6rem 1.5rem;
            border-radius: 30px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .cookie-accept {
            background-color: var(--retro-pink);
            color: var(--light);
            border: none;
        }
        
        .cookie-accept:hover {
            background-color: var(--retro-blue);
        }
        
        .cookie-decline {
            background-color: transparent;
            color: var(--light);
            border: 1px solid rgba(255, 255, 255, 0.3);
        }
        
        .cookie-decline:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }
        
        footer {
            background-color: rgba(42, 45, 52, 0.95);
            padding: 3rem 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
        }
        
        .footer-column h3 {
            color: var(--retro-yellow);
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        
        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: var(--retro-blue);
        }
        
        .contact-info {
            list-style: none;
        }
        
        .contact-info li {
            margin-bottom: 0.8rem;
            color: rgba(255, 255, 255, 0.7);
            display: flex;
            align-items: flex-start;
        }
        
        .contact-info li i {
            margin-right: 0.5rem;
            color: var(--retro-blue);
        }
        
        .footer-bottom {
            max-width: 1200px;
            margin: 2rem auto 0;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.9rem;
        }
        
        .disclaimer {
            margin-top: 5rem;
            padding: 2rem;
            background-color: rgba(255, 45, 117, 0.1);
            border-radius: 10px;
            border-left: 4px solid var(--retro-pink);
        }
        
        .disclaimer p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
            line-height: 1.6;
        }
        
        @media (max-width: 768px) {
            nav ul {
                position: fixed;
                top: 80px;
                left: 0;
                width: 100%;
                background-color: rgba(42, 45, 52, 0.95);
                flex-direction: column;
                align-items: center;
                padding: 2rem 0;
                clip-path: circle(0px at 90% -10%);
                transition: clip-path 0.5s ease-out;
                pointer-events: none;
            }
            
            nav ul.open {
                clip-path: circle(1000px at 90% -10%);
                pointer-events: all;
            }
            
            nav ul li {
                margin: 1rem 0;
            }
            
            .burger {
                display: flex;
            }
            
            .burger.open span:nth-child(1) {
                transform: rotate(45deg) translate(5px, 5px);
            }
            
            .burger.open span:nth-child(2) {
                opacity: 0;
            }
            
            .burger.open span:nth-child(3) {
                transform: rotate(-45deg) translate(7px, -6px);
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .about-content {
                flex-direction: column;
            }
            
            .pricing {
                padding: 2rem 1rem;
            }
            
            .contact-form {
                padding: 2rem 1rem;
            }
            
            .cookie-banner {
                flex-direction: column;
                text-align: center;
            }
            
            .cookie-text {
                margin-right: 0;
                margin-bottom: 1rem;
            }
        }
        
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 2rem;
            }
            
            h2 {
                font-size: 2rem;
            }
            
            .pricing-plans {
                grid-template-columns: 1fr;
            }
            
            .modal-content {
                padding: 2rem 1rem;
                margin: 0 1rem;
            }
        }

