@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@400;700&family=Oswald:wght@700&display=swap');

      

* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Courier New', monospace;
            background: linear-gradient(45deg, #FF006B, #00D4FF, #8B00FF, #FFFF00);
            background-size: 400% 400%;
            animation: gradientShift 8s ease infinite;
            color: #fff;
            overflow-x: hidden;
        }
        
        @keyframes gradientShift {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }
        
        header {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 1rem 2rem;
            border-bottom: 2px solid #FF006B;
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .logo {
            font-size: 2rem;
            font-weight: bold;
            background: linear-gradient(45deg, #FF006B, #00D4FF);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 0 20px #FF006B;
        }
        
        nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        
        nav a {
            color: #fff;
            text-decoration: none;
            font-weight: bold;
            text-transform: uppercase;
            transition: all 0.3s ease;
            position: relative;
        }
        
        nav a:hover {
            color: #FF006B;
            text-shadow: 0 0 10px #FF006B;
        }
        
        nav a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background: linear-gradient(90deg, #FF006B, #00D4FF);
            transition: width 0.3s ease;
        }
        
        nav a:hover::after {
            width: 100%;
        }
        
        .burger {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }
        
        .burger span {
            width: 25px;
            height: 3px;
            background: #FF006B;
            margin: 3px 0;
            transition: 0.3s;
            box-shadow: 0 0 10px #FF006B;
        }
        
        .burger.active span:nth-child(1) { transform: rotate(-45deg) translate(-5px, 6px); }
        .burger.active span:nth-child(2) { opacity: 0; }
        .burger.active span:nth-child(3) { transform: rotate(45deg) translate(-5px, -6px); }
        
        main {
            margin-top: 80px;
        }
        
        section {
            padding: 4rem 2rem;
            position: relative;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;
            background: url('../img/24.jpg') center/cover;
            background-attachment: fixed;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(255, 0, 107, 0.8), rgba(0, 212, 255, 0.8));
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
        }
        
        .hero h1 {
            font-size: 4rem;
            margin-bottom: 1rem;
            text-shadow: 0 0 30px #FF006B;
            animation: neonPulse 2s ease-in-out infinite alternate;
        }
        
        @keyframes neonPulse {
            from { text-shadow: 0 0 30px #FF006B, 0 0 40px #FF006B; }
            to { text-shadow: 0 0 50px #FF006B, 0 0 60px #00D4FF; }
        }
        
        .hero p {
            font-size: 1.5rem;
            margin-bottom: 2rem;
        }
        
        .cta-button {
            display: inline-block;
            padding: 1rem 2rem;
            background: linear-gradient(45deg, #FF006B, #8B00FF);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: bold;
            text-transform: uppercase;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(255, 0, 107, 0.3);
        }
        
        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(255, 0, 107, 0.5);
            text-shadow: 0 0 20px #fff;
        }
        
        .gallery {
            background: rgba(0, 0, 0, 0.9);
        }
        
        .gallery h2 {
            font-size: 3rem;
            text-align: center;
            margin-bottom: 3rem;
            background: linear-gradient(45deg, #00D4FF, #FFFF00);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }
        
        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255, 0, 107, 0.3);
            transition: transform 0.3s ease;
        }
        
        .gallery-item:hover {
            transform: scale(1.05) rotate(2deg);
            border-color: #FF006B;
            box-shadow: 0 20px 40px rgba(255, 0, 107, 0.4);
        }
        
        .gallery-item img {
            width: 100%;
            height: 250px;
            object-fit: cover;
        }
        
        .about {
            background: linear-gradient(135deg, rgba(139, 0, 255, 0.9), rgba(0, 212, 255, 0.9));
        }
        
        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }
        
        .about h2 {
            font-size: 2.5rem;
            margin-bottom: 2rem;
            text-shadow: 0 0 20px #FFFF00;
        }
        
        .about p {
            font-size: 1.2rem;
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }
        
        .products {
            background: rgba(0, 0, 0, 0.8);
        }
        
        .products h2 {
            font-size: 3rem;
            text-align: center;
            margin-bottom: 3rem;
            background: linear-gradient(45deg, #FFFF00, #FF006B);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .product-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(15px);
            border-radius: 25px;
            padding: 3rem;
            text-align: center;
            border: 2px solid rgba(0, 212, 255, 0.3);
            transition: all 0.3s ease;
        }
        .product-card img{
            width: 100% !important;
        }
        
        .product-card:hover {
            transform: translateY(-10px);
            border-color: #00D4FF;
            box-shadow: 0 25px 50px rgba(0, 212, 255, 0.3);
        }
        
        .product-card h3 {
            font-size: 2rem;
            margin-bottom: 1.5rem;
            color: #FFFF00;
        }
        
        .feedback {
            background: linear-gradient(225deg, rgba(255, 0, 107, 0.9), rgba(255, 255, 0, 0.9));
        }
        
        .feedback h2 {
            font-size: 3rem;
            text-align: center;
            margin-bottom: 3rem;
            text-shadow: 0 0 30px #000;
        }
        
        .reviews-slider {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
        }
        
        .reviews-container {
            display: flex;
            transition: transform 0.5s ease;
        }
        
        .review {
            min-width: 100%;
            padding: 3rem;
            background: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(10px);
            text-align: center;
        }
        
        .review p {
            font-size: 1.3rem;
            font-style: italic;
            margin-bottom: 2rem;
            line-height: 1.6;
        }
        
        .review-author {
            font-weight: bold;
            color: #00D4FF;
            font-size: 1.1rem;
        }
        
        .slider-nav {
            text-align: center;
            margin-top: 2rem;
        }
        
        .slider-btn {
            background: linear-gradient(45deg, #FF006B, #00D4FF);
            border: none;
            color: white;
            padding: 10px 15px;
            margin: 0 5px;
            border-radius: 50%;
            cursor: pointer;
            transition: transform 0.3s ease;
        }
        
        .slider-btn:hover {
            transform: scale(1.2);
        }
        
        .prices {
            background: rgba(139, 0, 255, 0.9);
        }
        
        .prices h2 {
            font-size: 3rem;
            text-align: center;
            margin-bottom: 3rem;
            text-shadow: 0 0 20px #FFFF00;
        }
        
        .price-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        
        .price-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(15px);
            border-radius: 25px;
            padding: 2.5rem;
            text-align: center;
            border: 2px solid rgba(255, 255, 0, 0.3);
            position: relative;
            transition: all 0.3s ease;
        }
        
        .price-card:hover {
            transform: scale(1.05);
            border-color: #FFFF00;
            box-shadow: 0 20px 40px rgba(255, 255, 0, 0.3);
        }
        
        .price-card.featured {
            border-color: #FF006B;
            transform: scale(1.1);
        }
        
        .price-card.featured::before {
            content: 'MIGLIORE OFFERTA';
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(45deg, #FF006B, #00D4FF);
            padding: 5px 20px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: bold;
        }
        
        .price {
            font-size: 3rem;
            color: #FFFF00;
            margin: 1rem 0;
            text-shadow: 0 0 20px #FFFF00;
        }
        
        .faq {
            background: rgba(0, 0, 0, 0.9);
        }
        
        .faq h2 {
            font-size: 3rem;
            text-align: center;
            margin-bottom: 3rem;
            background: linear-gradient(45deg, #00D4FF, #FF006B);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .faq-item {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            margin-bottom: 1rem;
            border: 2px solid rgba(0, 212, 255, 0.3);
            overflow: hidden;
            transition: all 0.3s ease;
        }
        
        .faq-item:hover {
            border-color: #00D4FF;
        }
        
        .faq-question {
            padding: 1.5rem;
            font-size: 1.2rem;
            font-weight: bold;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: linear-gradient(45deg, rgba(255, 0, 107, 0.1), rgba(0, 212, 255, 0.1));
        }
        
        .faq-answer {
            padding: 0 1.5rem;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
            background: rgba(0, 0, 0, 0.5);
        }
        
        .faq-answer.active {
            padding: 1.5rem;
            max-height: 200px;
        }
        
        .contact-form {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(15px);
            border-radius: 25px;
            padding: 3rem;
            margin: 3rem 0;
            border: 2px solid rgba(255, 0, 107, 0.3);
        }
        
        .form-group {
            margin-bottom: 1.5rem;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: bold;
            color: #00D4FF;
        }
        
        .form-group input {
            width: 100%;
            padding: 1rem;
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 10px;
            background: rgba(0, 0, 0, 0.5);
            color: white;
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }
        
        .form-group input:focus {
            outline: none;
            border-color: #FF006B;
            box-shadow: 0 0 20px rgba(255, 0, 107, 0.3);
        }
        
        .disclaimer {
            background: rgba(0, 0, 0, 0.9);
            border-top: 2px solid #FF006B;
            padding: 2rem;
            text-align: center;
            font-size: 0.9rem;
            color: #ccc;
        }
        
        footer {
            background: linear-gradient(135deg, rgba(0, 0, 0, 0.95), rgba(139, 0, 255, 0.3));
            padding: 3rem 2rem 1rem;
            border-top: 3px solid #FF006B;
        }
        
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }
        
        .footer-section h3 {
            color: #00D4FF;
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }
        
        .footer-section p,
        .footer-section a {
            color: #ccc;
            text-decoration: none;
            line-height: 1.6;
            transition: color 0.3s ease;
        }
        
        .footer-section a:hover {
            color: #FF006B;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 0.5rem;
        }
        
        .footer-bottom {
            text-align: center;
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            color: #888;
        }
        
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(45deg, rgba(0, 0, 0, 0.95), rgba(139, 0, 255, 0.8));
            backdrop-filter: blur(10px);
            padding: 1.5rem;
            z-index: 1001;
            border-top: 3px solid #FF006B;
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }
        
        .cookie-banner.show {
            transform: translateY(0);
        }
        
        .cookie-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 2rem;
        }
        
        .cookie-text {
            flex: 1;
        }
        
        .cookie-buttons {
            display: flex;
            gap: 1rem;
        }
        
        .cookie-btn {
            padding: 0.8rem 1.5rem;
            border: none;
            border-radius: 25px;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s ease;
        }
        
        .cookie-btn.accept {
            background: linear-gradient(45deg, #FF006B, #00D4FF);
            color: white;
        }
        
        .cookie-btn.decline {
            background: rgba(255, 255, 255, 0.2);
            color: white;
            border: 2px solid rgba(255, 255, 255, 0.3);
        }
        
        .cookie-btn:hover {
            transform: scale(1.05);
        }
        
        .popup {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.8);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 2000;
        }
        
        .popup-content {
            background: linear-gradient(45deg, #8B00FF, #FF006B);
            border-radius: 20px;
            padding: 3rem;
            text-align: center;
            max-width: 500px;
            border: 3px solid #00D4FF;
            box-shadow: 0 0 50px rgba(0, 212, 255, 0.5);
        }
        
        .popup h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: #FFFF00;
        }
        
        .popup-close {
            background: #00D4FF;
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 25px;
            cursor: pointer;
            font-weight: bold;
            margin-top: 1rem;
            transition: background 0.3s ease;
        }
        
        .popup-close:hover {
            background: #FF006B;
        }
        
        @media (max-width: 768px) {
            .burger {
                display: flex;
            }
            
            nav ul {
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: rgba(0, 0, 0, 0.9);
                flex-direction: column;
                padding: 2rem;
                transform: translateY(-100%);
                opacity: 0;
                visibility: hidden;
                transition: all 0.3s ease;
            }
            
            nav ul.active {
                transform: translateY(0);
                opacity: 1;
                visibility: visible;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero p {
                font-size: 1.2rem;
            }
            
            .about-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .cookie-content {
                flex-direction: column;
                text-align: center;
            }
            
            .cookie-buttons {
                justify-content: center;
            }
        }

