:root {
            --neon-pink: #ff2a6d;
            --neon-blue: #05d9e8;
            --dark-bg: #0d0221;
            --purple-accent: #d300c5;
            --text-color: #f8f8f8;
            --cyber-yellow: #f9f002;
        }
        * {
            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;
            background-image: 
                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');
            background-size: cover;
            background-attachment: fixed;
        }
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(13, 2, 33, 0.95);
            border-bottom: 1px solid var(--neon-pink);
            z-index: 1000;
            padding: 15px 0;
            backdrop-filter: blur(5px);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .logo {
            font-size: 28px;
            font-weight: bold;
            color: var(--neon-pink);
            text-shadow: 0 0 10px var(--neon-pink);
            letter-spacing: 2px;
        }
        .logo span {
            color: var(--neon-blue);
            text-shadow: 0 0 10px var(--neon-blue);
        }
        nav ul {
            display: flex;
            list-style: none;
        }
        nav ul li {
            margin-left: 30px;
        }
        nav ul li a {
            color: var(--text-color);
            text-decoration: none;
            font-size: 18px;
            transition: all 0.3s ease;
            position: relative;
        }
        nav ul li a:hover {
            color: var(--neon-blue);
        }
        nav ul li a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: var(--neon-pink);
            transition: width 0.3s ease;
        }
        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: 80px 20px;
            max-width: 1200px;
            margin: 0 auto;
        }
        h1 {
            font-size: 48px;
            margin-bottom: 20px;
            color: var(--neon-blue);
            text-shadow: 0 0 15px var(--neon-blue);
        }
        h2 {
            font-size: 36px;
            margin-bottom: 30px;
            color: var(--neon-pink);
            text-shadow: 0 0 10px var(--neon-pink);
            position: relative;
            display: inline-block;
        }
        h2::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 3px;
            bottom: -10px;
            left: 0;
            background: linear-gradient(90deg, var(--neon-pink), var(--neon-blue));
        }
        h3 {
            font-size: 24px;
            margin-bottom: 15px;
            color: var(--cyber-yellow);
        }
        p {
            margin-bottom: 20px;
            font-size: 18px;
        }
        .btn {
            display: inline-block;
            padding: 12px 30px;
            background: linear-gradient(45deg, var(--neon-pink), var(--purple-accent));
            color: white;
            text-decoration: none;
            border-radius: 30px;
            font-weight: bold;
            margin-top: 20px;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 0 15px var(--neon-pink);
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 0 25px var(--neon-pink);
        }
        .hero {
            text-align: center;
            padding: 150px 20px;
            position: relative;
            overflow: hidden;
        }
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, rgba(5, 217, 232, 0.1) 0%, rgba(13, 2, 33, 0.9) 70%);
            z-index: -1;
        }
        .hero h1 {
            font-size: 64px;
            margin-bottom: 30px;
            animation: glow 2s infinite alternate;
        }
        .hero p {
            font-size: 22px;
            max-width: 800px;
            margin: 0 auto 40px;
        }
        @keyframes glow {
            from {
                text-shadow: 0 0 10px var(--neon-blue), 0 0 20px var(--neon-blue);
            }
            to {
                text-shadow: 0 0 20px var(--neon-blue), 0 0 30px var(--neon-blue), 0 0 40px var(--neon-blue);
            }
        }
        .about {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 50px;
        }
        .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 var(--neon-pink);
            transition: transform 0.5s ease;
        }
        .about-image:hover img {
            transform: scale(1.03);
        }
        .products {
            text-align: center;
        }
        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        .product-card {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            padding: 30px;
            transition: all 0.3s ease;
            border: 1px solid var(--neon-blue);
            box-shadow: 0 0 15px rgba(5, 217, 232, 0.2);
        }
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 0 30px var(--neon-blue);
        }
        .product-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 10px;
            margin-bottom: 20px;
            border: 1px solid var(--neon-pink);
        }
        .prices {
            text-align: center;
        }
        .price-cards {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
            margin-top: 50px;
        }
        .price-card {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            padding: 40px 30px;
            width: 300px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            border: 1px solid var(--purple-accent);
        }
        .price-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(
                to bottom right,
                transparent,
                transparent,
                transparent,
                rgba(211, 0, 197, 0.1)
            );
            transform: rotate(30deg);
            z-index: -1;
        }
        .price-card:hover {
            transform: scale(1.05);
            box-shadow: 0 0 30px var(--purple-accent);
        }
        .price-card h3 {
            font-size: 28px;
            margin-bottom: 20px;
            color: var(--neon-blue);
        }
        .price {
            font-size: 42px;
            font-weight: bold;
            margin: 20px 0;
            color: var(--neon-pink);
        }
        .price span {
            font-size: 16px;
            color: var(--text-color);
        }
        .price-card ul {
            list-style: none;
            margin-bottom: 30px;
            text-align: left;
        }
        .price-card ul li {
            margin-bottom: 10px;
            position: relative;
            padding-left: 25px;
        }
        .price-card ul li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--neon-blue);
        }
        .gallery {
            text-align: center;
        }
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 50px;
        }
        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            height: 250px;
            transition: all 0.3s ease;
            border: 1px solid var(--neon-pink);
        }
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .gallery-item:hover {
            box-shadow: 0 0 20px var(--neon-pink);
        }
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        .feedback {
            text-align: center;
        }
        .reviews {
            margin-top: 50px;
            position: relative;
        }
        .review-slider {
            display: flex;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            scroll-behavior: smooth;
            -webkit-overflow-scrolling: touch;
            gap: 30px;
            padding: 20px 0;
        }
        .review-slider::-webkit-scrollbar {
            display: none;
        }
        .review {
            min-width: 300px;
            scroll-snap-align: start;
            background: rgba(255, 255, 255, 0.05);
            padding: 30px;
            border-radius: 15px;
            border: 1px solid var(--neon-blue);
        }
        .review-header {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }
        .review-header img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            margin-right: 15px;
            border: 2px solid var(--neon-pink);
        }
        .review-name {
            font-weight: bold;
            font-size: 20px;
            color: var(--neon-blue);
        }
        .review-date {
            color: #aaa;
            font-size: 14px;
        }
        .review-rating {
            color: var(--cyber-yellow);
            margin: 10px 0;
            font-size: 18px;
        }
        .faq {
            max-width: 800px;
            margin: 0 auto;
        }
        .faq-item {
            margin-bottom: 20px;
            border: 1px solid var(--neon-blue);
            border-radius: 10px;
            overflow: hidden;
        }
        .faq-question {
            background: rgba(5, 217, 232, 0.1);
            padding: 20px;
            cursor: pointer;
            font-size: 20px;
            font-weight: bold;
            color: var(--neon-blue);
            position: relative;
        }
        .faq-question::after {
            content: '+';
            position: absolute;
            right: 20px;
            font-size: 24px;
            transition: transform 0.3s ease;
        }
        .faq-question.active::after {
            transform: rotate(45deg);
        }
        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
            background: rgba(255, 255, 255, 0.03);
        }
        .faq-answer.show {
            padding: 20px;
            max-height: 500px;
        }
        .contact-form {
            max-width: 600px;
            margin: 50px auto 0;
            background: rgba(255, 255, 255, 0.05);
            padding: 40px;
            border-radius: 15px;
            border: 1px solid var(--neon-pink);
        }
        .form-group {
            margin-bottom: 25px;
        }
        .form-group label {
            display: block;
            margin-bottom: 10px;
            color: var(--neon-blue);
        }
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 15px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid var(--neon-blue);
            border-radius: 5px;
            color: var(--text-color);
            font-size: 16px;
        }
        .form-group textarea {
            height: 150px;
            resize: vertical;
        }
        footer {
            background: rgba(13, 2, 33, 0.95);
            padding: 50px 20px 30px;
            border-top: 1px solid var(--neon-pink);
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
        }
        .footer-logo {
            font-size: 24px;
            font-weight: bold;
            color: var(--neon-pink);
            margin-bottom: 20px;
            display: inline-block;
        }
        .footer-links h3 {
            color: var(--neon-blue);
            margin-bottom: 20px;
            font-size: 20px;
        }
        .footer-links ul {
            list-style: none;
        }
        .footer-links ul li {
            margin-bottom: 10px;
        }
        .footer-links ul li a {
            color: var(--text-color);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer-links ul li a:hover {
            color: var(--neon-blue);
        }
        .contact-info p {
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }
        .contact-info i {
            margin-right: 10px;
            color: var(--neon-blue);
        }
        .copyright {
            text-align: center;
            margin-top: 50px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        .disclaimer {
            font-size: 14px;
            color: #aaa;
            margin-top: 50px;
            padding: 20px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
        }
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            z-index: 2000;
            justify-content: center;
            align-items: center;
        }
        .modal-content {
            background: var(--dark-bg);
            padding: 40px;
            border-radius: 15px;
            max-width: 500px;
            width: 90%;
            text-align: center;
            border: 2px solid var(--neon-pink);
            box-shadow: 0 0 30px var(--neon-pink);
            position: relative;
            animation: modalFadeIn 0.5s ease;
        }
        @keyframes modalFadeIn {
            from {
                opacity: 0;
                transform: translateY(-50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .close-modal {
            position: absolute;
            top: 15px;
            right: 15px;
            font-size: 24px;
            color: var(--neon-blue);
            cursor: pointer;
            transition: color 0.3s ease;
        }
        .close-modal:hover {
            color: var(--neon-pink);
        }
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: rgba(13, 2, 33, 0.95);
            padding: 20px;
            border-top: 1px solid var(--neon-blue);
            z-index: 1000;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            transform: translateY(100%);
            transition: transform 0.5s ease;
        }
        .cookie-banner.show {
            transform: translateY(0);
        }
        .cookie-text {
            flex: 1;
            min-width: 250px;
            margin-right: 20px;
            margin-bottom: 15px;
        }
        .cookie-buttons {
            display: flex;
            gap: 15px;
        }
        .cookie-btn {
            padding: 10px 20px;
            border-radius: 30px;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s ease;
        }
        .cookie-accept {
            background: var(--neon-blue);
            color: var(--dark-bg);
            border: none;
        }
        .cookie-accept:hover {
            background: var(--neon-pink);
            color: white;
        }
        .cookie-decline {
            background: transparent;
            color: var(--neon-blue);
            border: 1px solid var(--neon-blue);
        }
        .cookie-decline:hover {
            color: var(--neon-pink);
            border-color: var(--neon-pink);
        }
        @media (max-width: 768px) {
            nav ul {
                position: fixed;
                top: 80px;
                left: 0;
                width: 100%;
                background: rgba(13, 2, 33, 0.95);
                flex-direction: column;
                align-items: center;
                padding: 20px 0;
                clip-path: circle(0px at 90% -10%);
                transition: all 0.7s ease-out;
                pointer-events: none;
                border-bottom: 1px solid var(--neon-pink);
            }
            nav ul.open {
                clip-path: circle(1000px at 90% -10%);
                pointer-events: all;
            }
            nav ul li {
                margin: 15px 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: 48px;
            }
            .hero p {
                font-size: 18px;
            }
            h1 {
                font-size: 36px;
            }
            h2 {
                font-size: 30px;
            }
            section {
                padding: 60px 20px;
            }
            .price-cards {
                flex-direction: column;
                align-items: center;
            }
            .price-card {
                width: 100%;
                max-width: 350px;
            }
        }
        .parallax {
            background-attachment: fixed;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
        }
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }
        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

