:root {
            --neon-pink: #ff2a6d;
            --neon-blue: #05d9e8;
            --dark-purple: #1a1a2e;
            --cyber-yellow: #d1f700;
            --matrix-green: #00ff9f;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Courier New', monospace;
        }
        
        body {
            background-color: var(--dark-purple);
            color: white;
            overflow-x: hidden;
            padding-top: 80px;
        }
        
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(26, 26, 46, 0.9);
            backdrop-filter: blur(10px);
            padding: 15px 0;
            z-index: 1000;
            border-bottom: 1px solid var(--neon-pink);
        }
        
        .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-blue);
            text-decoration: none;
            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: white;
            text-decoration: none;
            font-size: 18px;
            transition: all 0.3s;
            position: relative;
        }
        
        nav ul li a:hover {
            color: var(--neon-pink);
        }
        
        nav ul li 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;
        }
        
        nav ul li a:hover::after {
            transform: scaleX(1);
        }
        
        .burger {
            display: none;
            cursor: pointer;
        }
        
        .burger div {
            width: 25px;
            height: 3px;
            background-color: white;
            margin: 5px;
            transition: all 0.3s;
        }
        
        section {
            padding: 80px 20px;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        h1, h2, h3 {
            color: var(--neon-blue);
            margin-bottom: 30px;
            text-shadow: 0 0 10px rgba(5, 217, 232, 0.5);
        }
        
        h1 {
            font-size: 48px;
            line-height: 1.2;
        }
        
        h2 {
            font-size: 36px;
            border-left: 5px solid var(--neon-pink);
            padding-left: 15px;
        }
        
        h3 {
            font-size: 24px;
            color: var(--matrix-green);
        }
        
        p {
            font-size: 18px;
            line-height: 1.6;
            margin-bottom: 20px;
        }
        
        .btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: var(--neon-pink);
            color: white;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
            font-size: 18px;
            box-shadow: 0 0 15px var(--neon-pink);
        }
        
        .btn:hover {
            background-color: var(--matrix-green);
            box-shadow: 0 0 20px var(--matrix-green);
            transform: translateY(-3px);
        }
        
        .btn-secondary {
            background-color: transparent;
            border: 2px solid var(--neon-blue);
            box-shadow: 0 0 15px var(--neon-blue);
        }
        
        .btn-secondary:hover {
            background-color: var(--neon-blue);
            box-shadow: 0 0 20px var(--neon-blue);
        }
        
        /* Hero Section */
        .hero {
            height: calc(100vh - 80px);
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(26, 26, 46, 0.9) 0%, rgba(26, 26, 46, 0.7) 100%);
            z-index: -1;
        }
        
        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: -2;
            opacity: 0.7;
        }
        
        .hero-content {
            max-width: 600px;
        }
        
        .hero p {
            font-size: 20px;
            margin-bottom: 30px;
        }
        
        /* About Section */
        .about {
            background-color: rgba(26, 26, 46, 0.7);
            position: relative;
        }
        
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }
        
        .about-img {
            width: 100%;
            border-radius: 10px;
            box-shadow: 0 0 30px var(--neon-pink);
            transition: transform 0.5s;
        }
        
        .about-img:hover {
            transform: scale(1.05);
        }
        
        /* Products Section */
        .products {
            position: relative;
        }
        
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .product-card {
            background-color: rgba(26, 26, 46, 0.7);
            border-radius: 10px;
            padding: 30px;
            transition: all 0.3s;
            border: 1px solid var(--neon-blue);
        }
        
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px var(--neon-blue);
        }
        
        .product-img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 5px;
            margin-bottom: 20px;
        }
        
        /* Prices Section */
        .prices {
            background-color: rgba(26, 26, 46, 0.7);
        }
        
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .pricing-card {
            background-color: var(--dark-purple);
            border-radius: 10px;
            padding: 30px;
            text-align: center;
            border: 1px solid var(--matrix-green);
            transition: all 0.3s;
        }
        
        .pricing-card:hover {
            transform: scale(1.05);
            box-shadow: 0 0 30px var(--matrix-green);
        }
        
        .price {
            font-size: 36px;
            font-weight: bold;
            color: var(--neon-pink);
            margin: 20px 0;
        }
        
        .price span {
            font-size: 16px;
            color: white;
        }
        
        /* Gallery Section */
        .gallery {
            position: relative;
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }
        
        .gallery-item {
            height: 250px;
            overflow: hidden;
            border-radius: 10px;
            position: relative;
            border: 2px solid var(--neon-blue);
        }
        
        .gallery-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .gallery-item:hover .gallery-img {
            transform: scale(1.1);
        }
        
        /* Feedback Section */
        .feedback {
            background-color: rgba(26, 26, 46, 0.7);
        }
        
        .feedback-slider {
            position: relative;
            overflow: hidden;
            padding: 20px 0;
        }
        
        .feedback-track {
            display: flex;
            transition: transform 0.5s;
        }
        
        .feedback-slide {
            min-width: 100%;
            padding: 0 20px;
        }
        
        .feedback-card {
            background-color: var(--dark-purple);
            padding: 30px;
            border-radius: 10px;
            border: 1px solid var(--neon-pink);
        }
        
        .feedback-author {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .feedback-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            margin-right: 20px;
            border: 2px solid var(--matrix-green);
        }
        
        .feedback-name {
            font-weight: bold;
            color: var(--neon-blue);
        }
        
        .feedback-date {
            color: #aaa;
            font-size: 14px;
        }
        
        .slider-nav {
            display: flex;
            justify-content: center;
            margin-top: 30px;
        }
        
        .slider-dot {
            width: 15px;
            height: 15px;
            border-radius: 50%;
            background-color: #333;
            margin: 0 10px;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .slider-dot.active {
            background-color: var(--neon-blue);
            transform: scale(1.2);
        }
        
        /* FAQ Section */
        .faq-item {
            margin-bottom: 20px;
            border: 1px solid var(--neon-blue);
            border-radius: 10px;
            overflow: hidden;
        }
        
        .faq-question {
            padding: 20px;
            background-color: rgba(5, 217, 232, 0.1);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: bold;
        }
        
        .faq-question::after {
            content: '+';
            font-size: 24px;
            color: var(--neon-blue);
        }
        
        .faq-question.active::after {
            content: '-';
        }
        
        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s, padding 0.3s;
        }
        
        .faq-answer.show {
            padding: 20px;
            max-height: 500px;
        }
        
        /* Contact Form */
        .contact-form {
            max-width: 600px;
            margin: 0 auto;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 10px;
            color: var(--neon-blue);
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 15px;
            background-color: rgba(255, 255, 255, 0.1);
            border: 1px solid var(--neon-blue);
            border-radius: 5px;
            color: white;
            font-size: 16px;
        }
        
        .form-group textarea {
            height: 150px;
            resize: vertical;
        }
        
        /* Disclaimer */
        .disclaimer {
            font-size: 14px;
            color: #aaa;
            padding: 20px;
            background-color: rgba(0, 0, 0, 0.5);
            border-top: 1px solid var(--neon-pink);
        }
        
        /* Footer */
        footer {
            background-color: #0d0d1a;
            padding: 50px 20px 20px;
            border-top: 1px solid var(--neon-blue);
        }
        
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
        }
        
        .footer-logo {
            font-size: 24px;
            font-weight: bold;
            color: var(--neon-blue);
            margin-bottom: 20px;
            display: block;
        }
        
        .footer-links h3 {
            color: var(--matrix-green);
            margin-bottom: 20px;
            font-size: 20px;
        }
        
        .footer-links ul {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: white;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: var(--neon-pink);
        }
        
        .contact-info p {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }
        
        .contact-info i {
            margin-right: 10px;
            color: var(--neon-blue);
        }
        
        .copyright {
            text-align: center;
            margin-top: 50px;
            padding-top: 20px;
            border-top: 1px solid #333;
            color: #aaa;
        }
        
        /* Cookie Banner */
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: var(--dark-purple);
            padding: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-top: 2px solid var(--neon-blue);
            z-index: 1000;
            transform: translateY(100%);
            transition: transform 0.5s;
        }
        
        .cookie-banner.show {
            transform: translateY(0);
        }
        
        .cookie-text {
            max-width: 800px;
        }
        
        .cookie-btn {
            margin-left: 20px;
            white-space: nowrap;
        }
        
        /* Modal */
        .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;
        }
        
        .modal.show {
            opacity: 1;
            visibility: visible;
        }
        
        .modal-content {
            background-color: var(--dark-purple);
            padding: 40px;
            border-radius: 10px;
            max-width: 500px;
            width: 90%;
            text-align: center;
            border: 2px solid var(--neon-pink);
            position: relative;
        }
        
        .close-modal {
            position: absolute;
            top: 15px;
            right: 15px;
            font-size: 24px;
            cursor: pointer;
            color: var(--neon-blue);
        }
        
        /* Animations */
        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
            100% { transform: translateY(0px); }
        }
        
        .floating {
            animation: float 6s ease-in-out infinite;
        }
        
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s, transform 0.6s;
        }
        
        .fade-in.show {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            h1 {
                font-size: 36px;
            }
            
            h2 {
                font-size: 30px;
            }
            
            .about-grid {
                grid-template-columns: 1fr;
            }
            
            .about-img {
                order: -1;
            }
        }
        
        @media (max-width: 768px) {
            nav {
                position: fixed;
                top: 80px;
                left: 0;
                width: 100%;
                background-color: var(--dark-purple);
                padding: 20px;
                transform: translateX(100%);
                transition: transform 0.3s;
                z-index: 999;
            }
            
            nav.active {
                transform: translateX(0);
            }
            
            nav ul {
                flex-direction: column;
            }
            
            nav ul li {
                margin: 15px 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);
            }
            
            .cookie-banner {
                flex-direction: column;
                text-align: center;
            }
            
            .cookie-btn {
                margin: 15px 0 0;
            }
        }
        
        @media (max-width: 576px) {
            h1 {
                font-size: 30px;
            }
            
            h2 {
                font-size: 26px;
            }
            
            section {
                padding: 60px 15px;
            }
            
            .hero {
                height: auto;
                min-height: calc(100vh - 80px);
                padding: 60px 0;
            }
        }

