:root {
            --neon-pink: #ff2a6d;
            --cyber-blue: #05d9e8;
            --dark-purple: #1a1a2e;
            --matrix-green: #00ff9d;
            --deep-black: #0d0d1a;
            --electric-purple: #bd00ff;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        body {
            background-color: var(--deep-black);
            color: white;
            line-height: 1.6;
            overflow-x: hidden;
        }
        header {
            position: fixed;
            top: 0;
            width: 100%;
            background-color: rgba(13, 13, 26, 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(--neon-pink);
            text-shadow: 0 0 10px var(--neon-pink);
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        nav ul li a {
            color: white;
            text-decoration: none;
            font-weight: bold;
            transition: color 0.3s;
        }
        nav ul li a:hover {
            color: var(--cyber-blue);
        }
        .burger {
            display: none;
            cursor: pointer;
        }
        .burger div {
            width: 25px;
            height: 3px;
            background-color: white;
            margin: 5px;
            transition: all 0.3s;
        }
        main {
            margin-top: 80px;
        }
        section {
            padding: 4rem 2rem;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        .hero {
            background: linear-gradient(rgba(13, 13, 26, 0.8), rgba(13, 13, 26, 0.8)), url('https://images.unsplash.com/photo-1571019613454-1cb2f99b2d8b?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80');
            background-size: cover;
            background-position: center;
            text-align: center;
            color: white;
        }
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            color: var(--matrix-green);
            text-shadow: 0 0 15px var(--matrix-green);
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 2rem;
        }
        .btn {
            display: inline-block;
            padding: 0.8rem 2rem;
            background-color: var(--neon-pink);
            color: white;
            border: none;
            border-radius: 5px;
            font-weight: bold;
            text-decoration: none;
            transition: all 0.3s;
            margin: 0.5rem;
        }
        .btn:hover {
            background-color: var(--electric-purple);
            box-shadow: 0 0 15px var(--electric-purple);
        }
        .about, .products, .prices, .gallery, .feedback, .faq {
            background-color: var(--dark-purple);
            border-bottom: 1px solid var(--cyber-blue);
        }
        h2 {
            font-size: 2.5rem;
            margin-bottom: 2rem;
            color: var(--cyber-blue);
            text-align: center;
        }
        .gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1rem;
        }
        .gallery img {
            width: 100%;
            height: 300px;
            object-fit: cover;
            border: 2px solid var(--neon-pink);
            transition: transform 0.3s;
        }
        .gallery img:hover {
            transform: scale(1.05);
        }
        .feedback-slider {
            overflow: hidden;
            position: relative;
            max-width: 800px;
            margin: 0 auto;
        }
        .feedback-slide {
            display: none;
            padding: 2rem;
            background-color: rgba(26, 26, 46, 0.8);
            border-radius: 10px;
            text-align: center;
        }
        .feedback-slide.active {
            display: block;
            animation: fadeIn 1s;
        }
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        .faq-item {
            margin-bottom: 1rem;
            border: 1px solid var(--cyber-blue);
            border-radius: 5px;
            overflow: hidden;
        }
        .faq-question {
            padding: 1rem;
            background-color: rgba(5, 217, 232, 0.1);
            cursor: pointer;
            font-weight: bold;
        }
        .faq-answer {
            padding: 1rem;
            display: none;
        }
        .faq-answer.show {
            display: block;
        }
        footer {
            background-color: var(--deep-black);
            padding: 2rem;
            text-align: center;
            border-top: 1px solid var(--neon-pink);
        }
        footer a {
            color: var(--cyber-blue);
            text-decoration: none;
        }
        .contact-form {
            max-width: 600px;
            margin: 0 auto;
            background-color: rgba(26, 26, 46, 0.8);
            padding: 2rem;
            border-radius: 10px;
        }
        .contact-form input, .contact-form textarea {
            width: 100%;
            padding: 0.8rem;
            margin-bottom: 1rem;
            background-color: rgba(255, 255, 255, 0.1);
            border: 1px solid var(--cyber-blue);
            color: white;
            border-radius: 5px;
        }
        .contact-form button {
            width: 100%;
            padding: 0.8rem;
            background-color: var(--neon-pink);
            color: white;
            border: none;
            border-radius: 5px;
            font-weight: bold;
            cursor: pointer;
        }
        .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;
            text-align: center;
            max-width: 500px;
            width: 90%;
            border: 2px solid var(--neon-pink);
        }
        .close-modal {
            margin-top: 1rem;
            padding: 0.5rem 1rem;
            background-color: var(--cyber-blue);
            color: var(--deep-black);
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
        }
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: var(--dark-purple);
            padding: 1rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            border-top: 1px solid var(--neon-pink);
        }
        .cookie-banner p {
            margin-right: 1rem;
        }
        .disclaimer {
            font-size: 0.8rem;
            text-align: center;
            padding: 1rem;
            background-color: rgba(255, 42, 109, 0.1);
            border-top: 1px solid var(--neon-pink);
        }
        @media (max-width: 768px) {
            nav ul {
                position: fixed;
                top: 80px;
                right: -100%;
                width: 50%;
                height: calc(100vh - 80px);
                background-color: var(--dark-purple);
                flex-direction: column;
                align-items: center;
                justify-content: center;
                transition: right 0.5s;
                z-index: 999;
            }
            nav ul.active {
                right: 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;
            }
        }

