:root {
            --neon-pink: #ff2a6d;
            --electric-blue: #05d9e8;
            --cyber-purple: #d300c5;
            --matrix-green: #00ff41;
            --dark-matter: #0d0221;
            --future-gray: #2a2b2e;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Courier New', monospace;
        }

        body {
            background-color: var(--dark-matter);
            color: white;
            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(10px);
            z-index: 1000;
            border-bottom: 1px solid var(--electric-blue);
            box-shadow: 0 0 15px var(--electric-blue);
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
        }

        .logo-text {
            font-size: 1.5rem;
            font-weight: bold;
            background: linear-gradient(90deg, var(--neon-pink), var(--electric-blue));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 0 5px rgba(255, 42, 109, 0.3);
        }

        .nav-links {
            display: flex;
            gap: 2rem;
        }

        .nav-links a {
            color: white;
            text-decoration: none;
            font-size: 1rem;
            position: relative;
            transition: all 0.3s ease;
        }

        .nav-links a:hover {
            color: var(--electric-blue);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--electric-blue);
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .burger {
            display: none;
            cursor: pointer;
            flex-direction: column;
            gap: 5px;
            z-index: 1001;
        }

        .burger-line {
            width: 25px;
            height: 3px;
            background-color: var(--electric-blue);
            transition: all 0.3s ease;
        }

        .burger.active .burger-line:nth-child(1) {
            transform: translateY(8px) rotate(45deg);
        }

        .burger.active .burger-line:nth-child(2) {
            opacity: 0;
        }

        .burger.active .burger-line:nth-child(3) {
            transform: translateY(-8px) rotate(-45deg);
        }

        section {
            padding: 5rem 2rem;
            position: relative;
        }

        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            background: linear-gradient(rgba(13, 2, 33, 0.8), rgba(13, 2, 33, 0.9)), 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;
            color: white;
            text-align: center;
            overflow: hidden;
        }

        .hero-content {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            background: linear-gradient(90deg, var(--neon-pink), var(--electric-blue));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 0 10px rgba(5, 217, 232, 0.3);
            animation: glow 2s infinite alternate;
        }

        @keyframes glow {
            from {
                text-shadow: 0 0 10px rgba(5, 217, 232, 0.3);
            }
            to {
                text-shadow: 0 0 20px rgba(255, 42, 109, 0.5), 0 0 30px rgba(5, 217, 232, 0.5);
            }
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            line-height: 1.8;
        }

        .btn {
            display: inline-block;
            padding: 0.8rem 2rem;
            background: linear-gradient(45deg, var(--neon-pink), var(--cyber-purple));
            color: white;
            text-decoration: none;
            border-radius: 30px;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            box-shadow: 0 0 15px rgba(255, 42, 109, 0.5);
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 0 25px rgba(255, 42, 109, 0.8);
        }

        .btn-secondary {
            background: transparent;
            border: 2px solid var(--electric-blue);
            box-shadow: 0 0 15px rgba(5, 217, 232, 0.5);
            margin-left: 1rem;
        }

        .btn-secondary:hover {
            background: rgba(5, 217, 232, 0.2);
            box-shadow: 0 0 25px rgba(5, 217, 232, 0.8);
        }

        .section-title {
            text-align: center;
            margin-bottom: 3rem;
            font-size: 2.5rem;
            color: var(--electric-blue);
            position: relative;
        }

        .section-title::after {
            content: '';
            display: block;
            width: 100px;
            height: 3px;
            background: linear-gradient(90deg, var(--neon-pink), var(--electric-blue));
            margin: 1rem auto 0;
        }

        .about {
            background-color: var(--future-gray);
            position: relative;
        }

        .about-content {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }

        .about-text {
            flex: 1;
            min-width: 300px;
        }

        .about h2 {
            color: var(--neon-pink);
            margin-bottom: 1.5rem;
            font-size: 2rem;
        }

        .about p {
            margin-bottom: 1.5rem;
            line-height: 1.8;
        }

        .about-image {
            flex: 1;
            min-width: 300px;
            position: relative;
        }

        .about-image img {
            width: 100%;
            border-radius: 10px;
            box-shadow: 0 0 30px rgba(255, 42, 109, 0.3);
            transition: transform 0.5s ease;
        }

        .about-image:hover img {
            transform: scale(1.03);
        }

        .products {
            background-color: var(--dark-matter);
            position: relative;
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .product-card {
            background-color: var(--future-gray);
            border-radius: 10px;
            overflow: hidden;
            transition: all 0.3s ease;
            border: 1px solid var(--electric-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.4);
        }

        .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 {
            color: var(--neon-pink);
            margin-bottom: 1rem;
            font-size: 1.5rem;
        }

        .product-info p {
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }

        .prices {
            background-color: var(--future-gray);
        }

        .pricing-cards {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .pricing-card {
            background-color: var(--dark-matter);
            border-radius: 10px;
            padding: 2rem;
            width: 300px;
            text-align: center;
            border: 1px solid var(--electric-blue);
            box-shadow: 0 0 20px rgba(5, 217, 232, 0.2);
            transition: all 0.3s ease;
        }

        .pricing-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 0 30px rgba(5, 217, 232, 0.4);
        }

        .pricing-card.popular {
            border: 2px solid var(--neon-pink);
            box-shadow: 0 0 30px rgba(255, 42, 109, 0.3);
            position: relative;
        }

        .popular-tag {
            position: absolute;
            top: -15px;
            right: 20px;
            background-color: var(--neon-pink);
            color: white;
            padding: 0.3rem 1rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: bold;
        }

        .pricing-card h3 {
            color: var(--electric-blue);
            margin-bottom: 1.5rem;
            font-size: 1.8rem;
        }

        .price {
            font-size: 2.5rem;
            font-weight: bold;
            color: white;
            margin-bottom: 1.5rem;
        }

        .price span {
            font-size: 1rem;
            color: var(--electric-blue);
        }

        .pricing-features {
            margin-bottom: 2rem;
            text-align: left;
        }

        .pricing-features li {
            margin-bottom: 0.8rem;
            list-style-type: none;
            position: relative;
            padding-left: 1.5rem;
        }

        .pricing-features li::before {
            content: '✓';
            color: var(--matrix-green);
            position: absolute;
            left: 0;
        }

        .gallery {
            background-color: var(--dark-matter);
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 5px;
            height: 250px;
            box-shadow: 0 0 10px rgba(5, 217, 232, 0.2);
            transition: all 0.3s ease;
        }

        .gallery-item:hover {
            transform: scale(1.05);
            box-shadow: 0 0 20px rgba(5, 217, 232, 0.4);
            z-index: 10;
        }

        .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: var(--future-gray);
            overflow: hidden;
        }

        .feedback-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
        }

        .feedback-slider {
            display: flex;
            transition: transform 0.5s ease;
        }

        .feedback-slide {
            min-width: 100%;
            padding: 0 2rem;
            box-sizing: border-box;
        }

        .feedback-card {
            background-color: var(--dark-matter);
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 0 20px rgba(5, 217, 232, 0.2);
            border: 1px solid var(--electric-blue);
            max-width: 800px;
            margin: 0 auto;
        }

        .feedback-text {
            font-style: italic;
            margin-bottom: 1.5rem;
            line-height: 1.8;
            position: relative;
        }

        .feedback-text::before,
        .feedback-text::after {
            content: '"';
            color: var(--neon-pink);
            font-size: 2rem;
            line-height: 0;
        }

        .feedback-text::before {
            vertical-align: top;
            margin-right: 5px;
        }

        .feedback-text::after {
            vertical-align: bottom;
            margin-left: 5px;
        }

        .feedback-author {
            display: flex;
            align-items: center;
        }

        .feedback-author img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            object-fit: cover;
            margin-right: 1rem;
            border: 2px solid var(--electric-blue);
        }

        .author-info h4 {
            color: var(--electric-blue);
            margin-bottom: 0.3rem;
        }

        .author-info p {
            color: var(--matrix-green);
            font-size: 0.9rem;
        }

        .slider-controls {
            display: flex;
            justify-content: center;
            margin-top: 2rem;
            gap: 1rem;
        }

        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: var(--future-gray);
            border: 1px solid var(--electric-blue);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .slider-dot.active {
            background-color: var(--electric-blue);
        }

        .faq {
            background-color: var(--dark-matter);
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            margin-bottom: 1rem;
            border: 1px solid var(--electric-blue);
            border-radius: 5px;
            overflow: hidden;
            box-shadow: 0 0 10px rgba(5, 217, 232, 0.1);
        }

        .faq-question {
            padding: 1.5rem;
            background-color: var(--future-gray);
            color: var(--electric-blue);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: bold;
            transition: all 0.3s ease;
        }

        .faq-question:hover {
            background-color: rgba(5, 217, 232, 0.1);
        }

        .faq-question::after {
            content: '+';
            font-size: 1.5rem;
            transition: transform 0.3s ease;
        }

        .faq-item.active .faq-question::after {
            transform: rotate(45deg);
        }

        .faq-answer {
            padding: 0 1.5rem;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
            background-color: rgba(5, 217, 232, 0.05);
        }

        .faq-item.active .faq-answer {
            padding: 1.5rem;
            max-height: 500px;
        }

        .contact-form {
            max-width: 600px;
            margin: 0 auto;
            background-color: var(--future-gray);
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 0 20px rgba(5, 217, 232, 0.2);
            border: 1px solid var(--electric-blue);
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: var(--electric-blue);
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 0.8rem;
            background-color: rgba(5, 217, 232, 0.1);
            border: 1px solid var(--electric-blue);
            border-radius: 5px;
            color: white;
            font-size: 1rem;
        }

        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }

        footer {
            background-color: var(--future-gray);
            color: white;
            padding: 3rem 2rem;
            border-top: 1px solid var(--electric-blue);
        }

        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-logo {
            font-size: 1.5rem;
            font-weight: bold;
            background: linear-gradient(90deg, var(--neon-pink), var(--electric-blue));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 1rem;
            display: inline-block;
        }

        .footer-about p {
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }

        .footer-links h3,
        .footer-contact h3 {
            color: var(--electric-blue);
            margin-bottom: 1.5rem;
            font-size: 1.2rem;
        }

        .footer-links ul {
            list-style-type: none;
        }

        .footer-links li {
            margin-bottom: 0.8rem;
        }

        .footer-links a {
            color: white;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--electric-blue);
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 1rem;
        }

        .contact-icon {
            margin-right: 1rem;
            color: var(--electric-blue);
        }

        .copyright {
            text-align: center;
            margin-top: 3rem;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(5, 217, 232, 0.2);
            font-size: 0.9rem;
            color: var(--electric-blue);
        }

        .disclaimer {
            background-color: var(--dark-matter);
            padding: 2rem;
            text-align: center;
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.6);
            border-top: 1px solid var(--electric-blue);
        }

        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(13, 2, 33, 0.9);
            z-index: 2000;
            justify-content: center;
            align-items: center;
        }

        .modal-content {
            background-color: var(--future-gray);
            padding: 2rem;
            border-radius: 10px;
            max-width: 500px;
            width: 90%;
            text-align: center;
            border: 1px solid var(--electric-blue);
            box-shadow: 0 0 30px rgba(5, 217, 232, 0.5);
            position: relative;
            animation: modalFadeIn 0.5s ease;
        }

        @keyframes modalFadeIn {
            from {
                opacity: 0;
                transform: translateY(-50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .modal h3 {
            color: var(--electric-blue);
            margin-bottom: 1rem;
            font-size: 1.8rem;
        }

        .modal p {
            margin-bottom: 2rem;
            line-height: 1.6;
        }

        .close-modal {
            position: absolute;
            top: 15px;
            right: 15px;
            font-size: 1.5rem;
            color: var(--electric-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-color: var(--future-gray);
            padding: 1.5rem;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            border-top: 1px solid var(--electric-blue);
            box-shadow: 0 -5px 20px rgba(5, 217, 232, 0.2);
            transform: translateY(100%);
            transition: transform 0.5s ease;
        }

        .cookie-banner.show {
            transform: translateY(0);
        }

        .cookie-text {
            flex: 1;
            min-width: 300px;
            margin-bottom: 1rem;
        }

        .cookie-text p {
            margin-bottom: 0.5rem;
            line-height: 1.6;
        }

        .cookie-text a {
            color: var(--electric-blue);
            text-decoration: none;
        }

        .cookie-text a:hover {
            text-decoration: underline;
        }

        .cookie-buttons {
            display: flex;
            gap: 1rem;
        }

        .cookie-btn {
            padding: 0.5rem 1.5rem;
            border-radius: 30px;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s ease;
        }

        .cookie-accept {
            background: linear-gradient(45deg, var(--neon-pink), var(--cyber-purple));
            color: white;
            border: none;
        }

        .cookie-decline {
            background-color: transparent;
            color: var(--electric-blue);
            border: 1px solid var(--electric-blue);
        }

        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                width: 70%;
                height: 100vh;
                background-color: var(--dark-matter);
                flex-direction: column;
                align-items: center;
                justify-content: center;
                gap: 2rem;
                transition: right 0.5s ease;
                z-index: 1000;
                border-left: 1px solid var(--electric-blue);
            }

            .nav-links.active {
                right: 0;
            }

            .burger {
                display: flex;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .hero p {
                font-size: 1rem;
            }

            .btn {
                display: block;
                width: 100%;
                margin-bottom: 1rem;
            }

            .btn-secondary {
                margin-left: 0;
            }

            .section-title {
                font-size: 2rem;
            }

            .pricing-cards {
                flex-direction: column;
                align-items: center;
            }

            .pricing-card {
                width: 100%;
                max-width: 350px;
            }

            .footer-container {
                grid-template-columns: 1fr;
            }
        }

        /* Parallax effect */
        .parallax {
            background-attachment: fixed;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
        }

        /* Fade-in animations */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

