:root {
            --neon-pink: #ff2a6d;
            --cyber-blue: #05d9e8;
            --dark-purple: #2e2157;
            --matrix-green: #0f0;
            --black: #0d0221;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Courier New', monospace;
        }
        body {
            background-color: var(--black);
            color: white;
            line-height: 1.6;
            overflow-x: hidden;
            padding-top: 80px;
        }
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(13, 2, 33, 0.9);
            backdrop-filter: blur(10px);
            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 {
            color: var(--neon-pink);
            font-size: 1.8rem;
            font-weight: bold;
            text-decoration: none;
            text-shadow: 0 0 10px var(--neon-pink);
        }
        .nav-links {
            display: flex;
            list-style: none;
        }
        .nav-links li {
            margin-left: 2rem;
        }
        .nav-links a {
            color: var(--cyber-blue);
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s ease;
            position: relative;
        }
        .nav-links a:hover {
            color: var(--neon-pink);
            text-shadow: 0 0 10px var(--neon-pink);
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: var(--neon-pink);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }
        .nav-links a:hover::after {
            transform: scaleX(1);
        }
        .burger {
            display: none;
            cursor: pointer;
        }
        .burger div {
            width: 25px;
            height: 3px;
            background-color: var(--cyber-blue);
            margin: 5px;
            transition: all 0.3s ease;
        }
        section {
            padding: 5rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        .hero {
            height: 80vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            background: linear-gradient(rgba(13, 2, 33, 0.7), rgba(13, 2, 33, 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;
            position: relative;
            overflow: hidden;
        }
        .hero-content {
            position: relative;
            z-index: 2;
        }
        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;
        }
        @keyframes glow {
            from {
                text-shadow: 0 0 10px var(--neon-pink);
            }
            to {
                text-shadow: 0 0 20px var(--neon-pink), 0 0 30px var(--neon-pink);
            }
        }
        h2 {
            font-size: 2.5rem;
            margin-bottom: 2rem;
            color: var(--cyber-blue);
            border-bottom: 2px solid var(--neon-pink);
            padding-bottom: 0.5rem;
            display: inline-block;
        }
        h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
            color: var(--cyber-blue);
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }
        .btn {
            display: inline-block;
            background-color: var(--neon-pink);
            color: white;
            padding: 0.8rem 2rem;
            border: none;
            border-radius: 5px;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            margin-top: 1rem;
            box-shadow: 0 0 15px var(--neon-pink);
        }
        .btn:hover {
            background-color: var(--cyber-blue);
            box-shadow: 0 0 20px var(--cyber-blue);
            transform: translateY(-3px);
        }
        .about {
            background-color: rgba(46, 33, 87, 0.5);
            border-radius: 10px;
            margin: 2rem auto;
            box-shadow: 0 0 30px rgba(5, 217, 232, 0.3);
        }
        .products {
            position: relative;
            overflow: hidden;
        }
        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }
        .product-card {
            background-color: rgba(46, 33, 87, 0.7);
            border-radius: 10px;
            padding: 2rem;
            transition: all 0.3s ease;
            border: 1px solid var(--cyber-blue);
            box-shadow: 0 0 15px rgba(5, 217, 232, 0.2);
        }
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 0 30px rgba(5, 217, 232, 0.5);
        }
        .prices {
            background-color: rgba(13, 2, 33, 0.8);
            border-radius: 10px;
            box-shadow: 0 0 30px rgba(255, 42, 109, 0.3);
        }
        .price-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }
        .price-card {
            background-color: rgba(46, 33, 87, 0.7);
            border-radius: 10px;
            padding: 2rem;
            text-align: center;
            transition: all 0.3s ease;
            border: 1px solid var(--neon-pink);
        }
        .price-card:hover {
            transform: scale(1.05);
            box-shadow: 0 0 25px var(--neon-pink);
        }
        .price-card h3 {
            color: var(--neon-pink);
        }
        .price {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--cyber-blue);
            margin: 1rem 0;
        }
        .gallery {
            position: relative;
        }
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1rem;
            margin-top: 2rem;
        }
        .gallery-item {
            height: 250px;
            overflow: hidden;
            border-radius: 10px;
            position: relative;
            box-shadow: 0 0 15px rgba(255, 42, 109, 0.3);
            transition: all 0.3s ease;
        }
        .gallery-item:hover {
            transform: scale(1.03);
            box-shadow: 0 0 25px var(--neon-pink);
        }
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        .feedback {
            background-color: rgba(46, 33, 87, 0.5);
            border-radius: 10px;
        }
        .feedback-slider {
            position: relative;
            overflow: hidden;
            margin-top: 2rem;
        }
        .slides {
            display: flex;
            transition: transform 0.5s ease;
        }
        .slide {
            min-width: 100%;
            padding: 2rem;
            background-color: rgba(13, 2, 33, 0.7);
            border-radius: 10px;
            box-shadow: 0 0 15px rgba(5, 217, 232, 0.3);
        }
        .client-info {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
        }
        .client-info img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            margin-right: 1rem;
            border: 2px solid var(--neon-pink);
        }
        .client-name {
            font-weight: bold;
            color: var(--cyber-blue);
        }
        .client-date {
            color: #aaa;
            font-size: 0.9rem;
        }
        .slider-controls {
            display: flex;
            justify-content: center;
            margin-top: 1rem;
        }
        .slider-btn {
            background: none;
            border: none;
            color: var(--cyber-blue);
            font-size: 2rem;
            cursor: pointer;
            margin: 0 1rem;
            transition: all 0.3s ease;
        }
        .slider-btn:hover {
            color: var(--neon-pink);
        }
        .faq {
            position: relative;
        }
        .faq-item {
            margin-bottom: 1rem;
            background-color: rgba(46, 33, 87, 0.5);
            border-radius: 10px;
            overflow: hidden;
            border: 1px solid var(--cyber-blue);
        }
        .faq-question {
            background-color: rgba(5, 217, 232, 0.2);
            padding: 1.5rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: bold;
            color: var(--cyber-blue);
        }
        .faq-answer {
            padding: 0 1.5rem;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }
        .faq-item.active .faq-answer {
            max-height: 300px;
            padding: 1.5rem;
        }
        .contact-form {
            background-color: rgba(46, 33, 87, 0.5);
            padding: 2rem;
            border-radius: 10px;
            margin-top: 2rem;
            box-shadow: 0 0 20px rgba(255, 42, 109, 0.3);
        }
        .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(13, 2, 33, 0.7);
            border: 1px solid var(--neon-pink);
            border-radius: 5px;
            color: white;
            font-size: 1rem;
        }
        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }
        .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;
            border: 2px solid var(--neon-pink);
            box-shadow: 0 0 30px var(--neon-pink);
        }
        .close-modal {
            background-color: var(--neon-pink);
            color: white;
            border: none;
            padding: 0.5rem 1.5rem;
            border-radius: 5px;
            cursor: pointer;
            margin-top: 1rem;
            transition: all 0.3s ease;
        }
        .close-modal:hover {
            background-color: var(--cyber-blue);
        }
        .disclaimer {
            background-color: rgba(13, 2, 33, 0.9);
            padding: 1.5rem;
            border-radius: 10px;
            margin-top: 3rem;
            font-size: 0.9rem;
            color: #aaa;
            border-top: 1px solid var(--neon-pink);
        }
        .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(--cyber-blue);
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }
        .cookie-banner.show {
            transform: translateY(0);
        }
        .cookie-text {
            flex: 1;
            margin-right: 1rem;
        }
        .cookie-btn {
            background-color: var(--neon-pink);
            color: white;
            border: none;
            padding: 0.5rem 1rem;
            border-radius: 5px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .cookie-btn:hover {
            background-color: var(--cyber-blue);
        }
        footer {
            background-color: var(--dark-purple);
            padding: 3rem 2rem;
            color: white;
            border-top: 1px solid var(--neon-pink);
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
        }
        .footer-logo {
            font-size: 1.5rem;
            color: var(--neon-pink);
            margin-bottom: 1rem;
            text-shadow: 0 0 10px var(--neon-pink);
        }
        .footer-links h3 {
            color: var(--cyber-blue);
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }
        .footer-links ul {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.5rem;
        }
        .footer-links a {
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        .footer-links a:hover {
            color: var(--neon-pink);
            padding-left: 5px;
        }
        .contact-info {
            margin-top: 1rem;
        }
        .contact-info p {
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
        }
        .contact-info i {
            margin-right: 0.5rem;
            color: var(--cyber-blue);
        }
        .copyright {
            text-align: center;
            margin-top: 2rem;
            padding-top: 1rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            color: #aaa;
        }
        @media (max-width: 768px) {
            .nav-links {
                position: absolute;
                right: 0;
                top: 80px;
                background-color: rgba(13, 2, 33, 0.9);
                width: 100%;
                flex-direction: column;
                align-items: center;
                padding: 1rem 0;
                clip-path: circle(0px at 90% -10%);
                transition: all 0.5s ease-out;
                pointer-events: none;
            }
            .nav-links.active {
                clip-path: circle(1000px at 90% -10%);
                pointer-events: all;
            }
            .nav-links li {
                margin: 1rem 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);
            }
            h1 {
                font-size: 2.5rem;
            }
            h2 {
                font-size: 2rem;
            }
            section {
                padding: 3rem 1rem;
            }
            .hero {
                height: 70vh;
            }
        }

