:root {
            --neon-pink: #ff2a6d;
            --cyber-teal: #05d9e8;
            --dark-purple: #1a1a2e;
            --matrix-green: #00ff41;
            --electric-blue: #4dccff;
            --neon-yellow: #fff01f;
        }
        
        * {
            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: 2px solid var(--neon-pink);
        }
        
        .logo {
            color: var(--neon-pink);
            font-size: 1.8rem;
            font-weight: bold;
            text-decoration: none;
            text-shadow: 0 0 10px var(--neon-pink);
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 1.5rem;
        }
        
        nav ul li a {
            color: white;
            text-decoration: none;
            font-size: 1.1rem;
            transition: color 0.3s;
            position: relative;
        }
        
        nav ul li a:hover {
            color: var(--cyber-teal);
        }
        
        nav ul li a::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: var(--cyber-teal);
            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;
        }
        
        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-1571019613454-1cb2f99b2d8b?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(--neon-pink);
            text-shadow: 0 0 15px var(--neon-pink);
            animation: glow 2s infinite alternate;
        }
        
        .hero p {
            font-size: 1.5rem;
            max-width: 800px;
            margin: 0 auto 2rem;
            color: var(--electric-blue);
        }
        
        .btn {
            display: inline-block;
            background-color: var(--neon-pink);
            color: white;
            padding: 0.8rem 2rem;
            border-radius: 30px;
            text-decoration: none;
            font-weight: bold;
            margin-top: 1rem;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
            font-size: 1.1rem;
            box-shadow: 0 0 15px var(--neon-pink);
        }
        
        .btn:hover {
            background-color: var(--cyber-teal);
            box-shadow: 0 0 20px var(--cyber-teal);
            transform: translateY(-3px);
        }
        
        .about {
            background-color: rgba(5, 217, 232, 0.1);
        }
        
        .section-title {
            font-size: 2.5rem;
            margin-bottom: 2rem;
            color: var(--cyber-teal);
            text-align: center;
            position: relative;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            width: 100px;
            height: 3px;
            background-color: var(--neon-pink);
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .about-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            gap: 2rem;
        }
        
        .about-text {
            flex: 1;
            min-width: 300px;
        }
        
        .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.5s;
        }
        
        .about-image img:hover {
            transform: scale(1.05);
        }
        
        .products {
            background: linear-gradient(rgba(26, 26, 46, 0.9), rgba(26, 26, 46, 0.9)), 
                        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-attachment: fixed;
        }
        
        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }
        
        .product-card {
            background-color: rgba(26, 26, 46, 0.8);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 0 15px var(--neon-yellow);
            transition: transform 0.3s;
        }
        
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 0 25px var(--neon-yellow);
        }
        
        .product-img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        
        .product-info {
            padding: 1.5rem;
        }
        
        .product-info h3 {
            color: var(--matrix-green);
            margin-bottom: 0.5rem;
        }
        
        .prices {
            background-color: rgba(77, 204, 255, 0.1);
        }
        
        .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;
            text-align: center;
            box-shadow: 0 0 15px var(--electric-blue);
            transition: transform 0.3s;
            border: 1px solid var(--electric-blue);
        }
        
        .price-card:hover {
            transform: scale(1.05);
            box-shadow: 0 0 25px var(--electric-blue);
        }
        
        .price-card h3 {
            color: var(--neon-pink);
            font-size: 1.8rem;
            margin-bottom: 1rem;
        }
        
        .price {
            font-size: 2.5rem;
            color: var(--matrix-green);
            margin: 1rem 0;
        }
        
        .price span {
            font-size: 1rem;
            color: white;
        }
        
        .price-features {
            list-style: none;
            margin: 1.5rem 0;
        }
        
        .price-features li {
            margin-bottom: 0.5rem;
            position: relative;
            padding-left: 1.5rem;
        }
        
        .price-features li::before {
            content: '✓';
            color: var(--matrix-green);
            position: absolute;
            left: 0;
        }
        
        .gallery {
            background: linear-gradient(rgba(26, 26, 46, 0.9), rgba(26, 26, 46, 0.9)), 
                        url('https://images.unsplash.com/photo-1545205597-3d9d02c29597?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
            background-size: cover;
            background-attachment: fixed;
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1rem;
            margin-top: 2rem;
        }
        
        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            height: 250px;
            box-shadow: 0 0 10px var(--neon-pink);
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        
        .feedback {
            background-color: rgba(255, 240, 31, 0.1);
        }
        
        .feedback-slider {
            width: 100%;
            max-width: 800px;
            margin: 2rem auto;
            position: relative;
            overflow: hidden;
        }
        
        .slides {
            display: flex;
            transition: transform 0.5s ease;
        }
        
        .slide {
            min-width: 100%;
            padding: 2rem;
            background-color: rgba(26, 26, 46, 0.8);
            border-radius: 10px;
            box-shadow: 0 0 15px var(--neon-yellow);
        }
        
        .slide-content {
            text-align: center;
        }
        
        .user-img {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            object-fit: cover;
            margin: 0 auto 1rem;
            border: 3px solid var(--neon-yellow);
        }
        
        .user-name {
            color: var(--neon-yellow);
            margin-bottom: 0.5rem;
        }
        
        .controls {
            display: flex;
            justify-content: center;
            margin-top: 1rem;
        }
        
        .control-btn {
            background: none;
            border: none;
            color: var(--neon-yellow);
            font-size: 1.5rem;
            cursor: pointer;
            margin: 0 1rem;
            transition: color 0.3s;
        }
        
        .control-btn:hover {
            color: var(--matrix-green);
        }
        
        .faq {
            background-color: rgba(255, 42, 109, 0.1);
        }
        
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .faq-item {
            margin-bottom: 1rem;
            border: 1px solid var(--neon-pink);
            border-radius: 10px;
            overflow: hidden;
        }
        
        .faq-question {
            background-color: rgba(255, 42, 109, 0.2);
            padding: 1rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: bold;
            color: var(--neon-pink);
        }
        
        .faq-answer {
            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);
        }
        
        .faq-item.active .faq-answer {
            max-height: 300px;
            padding: 1rem;
        }
        
        .contact-form {
            max-width: 600px;
            margin: 2rem auto;
            background-color: rgba(26, 26, 46, 0.8);
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 0 15px var(--cyber-teal);
        }
        
        .form-group {
            margin-bottom: 1.5rem;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: var(--cyber-teal);
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 0.8rem;
            border: 1px solid var(--cyber-teal);
            background-color: rgba(5, 217, 232, 0.1);
            color: white;
            border-radius: 5px;
        }
        
        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }
        
        .disclaimer {
            background-color: rgba(0, 255, 65, 0.1);
            padding: 1rem;
            margin-top: 2rem;
            border-radius: 5px;
            font-size: 0.9rem;
            text-align: center;
        }
        
        footer {
            background-color: #0d0d1a;
            padding: 3rem 2rem;
            color: white;
        }
        
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .footer-section {
            flex: 1;
            min-width: 250px;
        }
        
        .footer-section h3 {
            color: var(--neon-pink);
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 0.5rem;
        }
        
        .footer-links a {
            color: var(--electric-blue);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: var(--neon-pink);
        }
        
        .contact-info {
            list-style: none;
        }
        
        .contact-info li {
            margin-bottom: 0.8rem;
            display: flex;
            align-items: center;
        }
        
        .contact-info i {
            margin-right: 0.5rem;
            color: var(--cyber-teal);
        }
        
        .footer-bottom {
            text-align: center;
            margin-top: 2rem;
            padding-top: 1rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
        }
        
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: rgba(26, 26, 46, 0.9);
            padding: 1rem;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            border-top: 2px solid var(--matrix-green);
            transform: translateY(100%);
            transition: transform 0.5s;
        }
        
        .cookie-banner.show {
            transform: translateY(0);
        }
        
        .cookie-text {
            flex: 1;
            min-width: 250px;
            margin-bottom: 1rem;
        }
        
        .cookie-buttons {
            display: flex;
            gap: 1rem;
        }
        
        .cookie-btn {
            padding: 0.5rem 1rem;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
        }
        
        .cookie-accept {
            background-color: var(--matrix-green);
            color: var(--dark-purple);
        }
        
        .cookie-decline {
            background-color: transparent;
            color: var(--neon-pink);
            border: 1px solid var(--neon-pink);
        }
        
        .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;
            position: relative;
            border: 2px solid var(--neon-pink);
            box-shadow: 0 0 20px var(--neon-pink);
        }
        
        .close-modal {
            position: absolute;
            top: 10px;
            right: 10px;
            font-size: 1.5rem;
            color: var(--neon-pink);
            cursor: pointer;
            background: none;
            border: none;
        }
        
        @keyframes glow {
            from {
                text-shadow: 0 0 10px var(--neon-pink), 0 0 20px var(--neon-pink);
            }
            to {
                text-shadow: 0 0 20px var(--neon-pink), 0 0 30px var(--neon-pink), 0 0 40px var(--neon-pink);
            }
        }
        
        @media (max-width: 768px) {
            nav ul {
                position: fixed;
                top: 80px;
                left: 0;
                width: 100%;
                background-color: rgba(26, 26, 46, 0.95);
                flex-direction: column;
                align-items: center;
                padding: 1rem 0;
                transform: translateY(-150%);
                transition: transform 0.5s;
                z-index: 999;
            }
            
            nav ul.show {
                transform: translateY(0);
            }
            
            nav ul li {
                margin: 1rem 0;
            }
            
            .burger {
                display: block;
            }
            
            .burger.active .line1 {
                transform: rotate(-45deg) translate(-5px, 6px);
            }
            
            .burger.active .line2 {
                opacity: 0;
            }
            
            .burger.active .line3 {
                transform: rotate(45deg) translate(-5px, -6px);
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero p {
                font-size: 1.2rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
        }

