:root {
            --neon-green: #00ff41;
            --neon-blue: #00b3ff;
            --neon-pink: #ff00a0;
            --dark-bg: #0a0a0a;
            --dark-card: #121212;
            --text-color: #e0e0e0;
        }
        
        * {
            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;
            overflow-x: hidden;
            background-image: 
                radial-gradient(circle at 10% 20%, rgba(0, 255, 65, 0.05) 0%, transparent 20%),
                radial-gradient(circle at 90% 60%, rgba(0, 179, 255, 0.05) 0%, transparent 20%);
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header Styles */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(10, 10, 10, 0.9);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--neon-green);
            z-index: 1000;
            padding: 15px 0;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 24px;
            font-weight: bold;
            color: var(--neon-green);
            text-decoration: none;
            text-shadow: 0 0 5px var(--neon-green);
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
        }
        
        .nav-menu li {
            margin-left: 30px;
        }
        
        .nav-menu a {
            color: var(--text-color);
            text-decoration: none;
            font-size: 16px;
            transition: color 0.3s;
            position: relative;
        }
        
        .nav-menu a:hover {
            color: var(--neon-blue);
        }
        
        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 1px;
            background-color: var(--neon-blue);
            transition: width 0.3s;
        }
        
        .nav-menu a:hover::after {
            width: 100%;
        }
        
        .burger {
            display: none;
            cursor: pointer;
        }
        
        .burger div {
            width: 25px;
            height: 3px;
            background-color: var(--neon-green);
            margin: 5px;
            transition: all 0.3s ease;
        }
        
        /* Hero Section */
        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            padding-top: 70px;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(0, 255, 65, 0.1), rgba(0, 179, 255, 0.1));
            z-index: -1;
        }
        
        .hero-content {
            text-align: center;
            z-index: 1;
            animation: fadeIn 1.5s ease-out;
        }
        
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            color: var(--neon-green);
            text-shadow: 0 0 10px var(--neon-green);
        }
        
        .hero p {
            font-size: 1.5rem;
            margin-bottom: 30px;
            max-width: 800px;
        }
        
        .btn {
            display: inline-block;
            padding: 12px 30px;
            background: transparent;
            color: var(--neon-blue);
            border: 1px solid var(--neon-blue);
            text-decoration: none;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s;
            text-transform: uppercase;
            letter-spacing: 2px;
            position: relative;
            overflow: hidden;
        }
        
        .btn:hover {
            color: var(--dark-bg);
            background-color: var(--neon-blue);
            box-shadow: 0 0 15px var(--neon-blue);
        }
        
        /* Sections Common */
        section {
            padding: 80px 0;
            opacity: 0;
            transform: translateY(50px);
            transition: opacity 1s, transform 1s;
        }
        
        section.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
            color: var(--neon-pink);
            font-size: 2.5rem;
            text-shadow: 0 0 5px var(--neon-pink);
        }
        
        /* About Section */
        .about-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
        }
        
        .about-text {
            flex: 1;
            min-width: 300px;
            padding-right: 30px;
        }
        
        .about-image {
            flex: 1;
            min-width: 300px;
            height: 400px;
            background-color: var(--dark-card);
            border: 1px solid var(--neon-green);
            box-shadow: 0 0 15px rgba(0, 255, 65, 0.2);
            position: relative;
            overflow: hidden;
        }
        
        .about-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .about-image:hover img {
            transform: scale(1.05);
        }
        
        /* Products Section */
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .product-card {
            background-color: var(--dark-card);
            border: 1px solid var(--neon-blue);
            padding: 30px;
            border-radius: 5px;
            transition: transform 0.3s, box-shadow 0.3s;
            height: 100%;
        }
        
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 0 20px rgba(0, 179, 255, 0.3);
        }
        
        .product-card h3 {
            color: var(--neon-blue);
            margin-bottom: 15px;
            font-size: 1.5rem;
        }
        
        /* Prices Section */
        .pricing-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
        }
        
        .pricing-card {
            background-color: var(--dark-card);
            border: 1px solid var(--neon-pink);
            padding: 30px;
            border-radius: 5px;
            flex: 1;
            min-width: 250px;
            max-width: 350px;
            text-align: center;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .pricing-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 0 20px rgba(255, 0, 160, 0.3);
        }
        
        .price {
            font-size: 2.5rem;
            color: var(--neon-pink);
            margin: 20px 0;
        }
        
        .pricing-features {
            list-style: none;
            margin: 20px 0;
            text-align: left;
        }
        
        .pricing-features li {
            margin-bottom: 10px;
            position: relative;
            padding-left: 20px;
        }
        
        .pricing-features li::before {
            content: '→';
            color: var(--neon-green);
            position: absolute;
            left: 0;
        }
        
        /* Gallery Section */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 15px;
        }
        
        .gallery-item {
            height: 250px;
            overflow: hidden;
            position: relative;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        
        /* Feedback Section */
        .feedback-slider {
            position: relative;
            overflow: hidden;
            height: 300px;
        }
        
        .feedback-slides {
            display: flex;
            transition: transform 0.5s ease-in-out;
            height: 100%;
        }
        
        .feedback-slide {
            min-width: 100%;
            padding: 30px;
            background-color: var(--dark-card);
            border: 1px solid var(--neon-green);
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .feedback-text {
            font-style: italic;
            margin-bottom: 20px;
        }
        
        .feedback-author {
            font-weight: bold;
            color: var(--neon-blue);
        }
        
        .slider-nav {
            display: flex;
            justify-content: center;
            margin-top: 20px;
        }
        
        .slider-dot {
            width: 12px;
            height: 12px;
            background-color: rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            margin: 0 5px;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        
        .slider-dot.active {
            background-color: var(--neon-green);
        }
        
        /* FAQ Section */
        .faq-item {
            margin-bottom: 20px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            overflow: hidden;
        }
        
        .faq-question {
            padding: 20px;
            background-color: var(--dark-card);
            cursor: pointer;
            position: relative;
            font-weight: bold;
            color: var(--neon-blue);
        }
        
        .faq-question::after {
            content: '+';
            position: absolute;
            right: 20px;
            transition: transform 0.3s;
        }
        
        .faq-item.active .faq-question::after {
            transform: rotate(45deg);
        }
        
        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s, padding 0.3s;
        }
        
        .faq-item.active .faq-answer {
            padding: 20px;
            max-height: 300px;
        }
        
        /* Contact Section */
        .contact-form {
            max-width: 600px;
            margin: 0 auto;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 5px;
            color: var(--neon-green);
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px;
            background-color: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--text-color);
            font-family: inherit;
        }
        
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--neon-blue);
            box-shadow: 0 0 10px rgba(0, 179, 255, 0.3);
        }
        
        textarea {
            min-height: 150px;
            resize: vertical;
        }
        
        /* Modal */
        .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-card);
            padding: 40px;
            text-align: center;
            border: 1px solid var(--neon-green);
            max-width: 500px;
            width: 90%;
        }
        
        .modal h3 {
            color: var(--neon-green);
            margin-bottom: 20px;
            font-size: 1.8rem;
        }
        
        .close-modal {
            margin-top: 20px;
            cursor: pointer;
        }
        
        /* Disclaimer */
        .disclaimer {
            padding: 30px 0;
            background-color: rgba(0, 0, 0, 0.5);
            font-size: 0.9rem;
            text-align: center;
        }
        
        /* Cookie Banner */
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: var(--dark-card);
            padding: 20px;
            border-top: 1px solid var(--neon-pink);
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            z-index: 1500;
            transform: translateY(100%);
            transition: transform 0.5s;
        }
        
        .cookie-banner.visible {
            transform: translateY(0);
        }
        
        .cookie-text {
            flex: 1;
            min-width: 300px;
            margin-right: 20px;
        }
        
        .cookie-buttons {
            display: flex;
            gap: 10px;
        }
        
        .cookie-btn {
            padding: 8px 20px;
            border: none;
            cursor: pointer;
            font-family: inherit;
        }
        
        .cookie-accept {
            background-color: var(--neon-green);
            color: var(--dark-bg);
        }
        
        .cookie-reject {
            background-color: transparent;
            color: var(--text-color);
            border: 1px solid var(--text-color);
        }
        
        /* Footer */
        footer {
            background-color: var(--dark-card);
            padding: 50px 0 20px;
            border-top: 1px solid var(--neon-blue);
        }
        
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin-bottom: 30px;
        }
        
        .footer-column {
            flex: 1;
            min-width: 200px;
            margin-bottom: 30px;
        }
        
        .footer-column h3 {
            color: var(--neon-pink);
            margin-bottom: 20px;
            font-size: 1.2rem;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: var(--text-color);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: var(--neon-blue);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        @keyframes glow {
            0% { text-shadow: 0 0 5px var(--neon-green); }
            50% { text-shadow: 0 0 20px var(--neon-green), 0 0 30px var(--neon-green); }
            100% { text-shadow: 0 0 5px var(--neon-green); }
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .burger {
                display: block;
            }
            
            .nav-menu {
                position: fixed;
                top: 70px;
                right: -100%;
                height: calc(100vh - 70px);
                background-color: var(--dark-bg);
                flex-direction: column;
                align-items: center;
                justify-content: center;
                width: 100%;
                transition: right 0.5s ease;
                border-top: 1px solid var(--neon-green);
            }
            
            .nav-menu.active {
                right: 0;
            }
            
            .nav-menu li {
                margin: 20px 0;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero p {
                font-size: 1.2rem;
            }
            
            .about-content {
                flex-direction: column;
            }
            
            .about-text {
                padding-right: 0;
                margin-bottom: 30px;
            }
        }

