:root {
            --neon-pink: #ff2a6d;
            --cyber-blue: #05d9e8;
            --dark-purple: #2e2157;
            --matrix-green: #0f0;
            --black: #010101;
            --white: #f1f1f1;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Courier New', monospace;
        }
        body {
            background-color: var(--black);
            color: var(--white);
            overflow-x: hidden;
            line-height: 1.6;
        }
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(2, 1, 15, 0.9);
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            border-bottom: 1px solid var(--neon-pink);
        }
        .logo {
            color: var(--neon-pink);
            font-size: 1.8rem;
            font-weight: bold;
            text-shadow: 0 0 5px var(--neon-pink);
        }
        .logo span {
            color: var(--cyber-blue);
        }
        nav ul {
            display: flex;
            list-style: none;
        }
        nav ul li {
            margin-left: 2rem;
        }
        nav ul li a {
            color: var(--white);
            text-decoration: none;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            position: relative;
        }
        nav ul li a:hover {
            color: var(--neon-pink);
        }
        nav ul li a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            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(--white);
            margin: 5px;
            transition: all 0.3s ease;
        }
        main {
            margin-top: 80px;
        }
        section {
            padding: 5rem 2rem;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        .hero {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1571019613454-1cb2f99b2d8b?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
            text-align: center;
            position: relative;
        }
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            color: var(--neon-pink);
            text-shadow: 0 0 10px var(--neon-pink);
        }
        .hero p {
            font-size: 1.5rem;
            max-width: 800px;
            margin: 0 auto 2rem;
            color: var(--cyber-blue);
        }
        .btn {
            display: inline-block;
            padding: 0.8rem 2rem;
            background-color: var(--neon-pink);
            color: var(--black);
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-size: 1.1rem;
            margin: 0.5rem;
            box-shadow: 0 0 10px var(--neon-pink);
        }
        .btn:hover {
            background-color: var(--cyber-blue);
            color: var(--black);
            box-shadow: 0 0 20px var(--cyber-blue);
        }
        .btn-secondary {
            background-color: transparent;
            color: var(--white);
            border: 2px solid var(--cyber-blue);
            box-shadow: 0 0 10px var(--cyber-blue);
        }
        .btn-secondary:hover {
            background-color: var(--cyber-blue);
            color: var(--black);
        }
        .about {
            background-color: var(--dark-purple);
        }
        .section-title {
            font-size: 2.5rem;
            margin-bottom: 2rem;
            color: var(--cyber-blue);
            text-align: center;
            position: relative;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background-color: var(--neon-pink);
        }
        .about-content {
            display: flex;
            align-items: center;
            gap: 3rem;
            flex-wrap: wrap;
        }
        .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;
            position: relative;
        }
        .about-image img {
            width: 100%;
            border-radius: 10px;
            box-shadow: 0 0 20px rgba(255, 42, 109, 0.5);
            transition: transform 0.5s ease;
        }
        .about-image img:hover {
            transform: scale(1.05);
        }
        .products {
            background-color: var(--black);
        }
        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
        .product-card {
            background-color: rgba(46, 33, 87, 0.7);
            border-radius: 10px;
            overflow: hidden;
            transition: all 0.3s ease;
            border: 1px solid var(--cyber-blue);
        }
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 20px rgba(5, 217, 232, 0.3);
        }
        .product-image {
            height: 200px;
            overflow: hidden;
        }
        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .product-card:hover .product-image img {
            transform: scale(1.1);
        }
        .product-info {
            padding: 1.5rem;
        }
        .product-info h3 {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
            color: var(--neon-pink);
        }
        .product-info p {
            margin-bottom: 1rem;
        }
        .prices {
            background-color: var(--dark-purple);
        }
        .price-cards {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 2rem;
            margin-top: 3rem;
        }
        .price-card {
            background-color: rgba(1, 1, 1, 0.7);
            border-radius: 10px;
            padding: 2rem;
            width: 300px;
            text-align: center;
            border: 2px solid var(--neon-pink);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        .price-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 20px rgba(255, 42, 109, 0.3);
        }
        .price-card.popular::before {
            content: 'POPULAR';
            position: absolute;
            top: 10px;
            right: -30px;
            background-color: var(--neon-pink);
            color: var(--black);
            padding: 0.2rem 2rem;
            transform: rotate(45deg);
            font-weight: bold;
            font-size: 0.8rem;
        }
        .price-card h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
            color: var(--cyber-blue);
        }
        .price-card .price {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--neon-pink);
            margin: 1.5rem 0;
        }
        .price-card .price span {
            font-size: 1rem;
            color: var(--white);
        }
        .price-card ul {
            list-style: none;
            margin-bottom: 2rem;
            text-align: left;
        }
        .price-card ul li {
            margin-bottom: 0.5rem;
            position: relative;
            padding-left: 1.5rem;
        }
        .price-card ul li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--matrix-green);
        }
        .gallery {
            background-color: var(--black);
        }
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1rem;
            margin-top: 3rem;
        }
        .gallery-item {
            height: 250px;
            overflow: hidden;
            border-radius: 5px;
            position: relative;
            border: 2px solid var(--cyber-blue);
        }
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        .gallery-item::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(5, 217, 232, 0.7), transparent);
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        .gallery-item:hover::after {
            opacity: 1;
        }
        .feedback {
            background-color: var(--dark-purple);
        }
        .testimonials {
            max-width: 1000px;
            margin: 3rem auto 0;
            position: relative;
        }
        .testimonial {
            background-color: rgba(1, 1, 1, 0.7);
            padding: 2rem;
            border-radius: 10px;
            margin: 1rem;
            border: 1px solid var(--neon-pink);
            position: relative;
        }
        .testimonial::before {
            content: '"';
            position: absolute;
            top: 10px;
            left: 10px;
            font-size: 4rem;
            color: rgba(255, 42, 109, 0.2);
            font-family: Georgia, serif;
        }
        .testimonial p {
            font-style: italic;
            margin-bottom: 1rem;
            position: relative;
            z-index: 1;
        }
        .testimonial-author {
            display: flex;
            align-items: center;
        }
        .testimonial-author img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            margin-right: 1rem;
            object-fit: cover;
            border: 2px solid var(--cyber-blue);
        }
        .author-info h4 {
            color: var(--neon-pink);
            margin-bottom: 0.2rem;
        }
        .author-info p {
            font-style: normal;
            font-size: 0.9rem;
            color: var(--cyber-blue);
            margin: 0;
        }
        .slick-dots {
            display: flex;
            justify-content: center;
            list-style: none;
            margin-top: 2rem;
        }
        .slick-dots li {
            margin: 0 5px;
        }
        .slick-dots li button {
            width: 15px;
            height: 15px;
            border-radius: 50%;
            background-color: var(--cyber-blue);
            border: none;
            opacity: 0.5;
            cursor: pointer;
            font-size: 0;
            transition: all 0.3s ease;
        }
        .slick-dots li.slick-active button {
            opacity: 1;
            background-color: var(--neon-pink);
            transform: scale(1.2);
        }
        .faq {
            background-color: var(--black);
        }
        .accordion {
            max-width: 800px;
            margin: 3rem auto 0;
        }
        .accordion-item {
            margin-bottom: 1rem;
            border: 1px solid var(--cyber-blue);
            border-radius: 5px;
            overflow: hidden;
        }
        .accordion-header {
            background-color: rgba(46, 33, 87, 0.7);
            padding: 1rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }
        .accordion-header:hover {
            background-color: rgba(46, 33, 87, 1);
        }
        .accordion-header h3 {
            color: var(--white);
            font-size: 1.2rem;
            margin: 0;
        }
        .accordion-header span {
            color: var(--neon-pink);
            font-size: 1.5rem;
            transition: transform 0.3s ease;
        }
        .accordion-header.active span {
            transform: rotate(45deg);
        }
        .accordion-content {
            padding: 0 1rem;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            background-color: rgba(1, 1, 1, 0.5);
        }
        .accordion-content p {
            padding: 1rem 0;
        }
        .contact-form {
            max-width: 600px;
            margin: 3rem auto 0;
            background-color: rgba(46, 33, 87, 0.7);
            padding: 2rem;
            border-radius: 10px;
            border: 1px solid var(--neon-pink);
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: var(--cyber-blue);
        }
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 0.8rem;
            background-color: rgba(1, 1, 1, 0.7);
            border: 1px solid var(--cyber-blue);
            border-radius: 5px;
            color: var(--white);
            font-size: 1rem;
        }
        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }
        .disclaimer {
            background-color: var(--black);
            padding: 2rem;
            text-align: center;
            font-size: 0.9rem;
            color: var(--cyber-blue);
            border-top: 1px solid var(--neon-pink);
        }
        footer {
            background-color: var(--dark-purple);
            padding: 3rem 2rem;
            color: var(--white);
        }
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        .footer-column {
            flex: 1;
            min-width: 200px;
        }
        .footer-column h3 {
            color: var(--neon-pink);
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }
        .footer-column ul {
            list-style: none;
        }
        .footer-column ul li {
            margin-bottom: 0.8rem;
        }
        .footer-column ul li a {
            color: var(--white);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer-column ul li a:hover {
            color: var(--cyber-blue);
        }
        .contact-info p {
            margin-bottom: 0.8rem;
            display: flex;
            align-items: center;
        }
        .contact-info i {
            margin-right: 0.5rem;
            color: var(--cyber-blue);
        }
        .copyright {
            text-align: center;
            margin-top: 3rem;
            padding-top: 1.5rem;
            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: var(--dark-purple);
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            z-index: 1000;
            border-top: 2px solid var(--neon-pink);
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }
        .cookie-banner.show {
            transform: translateY(0);
        }
        .cookie-banner p {
            margin-right: 1rem;
            flex: 1;
            min-width: 250px;
        }
        .cookie-banner .btn {
            margin: 0.5rem;
        }
        .modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 2000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        .modal.show {
            opacity: 1;
            visibility: visible;
        }
        .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(--cyber-blue);
        }
        .modal-content h2 {
            color: var(--neon-pink);
            margin-bottom: 1rem;
        }
        .modal-content p {
            margin-bottom: 2rem;
        }
        .close-modal {
            position: absolute;
            top: 10px;
            right: 10px;
            font-size: 1.5rem;
            color: var(--white);
            cursor: pointer;
            transition: color 0.3s ease;
        }
        .close-modal:hover {
            color: var(--neon-pink);
        }
        @media (max-width: 768px) {
            nav ul {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background-color: var(--dark-purple);
                flex-direction: column;
                align-items: center;
                justify-content: center;
                transition: left 0.3s ease;
                z-index: 999;
            }
            nav ul.active {
                left: 0;
            }
            nav ul li {
                margin: 1.5rem 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;
            }
            .section-title {
                font-size: 2rem;
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .fade-in {
            animation: fadeIn 1s ease forwards;
        }
        .delay-1 {
            animation-delay: 0.2s;
        }
        .delay-2 {
            animation-delay: 0.4s;
        }
        .delay-3 {
            animation-delay: 0.6s;
        }
        .delay-4 {
            animation-delay: 0.8s;
        }

