:root {
            --neon-pink: #ff2a6d;
            --neon-blue: #05d9e8;
            --dark-bg: #0d0221;
            --text-color: #d1f7ff;
            --accent-purple: #9a03fe;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Courier New', monospace;
        }
        body {
            background-color: var(--dark-bg);
            color: var(--text-color);
            line-height: 1.6;
            padding-top: 80px;
            overflow-x: hidden;
        }
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(13, 2, 33, 0.9);
            backdrop-filter: blur(5px);
            z-index: 1000;
            border-bottom: 1px solid var(--neon-pink);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--neon-pink);
            text-decoration: none;
            text-shadow: 0 0 10px var(--neon-pink);
        }
        nav ul {
            display: flex;
            list-style: none;
        }
        nav ul li {
            margin-left: 2rem;
        }
        nav ul li a {
            color: var(--text-color);
            text-decoration: none;
            font-weight: bold;
            transition: color 0.3s;
            position: relative;
        }
        nav ul li a:hover {
            color: var(--neon-blue);
        }
        nav ul li a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--neon-blue);
            transition: width 0.3s;
        }
        nav ul li a:hover::after {
            width: 100%;
        }
        .burger {
            display: none;
            cursor: pointer;
        }
        .burger div {
            width: 25px;
            height: 3px;
            background-color: var(--neon-blue);
            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(13, 2, 33, 0.8), rgba(13, 2, 33, 0.8)), url('https://images.unsplash.com/photo-1545205597-3d9d02c29597?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
            text-align: center;
            position: relative;
        }
        .hero-content {
            max-width: 800px;
            margin: 0 auto;
            animation: fadeIn 1.5s ease-in-out;
        }
        h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
            color: var(--neon-pink);
            text-shadow: 0 0 10px var(--neon-pink);
        }
        h2 {
            font-size: 2.5rem;
            margin-bottom: 2rem;
            color: var(--neon-blue);
            position: relative;
            display: inline-block;
        }
        h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, var(--neon-pink), var(--neon-blue));
        }
        h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
            color: var(--accent-purple);
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }
        .btn {
            display: inline-block;
            padding: 0.8rem 2rem;
            background: linear-gradient(45deg, var(--neon-pink), var(--accent-purple));
            color: white;
            text-decoration: none;
            border-radius: 30px;
            font-weight: bold;
            margin-top: 1rem;
            transition: transform 0.3s, box-shadow 0.3s;
            border: none;
            cursor: pointer;
        }
        .btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(255, 42, 109, 0.3);
        }
        .about {
            background-color: rgba(5, 217, 232, 0.05);
        }
        .about-content {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        .about-text {
            flex: 1;
            min-width: 300px;
        }
        .about-image {
            flex: 1;
            min-width: 300px;
            position: relative;
        }
        .about-image img {
            width: 100%;
            border-radius: 10px;
            box-shadow: 0 0 30px rgba(5, 217, 232, 0.3);
            transition: transform 0.5s;
        }
        .about-image:hover img {
            transform: scale(1.05);
        }
        .products {
            background: linear-gradient(rgba(13, 2, 33, 0.9), rgba(13, 2, 33, 0.9)), url('https://images.unsplash.com/photo-1571902943202-507ec2618e8f?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
        }
        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            width: 100%;
            margin: 0 auto;
        }
        .product-card {
            background-color: rgba(154, 3, 254, 0.1);
            border: 1px solid var(--accent-purple);
            border-radius: 10px;
            padding: 2rem;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(154, 3, 254, 0.3);
        }
        .prices {
            background-color: rgba(255, 42, 109, 0.05);
        }
        .price-table {
            width: 100%;
            border-collapse: collapse;
            margin: 0 auto;
            max-width: 800px;
        }
        .price-table th, .price-table td {
            padding: 1rem;
            text-align: left;
            border-bottom: 1px solid var(--neon-blue);
        }
        .price-table th {
            background-color: rgba(5, 217, 232, 0.2);
            color: var(--neon-blue);
        }
        .price-table tr:hover {
            background-color: rgba(255, 42, 109, 0.1);
        }
        .gallery {
            background-color: rgba(13, 2, 33, 0.9);
        }
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1rem;
            width: 100%;
            margin: 0 auto;
        }
        .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);
        }
        .feedback {
            background: linear-gradient(rgba(13, 2, 33, 0.8), rgba(13, 2, 33, 0.8)), url('https://images.unsplash.com/photo-1518611012118-696072aa579a?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
        }
        .feedback-slider {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            overflow: hidden;
        }
        .feedback-slides {
            display: flex;
            transition: transform 0.5s ease;
        }
        .feedback-slide {
            min-width: 100%;
            padding: 2rem;
            background-color: rgba(13, 2, 33, 0.7);
            border-radius: 10px;
            border: 1px solid var(--neon-pink);
        }
        .feedback-author {
            display: flex;
            align-items: center;
            margin-top: 1rem;
        }
        .feedback-author img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            margin-right: 1rem;
            object-fit: cover;
            border: 2px solid var(--neon-blue);
        }
        .slider-controls {
            display: flex;
            justify-content: center;
            margin-top: 2rem;
        }
        .slider-btn {
            background: none;
            border: none;
            color: var(--neon-blue);
            font-size: 2rem;
            cursor: pointer;
            margin: 0 1rem;
        }
        .faq {
            background-color: rgba(5, 217, 232, 0.05);
        }
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }
        .faq-item {
            margin-bottom: 1rem;
            border: 1px solid var(--neon-blue);
            border-radius: 5px;
            overflow: hidden;
        }
        .faq-question {
            padding: 1rem;
            background-color: rgba(5, 217, 232, 0.1);
            color: var(--neon-blue);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .faq-answer {
            padding: 1rem;
            background-color: rgba(13, 2, 33, 0.7);
            display: none;
        }
        .faq-question.active + .faq-answer {
            display: block;
        }
        .contact-form {
            max-width: 600px;
            margin: 0 auto;
            background-color: rgba(154, 3, 254, 0.1);
            padding: 2rem;
            border-radius: 10px;
            border: 1px solid var(--accent-purple);
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: var(--neon-blue);
        }
        .form-group input, .form-group textarea {
            width: 100%;
            padding: 0.8rem;
            background-color: rgba(13, 2, 33, 0.7);
            border: 1px solid var(--neon-blue);
            border-radius: 5px;
            color: white;
        }
        .form-group textarea {
            min-height: 150px;
        }
        footer {
            background-color: #0a0118;
            padding: 3rem 2rem;
            border-top: 1px solid var(--neon-pink);
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        .footer-logo {
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--neon-pink);
            margin-bottom: 1rem;
            display: inline-block;
        }
        .footer-links h3 {
            color: var(--neon-blue);
            margin-bottom: 1rem;
        }
        .footer-links ul {
            list-style: none;
        }
        .footer-links ul li {
            margin-bottom: 0.5rem;
        }
        .footer-links ul li a {
            color: var(--text-color);
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer-links ul li a:hover {
            color: var(--neon-blue);
        }
        .contact-info p {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
        }
        .contact-info i {
            margin-right: 0.5rem;
            color: var(--neon-blue);
        }
        .copyright {
            text-align: center;
            margin-top: 2rem;
            padding-top: 1rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        .disclaimer {
            font-size: 0.8rem;
            opacity: 0.7;
            margin-top: 2rem;
        }
        .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-bg);
            padding: 2rem;
            border-radius: 10px;
            border: 1px solid var(--neon-pink);
            max-width: 500px;
            width: 90%;
            text-align: center;
            position: relative;
        }
        .close-modal {
            position: absolute;
            top: 10px;
            right: 10px;
            font-size: 1.5rem;
            color: var(--neon-blue);
            cursor: pointer;
        }
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: var(--dark-bg);
            padding: 1rem;
            border-top: 1px solid var(--neon-blue);
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
        }
        .cookie-banner p {
            margin-bottom: 0;
            margin-right: 1rem;
            flex: 1;
            min-width: 200px;
        }
        .cookie-banner button {
            margin-left: 1rem;
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        @media (max-width: 768px) {
            nav ul {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background-color: var(--dark-bg);
                flex-direction: column;
                align-items: center;
                justify-content: center;
                transition: left 0.5s ease;
                z-index: 999;
            }
            nav ul.active {
                left: 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);
            }
            h1 {
                font-size: 2.5rem;
            }
            h2 {
                font-size: 2rem;
            }
        }

