:root {
            --neon-blue: #00f3ff;
            --neon-pink: #ff00ff;
            --neon-green: #39ff14;
            --dark-bg: #0a0a12;
            --dark-purple: #16003a;
            --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;
            
            background-image: 
                linear-gradient(rgba(10, 10, 18, 0.9), rgba(10, 10, 18, 0.9)),
                url('https://images.unsplash.com/photo-1627906732995-61e4c11260c8?q=80&w=1170&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
            background-attachment: fixed;
            background-size: cover;
            background-position: center;}
        
        .container {
            width: 90%;
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        main {
            background: rgba(10, 10, 18, 0.8);
            border: 1px solid var(--neon-blue);
            border-radius: 10px;
            padding: 40px;
            margin: 20px auto;
        }
        
        h1 {
            text-align: center;
            margin-bottom: 30px;
            font-size: 2.5rem;
            background: linear-gradient(45deg, var(--neon-blue), var(--neon-pink));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 0 5px rgba(0, 243, 255, 0.5);
        }
        
        h2 {
            color: var(--neon-green);
            margin: 25px 0 15px;
            font-size: 1.8rem;
        }
        
        h3 {
            color: var(--neon-blue);
            margin: 20px 0 10px;
            font-size: 1.4rem;
        }
        
        p {
            margin-bottom: 15px;
        }
        
        ul {
            padding-left: 20px;
            margin-bottom: 20px;
        }
        
        li {
            margin-bottom: 8px;
        }
        
        .last-updated {
            text-align: right;
            font-style: italic;
            margin-bottom: 30px;
            color: var(--neon-pink);
        }
        
        @media screen and (max-width: 768px) {
            main {
                padding: 20px;
            }
            
            h1 {
                font-size: 2rem;
            }
        }
:root {
            --neon-blue: #00f3ff;
            --neon-pink: #ff00ff;
            --neon-green: #39ff14;
            --dark-bg: #0a0a12;
            --dark-purple: #16003a;
            --text-color: #e0e0e0;
            --accent-yellow: #ffee00;
        }
        
        * {
            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: 
                linear-gradient(rgba(10, 10, 18, 0.9), rgba(10, 10, 18, 0.9)),
                url('https://images.unsplash.com/photo-1533545587081-bbdccaab0c33?q=80&w=1170&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
            background-attachment: fixed;
            background-size: cover;
            background-position: center;}
        
        .container {
            width: 90%;
            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, 18, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--neon-blue);
            z-index: 1000;
            padding: 15px 0;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            display: flex;
            align-items: center;
        }
        
        .logo-text {
            font-size: 24px;
            font-weight: bold;
            background: linear-gradient(45deg, var(--neon-blue), var(--neon-pink));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 0 5px rgba(0, 243, 255, 0.5);
        }
        
        .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: all 0.3s ease;
            position: relative;
        }
        
        .nav-menu a:hover {
            color: var(--neon-blue);
        }
        
        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--neon-blue);
            transition: width 0.3s ease;
        }
        
        .nav-menu a:hover::after {
            width: 100%;
        }
        
        .burger {
            display: none;
            cursor: pointer;
        }
        
        .burger div {
            width: 25px;
            height: 3px;
            background-color: var(--neon-blue);
            margin: 5px;
            transition: all 0.3s ease;
        }
        
        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding-top: 80px;
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at center, rgba(0, 243, 255, 0.1) 0%, transparent 70%);
        }
        
        .hero-content {
            position: relative;
            z-index: 1;
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            background: linear-gradient(45deg, var(--neon-blue), var(--neon-pink), var(--neon-green));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 0 10px rgba(0, 243, 255, 0.5);
        }
        
        .hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            color: var(--text-color);
        }
        
        .btn {
            display: inline-block;
            padding: 12px 30px;
            background: transparent;
            color: var(--neon-blue);
            border: 1px solid var(--neon-blue);
            text-decoration: none;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(0, 243, 255, 0.2), transparent);
            transition: all 0.5s ease;
            z-index: -1;
        }
        
        .btn:hover::before {
            left: 100%;
        }
        
        .btn:hover {
            background-color: rgba(0, 243, 255, 0.1);
            box-shadow: 0 0 15px var(--neon-blue);
        }
        
        /* Sections Common Styles */
        section {
            padding: 80px 0;
            position: relative;
        }
        
        section:nth-child(even) {
            background-color: rgba(22, 0, 58, 0.3);
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
            position: relative;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            display: inline-block;
            padding-bottom: 10px;
            color: var(--neon-green);
            text-shadow: 0 0 5px var(--neon-green);
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background: linear-gradient(90deg, transparent, var(--neon-green), transparent);
        }
        
        /* About Section */
        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }
        
        .about-text h3 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: var(--neon-pink);
        }
        
        .about-text p {
            margin-bottom: 15px;
        }
        
        .about-image {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 0 20px var(--neon-pink);
        }
        
        .about-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }
        
        .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: rgba(10, 10, 18, 0.7);
            border: 1px solid var(--neon-blue);
            border-radius: 10px;
            padding: 30px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .product-card::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            z-index: -1;
            background: linear-gradient(45deg, var(--neon-blue), transparent, var(--neon-pink));
            border-radius: 10px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .product-card:hover::before {
            opacity: 1;
        }
        
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 20px rgba(0, 243, 255, 0.2);
        }
        
        .product-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--neon-blue);
        }
        
        .product-icon {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: var(--neon-pink);
        }
        
        /* Prices Section */
        .pricing-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .pricing-card {
            background: rgba(10, 10, 18, 0.7);
            border: 1px solid var(--neon-green);
            border-radius: 10px;
            padding: 30px;
            text-align: center;
            transition: all 0.3s ease;
        }
        
        .pricing-card.featured {
            border: 2px solid var(--neon-pink);
            transform: scale(1.05);
            box-shadow: 0 0 20px rgba(255, 0, 255, 0.3);
        }
        
        .pricing-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--neon-green);
        }
        
        .price {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: var(--neon-pink);
            font-weight: bold;
        }
        
        .price span {
            font-size: 1rem;
            color: var(--text-color);
        }
        
        .pricing-features {
            list-style: none;
            margin-bottom: 25px;
        }
        
        .pricing-features li {
            padding: 8px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        /* Gallery Section */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }
        
        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            height: 250px;
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        
        .gallery-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
            padding: 20px;
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }
        
        .gallery-item:hover .gallery-overlay {
            transform: translateY(0);
        }
        
        /* Feedback Section */
        .feedback-slider {
            position: relative;
            overflow: hidden;
            padding: 20px 0;
        }
        
        .feedback-track {
            display: flex;
            transition: transform 0.5s ease;
        }
        
        .feedback-slide {
            min-width: 100%;
            padding: 0 20px;
        }
        
        .feedback-card {
            background: rgba(10, 10, 18, 0.7);
            border: 1px solid var(--neon-blue);
            border-radius: 10px;
            padding: 30px;
            position: relative;
        }
        
        .feedback-card::before {
            content: '"';
            font-size: 5rem;
            position: absolute;
            top: -20px;
            left: 20px;
            color: rgba(0, 243, 255, 0.2);
        }
        
        .feedback-text {
            margin-bottom: 20px;
            font-style: italic;
        }
        
        .feedback-author {
            display: flex;
            align-items: center;
        }
        
        .author-image {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 15px;
            border: 2px solid var(--neon-pink);
        }
        
        .author-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .author-info h4 {
            color: var(--neon-green);
            margin-bottom: 5px;
        }
        
        .slider-nav {
            display: flex;
            justify-content: center;
            margin-top: 30px;
        }
        
        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            margin: 0 5px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .slider-dot.active {
            background: var(--neon-blue);
            transform: scale(1.2);
        }
        
        /* FAQ Section */
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .faq-item {
            margin-bottom: 20px;
            border: 1px solid rgba(0, 243, 255, 0.3);
            border-radius: 10px;
            overflow: hidden;
        }
        
        .faq-question {
            padding: 20px;
            background: rgba(10, 10, 18, 0.5);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 1.2rem;
            color: var(--neon-blue);
        }
        
        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            background: rgba(10, 10, 18, 0.3);
        }
        
        .faq-item.active .faq-answer {
            padding: 20px;
            max-height: 500px;
        }
        
        /* Contact Section */
        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        }
        
        .contact-info h3 {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: var(--neon-pink);
        }
        
        .contact-details {
            list-style: none;
        }
        
        .contact-details li {
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }
        
        .contact-details i {
            margin-right: 10px;
            color: var(--neon-green);
            font-size: 1.2rem;
        }
        
        .contact-form {
            background: rgba(10, 10, 18, 0.7);
            border: 1px solid var(--neon-blue);
            border-radius: 10px;
            padding: 30px;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: var(--neon-green);
        }
        
        .form-control {
            width: 100%;
            padding: 12px 15px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(0, 243, 255, 0.3);
            border-radius: 5px;
            color: var(--text-color);
            transition: all 0.3s ease;
        }
        
        .form-control:focus {
            outline: none;
            border-color: var(--neon-blue);
            box-shadow: 0 0 10px rgba(0, 243, 255, 0.3);
        }
        
        textarea.form-control {
            min-height: 120px;
            resize: vertical;
        }
        
        /* Disclaimer */
        .disclaimer {
            padding: 30px 0;
            background: rgba(0, 0, 0, 0.5);
            font-size: 0.9rem;
        }
        
        .disclaimer p {
            margin-bottom: 15px;
        }
        
        /* Cookie Banner */
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--dark-purple);
            padding: 20px;
            box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.5);
            z-index: 1000;
            transform: translateY(100%);
            transition: transform 0.5s ease;
        }
        
        .cookie-banner.show {
            transform: translateY(0);
        }
        
        .cookie-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .cookie-text {
            flex: 1;
            padding-right: 20px;
        }
        
        .cookie-buttons {
            display: flex;
        }
        
        .cookie-btn {
            margin-left: 10px;
            padding: 8px 20px;
            cursor: pointer;
        }
        
        /* Footer */
        footer {
            background: var(--dark-purple);
            padding: 60px 0 30px;
        }
        
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
        }
        
        .footer-col h3 {
            font-size: 1.2rem;
            margin-bottom: 20px;
            color: var(--neon-blue);
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-col h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background: var(--neon-blue);
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: var(--text-color);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .footer-links a:hover {
            color: var(--neon-blue);
            padding-left: 5px;
        }
        
        .copyright {
            text-align: center;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        /* Modal */
        .modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 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: var(--dark-bg);
            border: 1px solid var(--neon-pink);
            border-radius: 10px;
            padding: 40px;
            text-align: center;
            max-width: 500px;
            width: 90%;
            position: relative;
            transform: translateY(50px);
            transition: transform 0.5s ease;
        }
        
        .modal.show .modal-content {
            transform: translateY(0);
        }
        
        .modal-close {
            position: absolute;
            top: 15px;
            right: 15px;
            background: none;
            border: none;
            color: var(--text-color);
            font-size: 1.5rem;
            cursor: pointer;
            transition: color 0.3s ease;
        }
        
        .modal-close:hover {
            color: var(--neon-pink);
        }
        
        /* Responsive Styles */
        @media screen and (max-width: 992px) {
            .about-content,
            .contact-container {
                grid-template-columns: 1fr;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
        }
        
        @media screen and (max-width: 768px) {
            .nav-menu {
                position: fixed;
                top: 70px;
                right: -100%;
                width: 70%;
                height: calc(100vh - 70px);
                background: var(--dark-purple);
                flex-direction: column;
                align-items: center;
                justify-content: center;
                transition: right 0.5s ease;
                z-index: 999;
            }
            
            .nav-menu.active {
                right: 0;
            }
            
            .nav-menu li {
                margin: 20px 0;
            }
            
            .burger {
                display: block;
            }
            
            .burger.active div:nth-child(1) {
                transform: rotate(45deg) translate(5px, 8px);
            }
            
            .burger.active div:nth-child(2) {
                opacity: 0;
            }
            
            .burger.active div:nth-child(3) {
                transform: rotate(-45deg) translate(5px, -8px);
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .cookie-content {
                flex-direction: column;
                text-align: center;
            }
            
            .cookie-text {
                padding-right: 0;
                margin-bottom: 15px;
            }
            
            .cookie-buttons {
                justify-content: center;
            }
        }
        
        /* Animations */
        @keyframes glow {
            0% {
                box-shadow: 0 0 5px var(--neon-blue);
            }
            50% {
                box-shadow: 0 0 20px var(--neon-blue), 0 0 30px var(--neon-blue);
            }
            100% {
                box-shadow: 0 0 5px var(--neon-blue);
            }
        }
        
        .animate-glow {
            animation: glow 2s infinite;
        }
        
        .fade-in {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.5s ease, transform 0.5s ease;
        }
        
        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

