:root {
            --neon-pink: #ff2a6d;
            --electric-blue: #05d9e8;
            --dark-purple: #1a1a2e;
            --cyber-teal: #00f5d4;
            --matrix-green: #00ff9d;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Courier New', monospace;
        }
        
        body {
            background-color: var(--dark-purple);
            color: white;
            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);
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            border-bottom: 1px solid var(--neon-pink);
        }
        
        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--electric-blue);
            text-shadow: 0 0 10px var(--electric-blue);
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 2rem;
        }
        
        nav ul li a {
            color: white;
            text-decoration: none;
            font-weight: bold;
            transition: color 0.3s;
            position: relative;
        }
        
        nav ul li a:hover {
            color: var(--neon-pink);
        }
        
        nav ul li a::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: var(--neon-pink);
            transform: scaleX(0);
            transition: transform 0.3s;
        }
        
        nav ul li a:hover::after {
            transform: scaleX(1);
        }
        
        .burger {
            display: none;
            cursor: pointer;
        }
        
        .burger div {
            width: 25px;
            height: 3px;
            background-color: white;
            margin: 5px;
            transition: all 0.3s ease;
        }
        
        section {
            padding: 4rem 2rem;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .hero {
            background: linear-gradient(rgba(26, 26, 46, 0.8), rgba(26, 26, 46, 0.8)), 
                        url('https://images.unsplash.com/photo-1571902943202-507ec2618e8f?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
            background-size: cover;
            background-position: center;
            text-align: center;
            position: relative;
        }
        
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            color: var(--electric-blue);
            text-shadow: 0 0 10px var(--electric-blue);
            animation: glow 2s infinite alternate;
        }
        
        .hero p {
            font-size: 1.5rem;
            max-width: 800px;
            margin: 0 auto 2rem;
            color: var(--cyber-teal);
        }
        
        .btn {
            display: inline-block;
            background-color: var(--neon-pink);
            color: white;
            padding: 0.8rem 2rem;
            border-radius: 5px;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
            font-size: 1.1rem;
            margin: 0.5rem;
        }
        
        .btn:hover {
            background-color: var(--electric-blue);
            box-shadow: 0 0 15px var(--electric-blue);
            transform: translateY(-3px);
        }
        
        .about {
            background-color: rgba(0, 0, 0, 0.7);
            position: relative;
            overflow: hidden;
        }
        
        .about::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://images.unsplash.com/photo-1538805060514-97d9cc17730c?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
            background-size: cover;
            background-position: center;
            opacity: 0.3;
            z-index: -1;
        }
        
        .about h2 {
            font-size: 2.5rem;
            margin-bottom: 2rem;
            color: var(--matrix-green);
            text-align: center;
        }
        
        .about-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 2rem;
        }
        
        .about-text {
            flex: 1;
            min-width: 300px;
        }
        
        .about-text h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
            color: var(--neon-pink);
        }
        
        .about-text p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }
        
        .about-image {
            flex: 1;
            min-width: 300px;
            text-align: center;
        }
        
        .about-image img {
            max-width: 100%;
            border-radius: 10px;
            box-shadow: 0 0 20px var(--electric-blue);
            transition: transform 0.3s;
        }
        
        .about-image img:hover {
            transform: scale(1.05);
        }
        
        .products {
            background-color: var(--dark-purple);
            text-align: center;
        }
        
        .products h2 {
            font-size: 2.5rem;
            margin-bottom: 2rem;
            color: var(--electric-blue);
        }
        
        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }
        
        .product-card {
            background-color: rgba(0, 0, 0, 0.5);
            border-radius: 10px;
            padding: 2rem;
            transition: all 0.3s;
            border: 1px solid var(--neon-pink);
        }
        
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 20px rgba(255, 42, 109, 0.3);
            border-color: var(--electric-blue);
        }
        
        .product-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 5px;
            margin-bottom: 1rem;
        }
        
        .product-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--matrix-green);
        }
        
        .prices {
            background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), 
                        url('https://images.unsplash.com/photo-1571019613454-1cb2f99b2d8b?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
            background-size: cover;
            background-position: center;
            text-align: center;
        }
        
        .prices h2 {
            font-size: 2.5rem;
            margin-bottom: 2rem;
            color: var(--neon-pink);
        }
        
        .price-cards {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 2rem;
            margin-top: 2rem;
        }
        
        .price-card {
            background-color: rgba(26, 26, 46, 0.9);
            border-radius: 10px;
            padding: 2rem;
            width: 300px;
            transition: all 0.3s;
            border: 1px solid var(--electric-blue);
        }
        
        .price-card.popular {
            transform: scale(1.05);
            border-color: var(--neon-pink);
            position: relative;
        }
        
        .price-card.popular::before {
            content: 'POPULAR';
            position: absolute;
            top: -15px;
            right: 20px;
            background-color: var(--neon-pink);
            color: white;
            padding: 0.3rem 1rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: bold;
        }
        
        .price-card h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
            color: var(--cyber-teal);
        }
        
        .price-card .price {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--matrix-green);
            margin-bottom: 1.5rem;
        }
        
        .price-card .price span {
            font-size: 1rem;
            color: white;
        }
        
        .price-card ul {
            list-style: none;
            margin-bottom: 2rem;
            text-align: left;
        }
        
        .price-card ul li {
            margin-bottom: 0.8rem;
            position: relative;
            padding-left: 1.5rem;
        }
        
        .price-card ul li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--matrix-green);
        }
        
        .gallery {
            background-color: var(--dark-purple);
            text-align: center;
        }
        
        .gallery h2 {
            font-size: 2.5rem;
            margin-bottom: 2rem;
            color: var(--electric-blue);
        }
        
        .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;
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        
        .gallery-item .overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
            padding: 1rem;
            opacity: 0;
            transition: opacity 0.3s;
        }
        
        .gallery-item:hover .overlay {
            opacity: 1;
        }
        
        .feedback {
            background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), 
                        url('https://images.unsplash.com/photo-1518611012118-696072aa579a?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
            background-size: cover;
            background-position: center;
            text-align: center;
        }
        
        .feedback h2 {
            font-size: 2.5rem;
            margin-bottom: 2rem;
            color: var(--neon-pink);
        }
        
        .slider {
            position: relative;
            width: 100%;
            margin: 0 auto;
            overflow: hidden;
        }
        
        .slides {
            display: flex;
            transition: transform 0.5s ease;
        }
        
        .slide {
            min-width: 100%;
            padding: 2rem;
            background-color: rgba(26, 26, 46, 0.9);
            border-radius: 10px;
            border: 1px solid var(--electric-blue);
        }
        
        .slide .quote {
            font-size: 1.2rem;
            font-style: italic;
            margin-bottom: 1.5rem;
            color: white;
        }
        
        .slide .author {
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .slide .author img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            margin-right: 1rem;
            border: 2px solid var(--neon-pink);
        }
        
        .slide .author-info h4 {
            color: var(--matrix-green);
            margin-bottom: 0.3rem;
        }
        
        .slide .author-info p {
            color: #aaa;
            font-size: 0.9rem;
        }
        
        .slider-nav {
            margin-top: 2rem;
            display: flex;
            justify-content: center;
            gap: 1rem;
        }
        
        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: #555;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        
        .slider-dot.active {
            background-color: var(--neon-pink);
        }
        
        .faq {
            background-color: var(--dark-purple);
        }
        
        .faq h2 {
            font-size: 2.5rem;
            margin-bottom: 2rem;
            color: var(--electric-blue);
            text-align: center;
        }
        
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .faq-item {
            margin-bottom: 1rem;
            border: 1px solid var(--electric-blue);
            border-radius: 5px;
            overflow: hidden;
        }
        
        .faq-question {
            padding: 1.5rem;
            background-color: rgba(0, 0, 0, 0.5);
            color: white;
            font-weight: bold;
            font-size: 1.2rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background-color 0.3s;
        }
        
        .faq-question:hover {
            background-color: rgba(255, 42, 109, 0.2);
        }
        
        .faq-question::after {
            content: '+';
            font-size: 1.5rem;
            color: var(--neon-pink);
        }
        
        .faq-item.active .faq-question::after {
            content: '-';
        }
        
        .faq-answer {
            padding: 0 1.5rem;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
            background-color: rgba(0, 0, 0, 0.3);
        }
        
        .faq-item.active .faq-answer {
            max-height: 500px;
            padding: 1.5rem;
        }
        
        .contact-form {
            background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), 
                        url('https://images.unsplash.com/photo-1571902943202-507ec2618e8f?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
            background-size: cover;
            background-position: center;
            text-align: center;
            padding: 4rem 2rem;
        }
        
        .contact-form h2 {
            font-size: 2.5rem;
            margin-bottom: 2rem;
            color: var(--neon-pink);
        }
        
        .form-container {
            max-width: 600px;
            margin: 0 auto;
            background-color: rgba(26, 26, 46, 0.9);
            padding: 2rem;
            border-radius: 10px;
            border: 1px solid var(--electric-blue);
        }
        
        .form-group {
            margin-bottom: 1.5rem;
            text-align: left;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: var(--cyber-teal);
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 0.8rem;
            background-color: rgba(0, 0, 0, 0.5);
            border: 1px solid var(--electric-blue);
            border-radius: 5px;
            color: white;
            font-size: 1rem;
        }
        
        .form-group textarea {
            height: 150px;
            resize: vertical;
        }
        
        footer {
            background-color: #111;
            color: white;
            padding: 3rem 2rem;
            text-align: center;
        }
        
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            max-width: 1200px;
            margin: 0 auto;
            gap: 2rem;
        }
        
        .footer-section {
            flex: 1;
            min-width: 250px;
            text-align: left;
        }
        
        .footer-section h3 {
            color: var(--neon-pink);
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }
        
        .footer-section ul {
            list-style: none;
        }
        
        .footer-section ul li {
            margin-bottom: 0.8rem;
        }
        
        .footer-section ul li a {
            color: #aaa;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-section ul li a:hover {
            color: var(--electric-blue);
        }
        
        .contact-info p {
            margin-bottom: 0.8rem;
            color: #aaa;
            display: flex;
            align-items: center;
        }
        
        .contact-info p i {
            margin-right: 0.5rem;
            color: var(--matrix-green);
        }
        
        .footer-bottom {
            margin-top: 2rem;
            padding-top: 1rem;
            border-top: 1px solid #333;
            color: #777;
            font-size: 0.9rem;
        }
        
        .disclaimer {
            background-color: #111;
            padding: 1rem;
            text-align: center;
            color: #777;
            font-size: 0.8rem;
            border-top: 1px solid #333;
        }
        
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background-color: rgba(26, 26, 46, 0.95);
            padding: 1rem 2rem;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            border-top: 1px solid var(--neon-pink);
            transform: translateY(100%);
            transition: transform 0.3s;
        }
        
        .cookie-banner.show {
            transform: translateY(0);
        }
        
        .cookie-banner p {
            color: white;
            margin-right: 1rem;
            flex: 1;
            min-width: 250px;
        }
        
        .cookie-banner .btn {
            margin: 0.5rem;
        }
        
        .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-purple);
            padding: 2rem;
            border-radius: 10px;
            max-width: 500px;
            width: 90%;
            text-align: center;
            border: 1px solid var(--neon-pink);
            position: relative;
        }
        
        .close-modal {
            position: absolute;
            top: 10px;
            right: 10px;
            font-size: 1.5rem;
            color: white;
            cursor: pointer;
            transition: color 0.3s;
        }
        
        .close-modal:hover {
            color: var(--neon-pink);
        }
        
        .modal h3 {
            color: var(--matrix-green);
            margin-bottom: 1rem;
            font-size: 1.8rem;
        }
        
        .modal p {
            margin-bottom: 2rem;
        }
        
        @keyframes glow {
            from {
                text-shadow: 0 0 5px var(--electric-blue), 0 0 10px var(--electric-blue);
            }
            to {
                text-shadow: 0 0 10px var(--electric-blue), 0 0 20px var(--electric-blue), 0 0 30px var(--electric-blue);
            }
        }
        
        @media (max-width: 768px) {
            nav {
                position: absolute;
                top: 80px;
                left: 0;
                width: 100%;
                background-color: rgba(26, 26, 46, 0.95);
                padding: 1rem;
                clip-path: circle(0px at 90% -10%);
                transition: all 0.5s ease-out;
                pointer-events: none;
            }
            
            nav.active {
                clip-path: circle(1000px at 90% -10%);
                pointer-events: all;
            }
            
            nav ul {
                flex-direction: column;
                align-items: center;
            }
            
            nav ul li {
                margin: 1rem 0;
            }
            
            .burger {
                display: block;
            }
            
            .burger.active div:nth-child(1) {
                transform: rotate(-45deg) translate(-5px, 6px);
            }
            
            .burger.active div:nth-child(2) {
                opacity: 0;
            }
            
            .burger.active div:nth-child(3) {
                transform: rotate(45deg) translate(-5px, -6px);
            }
            
            .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;
            }
            
            .price-card.popular {
                transform: scale(1);
            }
        }

