:root {
            --neon-purple: #bc13fe;
            --neon-blue: #0ff0fc;
            --neon-pink: #ff44cc;
            --dark-bg: #0a0a12;
            --dark-card: #12121f;
            --text-light: #f0f0f0;
            --text-muted: #a0a0b0;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {background-color: var(--dark-bg);
            color: var(--text-light);
            line-height: 1.6;
            overflow-x: hidden;}
        
        main {
            padding: 40px 20px;
            max-width: 1000px;
            margin: 0 auto;
        }
        
        h1, h2, h3 {
            font-family: 'Courier New', Courier, monospace;
            font-weight: 700;
            margin: 2rem 0 1rem;
            text-transform: uppercase;
        }
        
        h1 {
            font-size: 2.5rem;
            color: var(--neon-blue);
            text-shadow: 0 0 5px var(--neon-blue);
        }
        
        h2 {
            font-size: 1.8rem;
            color: var(--neon-pink);
        }
        
        h3 {
            font-size: 1.4rem;
            color: var(--neon-purple);
        }
        
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }
        
        ul, ol {
            margin-bottom: 1.5rem;
            padding-left: 1.5rem;
        }
        
        li {
            margin-bottom: 0.5rem;
        }
        
        a {
            color: var(--neon-blue);
            text-decoration: none;
        }
        
        a:hover {
            color: var(--neon-pink);
        }
        
        .last-updated {
            color: var(--text-muted);
            font-style: italic;
            margin-bottom: 2rem;
        }
        
        .section {
            margin-bottom: 3rem;
            padding: 20px;
            background: var(--dark-card);
            border: 1px solid var(--neon-pink);
            box-shadow: 0 0 10px rgba(255, 68, 204, 0.2);
        }
        
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
        }
        
        th, td {
            padding: 12px 15px;
            text-align: left;
            border-bottom: 1px solid rgba(255, 68, 204, 0.3);
        }
        
        th {
            background-color: rgba(255, 68, 204, 0.1);
            color: var(--neon-pink);
        }
:root {
            --neon-purple: #bc13fe;
            --neon-blue: #0ff0fc;
            --neon-pink: #ff44cc;
            --dark-bg: #0a0a12;
            --dark-card: #12121f;
            --text-light: #f0f0f0;
            --text-muted: #a0a0b0;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {background-color: var(--dark-bg);
            color: var(--text-light);
            line-height: 1.6;
            overflow-x: hidden;
            padding-top: 80px;}
        
        h1, h2, h3, h4 {
            font-family: 'Courier New', Courier, monospace;
            font-weight: 700;
            margin-bottom: 1rem;
            text-transform: uppercase;
        }
        
        h1 {
            font-size: 3.5rem;
            color: var(--neon-blue);
            text-shadow: 0 0 10px var(--neon-blue);
            letter-spacing: 2px;
        }
        
        h2 {
            font-size: 2.5rem;
            color: var(--neon-pink);
            text-shadow: 0 0 5px var(--neon-pink);
        }
        
        h3 {
            font-size: 1.8rem;
            color: var(--neon-purple);
        }
        
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }
        
        a {
            color: var(--neon-blue);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        a:hover {
            color: var(--neon-pink);
            text-shadow: 0 0 5px var(--neon-pink);
        }
        
        .container {
            width: 100%;
            padding: 0 20px;
            margin: 0 auto;
        }
        
        @media (min-width: 768px) {
            .container {
                max-width: 720px;
            }
        }
        
        @media (min-width: 992px) {
            .container {
                max-width: 960px;
            }
        }
        
        @media (min-width: 1200px) {
            .container {
                max-width: 1140px;
            }
        }
        
        section {
            padding: 80px 0;
            position: relative;
        }
        
        .btn {
            display: inline-block;
            padding: 12px 30px;
            background: transparent;
            color: var(--neon-purple);
            border: 2px solid var(--neon-purple);
            border-radius: 0;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 0 10px var(--neon-purple);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .btn:hover {
            color: var(--dark-bg);
            box-shadow: 0 0 20px var(--neon-purple);
        }
        
        .btn:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: var(--neon-purple);
            transition: all 0.4s ease;
            z-index: -1;
        }
        
        .btn:hover:before {
            left: 0;
        }
        
        /* Header */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(10, 10, 18, 0.9);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--neon-purple);
            box-shadow: 0 0 15px rgba(188, 19, 254, 0.3);
            z-index: 1000;
            padding: 15px 0;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 20px;
        }
        
        .logo {
            font-family: 'Courier New', Courier, monospace;
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--neon-blue);
            text-shadow: 0 0 5px var(--neon-blue);
            text-decoration: none;
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
        }
        
        .nav-menu li {
            margin-left: 30px;
        }
        
        .nav-menu a {
            font-weight: 600;
            font-size: 1.1rem;
        }
        
        .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;
            background: linear-gradient(rgba(10, 10, 18, 0.8), rgba(10, 10, 18, 0.9)), url('https://images.unsplash.com/photo-1538356390198-964cc56764d5?q=80&w=1173&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') no-repeat center center/cover;
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 50% 50%, var(--neon-purple), transparent 70%);
            opacity: 0.1;
            animation: pulse 10s infinite alternate;
        }
        
        @keyframes pulse {
            0% { opacity: 0.1; transform: scale(1); }
            50% { opacity: 0.2; transform: scale(1.1); }
            100% { opacity: 0.1; transform: scale(1); }
        }
        
        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 800px;
        }
        
        .hero p {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            color: var(--text-light);
        }
        
        /* About Section */
        .about {
            background-color: var(--dark-card);
            position: relative;
        }
        
        .about::before {
            content: '';
            position: absolute;
            top: -50px;
            left: 0;
            width: 100%;
            height: 100px;
            background: linear-gradient(to bottom, transparent, var(--dark-card));
        }
        
        .about-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 30px;
        }
        
        @media (min-width: 768px) {
            .about-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        .about-card {
            background: rgba(18, 18, 31, 0.8);
            border: 1px solid var(--neon-blue);
            box-shadow: 0 0 15px rgba(15, 240, 252, 0.2);
            padding: 30px;
            transition: all 0.3s ease;
        }
        
        .about-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 0 25px rgba(15, 240, 252, 0.4);
        }
        
        /* Products Section */
        .products-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 30px;
        }
        
        @media (min-width: 768px) {
            .products-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (min-width: 992px) {
            .products-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        
        .product-card {
            background: var(--dark-card);
            border: 1px solid var(--neon-pink);
            box-shadow: 0 0 15px rgba(255, 68, 204, 0.2);
            padding: 30px;
            transition: all 0.3s ease;
            height: 100%;
        }
        
        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 0 25px rgba(255, 68, 204, 0.4);
        }
        
        /* Prices Section */
        .prices-table {
            width: 100%;
            border-collapse: collapse;
            margin: 30px 0;
            background: var(--dark-card);
            border: 1px solid var(--neon-purple);
            box-shadow: 0 0 15px rgba(188, 19, 254, 0.2);
        }
        
        .prices-table th, .prices-table td {
            padding: 15px;
            text-align: left;
            border-bottom: 1px solid rgba(188, 19, 254, 0.3);
        }
        
        .prices-table th {
            background-color: rgba(188, 19, 254, 0.1);
            color: var(--neon-purple);
            font-weight: bold;
        }
        
        .prices-table tr:last-child td {
            border-bottom: none;
        }
        
        .prices-table tr:hover {
            background-color: rgba(188, 19, 254, 0.05);
        }
        
        /* Gallery Section */
        .gallery {
            background-color: var(--dark-card);
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 20px;
        }
        
        @media (min-width: 576px) {
            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (min-width: 992px) {
            .gallery-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }
        
        .gallery-item {
            position: relative;
            overflow: hidden;
            height: 250px;
            border: 1px solid var(--neon-blue);
            box-shadow: 0 0 10px rgba(15, 240, 252, 0.2);
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.5s ease;
        }
        
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        
        /* Feedback Section */
        .feedback-slider {
            position: relative;
            overflow: hidden;
            padding: 20px 0;
        }
        
        .slides {
            display: flex;
            transition: transform 0.5s ease;
        }
        
        .slide {
            min-width: 100%;
            padding: 0 15px;
        }
        
        .feedback-card {
            background: var(--dark-card);
            border: 1px solid var(--neon-pink);
            box-shadow: 0 0 15px rgba(255, 68, 204, 0.2);
            padding: 30px;
            height: 100%;
        }
        
        .client-info {
            display: flex;
            align-items: center;
            margin-top: 20px;
        }
        
        .client-img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 15px;
            border: 2px solid var(--neon-blue);
        }
        
        .client-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .slider-controls {
            display: flex;
            justify-content: center;
            margin-top: 30px;
        }
        
        .slider-btn {
            background: transparent;
            border: 2px solid var(--neon-purple);
            color: var(--neon-purple);
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            margin: 0 10px;
            transition: all 0.3s ease;
        }
        
        .slider-btn:hover {
            background: var(--neon-purple);
            color: var(--dark-bg);
        }
        
        /* FAQ Section */
        .faq-item {
            margin-bottom: 20px;
            border: 1px solid var(--neon-blue);
            background: var(--dark-card);
        }
        
        .faq-question {
            padding: 20px;
            cursor: pointer;
            position: relative;
            font-weight: bold;
            font-size: 1.2rem;
        }
        
        .faq-question::after {
            content: '+';
            position: absolute;
            right: 20px;
            transition: transform 0.3s ease;
        }
        
        .faq-question.active::after {
            content: '-';
            transform: rotate(0deg);
        }
        
        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
        }
        
        .faq-question.active + .faq-answer {
            padding: 20px;
            max-height: 500px;
        }
        
        /* Contact Section */
        .contact {
            background-color: var(--dark-card);
        }
        
        .contact-form {
            max-width: 600px;
            margin: 0 auto;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: bold;
        }
        
        .form-control {
            width: 100%;
            padding: 12px 15px;
            background: rgba(10, 10, 18, 0.5);
            border: 1px solid var(--neon-purple);
            color: var(--text-light);
            font-size: 1rem;
        }
        
        .form-control:focus {
            outline: none;
            border-color: var(--neon-blue);
            box-shadow: 0 0 10px rgba(15, 240, 252, 0.5);
        }
        
        /* Disclaimer */
        .disclaimer {
            padding: 30px 0;
            background-color: var(--dark-bg);
            border-top: 1px solid var(--neon-purple);
            font-size: 0.9rem;
            color: var(--text-muted);
        }
        
        /* Cookie Banner */
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: var(--dark-card);
            border-top: 1px solid var(--neon-blue);
            padding: 20px;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.3);
            transform: translateY(100%);
            transition: transform 0.5s ease;
        }
        
        .cookie-banner.show {
            transform: translateY(0);
        }
        
        .cookie-content {
            flex: 1;
            min-width: 300px;
            margin-right: 20px;
        }
        
        .cookie-banner .btn {
            margin: 10px;
        }
        
        /* Footer */
        footer {
            background-color: var(--dark-bg);
            border-top: 1px solid var(--neon-purple);
            padding: 50px 0 20px;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 30px;
        }
        
        @media (min-width: 768px) {
            .footer-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        
        .footer-logo {
            font-family: 'Courier New', Courier, monospace;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--neon-blue);
            text-shadow: 0 0 5px var(--neon-blue);
            margin-bottom: 15px;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-contact p {
            margin-bottom: 10px;
            display: flex;
            align-items: center;
        }
        
        .footer-bottom {
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid rgba(188, 19, 254, 0.3);
            text-align: center;
            font-size: 0.9rem;
            color: var(--text-muted);
        }
        
        /* Modal */
        .modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(10, 10, 18, 0.9);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        
        .modal.show {
            opacity: 1;
            visibility: visible;
        }
        
        .modal-content {
            background: var(--dark-card);
            border: 2px solid var(--neon-blue);
            box-shadow: 0 0 30px rgba(15, 240, 252, 0.5);
            padding: 40px;
            max-width: 500px;
            width: 100%;
            text-align: center;
            position: relative;
        }
        
        .close-modal {
            position: absolute;
            top: 10px;
            right: 10px;
            background: transparent;
            border: none;
            color: var(--neon-blue);
            font-size: 1.5rem;
            cursor: pointer;
        }
        
        /* Animations */
        .fade-in {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.5s ease, transform 0.5s ease;
        }
        
        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Parallax effect */
        .parallax {
            background-attachment: fixed;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            h1 {
                font-size: 2.5rem;
            }
            
            h2 {
                font-size: 2rem;
            }
            
            .nav-menu {
                position: fixed;
                top: 80px;
                right: -100%;
                width: 70%;
                height: calc(100vh - 80px);
                background: var(--dark-card);
                flex-direction: column;
                align-items: center;
                justify-content: flex-start;
                padding-top: 50px;
                transition: right 0.5s ease;
                border-left: 1px solid var(--neon-purple);
            }
            
            .nav-menu.active {
                right: 0;
            }
            
            .nav-menu li {
                margin: 15px 0;
            }
            
            .burger {
                display: block;
            }
            
            .burger.active div:nth-child(1) {
                transform: rotate(45deg) translate(5px, 5px);
            }
            
            .burger.active div:nth-child(2) {
                opacity: 0;
            }
            
            .burger.active div:nth-child(3) {
                transform: rotate(-45deg) translate(5px, -5px);
            }
        }

