:root {
            --neon-pink: #ff2d95;
            --neon-blue: #0ff0fc;
            --neon-purple: #8a2be2;
            --dark-bg: #0a0a12;
            --darker-bg: #050508;
            --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;}
        
        main {
            max-width: 800px;
            margin: 40px auto;
            background: rgba(15, 15, 25, 0.7);
            padding: 30px;
            border-radius: 10px;
            border: 1px solid var(--neon-purple);
        }
        
        h1 {
            color: var(--neon-blue);
            text-align: center;
            margin-bottom: 30px;
            text-shadow: 0 0 5px var(--neon-blue);
        }
        
        h2 {
            color: var(--neon-pink);
            margin: 20px 0 10px;
        }
        
        p, ul, ol {
            margin-bottom: 15px;
        }
        
        ul, ol {
            padding-left: 20px;
        }
        
        .last-updated {
            text-align: right;
            font-style: italic;
            margin-bottom: 30px;
            color: var(--neon-blue);
        }
:root {
            --neon-pink: #ff2d95;
            --neon-blue: #0ff0fc;
            --neon-purple: #8a2be2;
            --dark-bg: #0a0a12;
            --darker-bg: #050508;
            --text-color: #e0e0e0;
            --accent-yellow: #f2e635;
        }
        
        * {
            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(255, 45, 149, 0.1) 0%, transparent 20%),
                radial-gradient(circle at 90% 60%, rgba(15, 240, 252, 0.1) 0%, transparent 20%);}
        
        .container {
            width: 100%;
            padding: 0 15px;
            margin: 0 auto;
        }
        
        /* Header Styles */
        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);
            z-index: 1000;
            padding: 15px 0;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .logo {
            font-size: 24px;
            font-weight: bold;
            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 {
            color: var(--text-color);
            text-decoration: none;
            font-size: 16px;
            transition: color 0.3s;
            position: relative;
        }
        
        .nav-menu a:hover {
            color: var(--neon-pink);
        }
        
        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--neon-pink);
            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-blue);
            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(10, 10, 18, 0.8), rgba(10, 10, 18, 0.9));
            z-index: -1;
        }
        
        .hero-content {
            text-align: center;
            max-width: 800px;
            padding: 0 20px;
            z-index: 1;
        }
        
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            color: var(--neon-blue);
            text-shadow: 0 0 10px var(--neon-blue);
            animation: flicker 5s infinite alternate;
        }
        
        .hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            color: var(--text-color);
        }
        
        .btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: transparent;
            color: var(--neon-pink);
            border: 2px solid var(--neon-pink);
            text-decoration: none;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 2px;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .btn:hover {
            color: var(--dark-bg);
        }
        
        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: var(--neon-pink);
            transition: all 0.4s;
            z-index: -1;
        }
        
        .btn:hover::before {
            left: 0;
        }
        
        /* Sections Common */
        section {
            padding: 80px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
            color: var(--neon-blue);
            font-size: 2.5rem;
            text-shadow: 0 0 5px var(--neon-blue);
        }
        
        /* About Section */
        .about-content {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .about-text {
            flex: 1;
            min-width: 300px;
            padding: 20px;
        }
        
        .about-image {
            flex: 1;
            min-width: 300px;
            padding: 20px;
            text-align: center;
        }
        
        .about-image img {
            max-width: 100%;
            border-radius: 10px;
            box-shadow: 0 0 20px var(--neon-purple);
            transition: transform 0.5s;
        }
        
        .about-image img:hover {
            transform: scale(1.03);
        }
        
        /* Products Section */
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .product-card {
            background: rgba(15, 15, 25, 0.7);
            border: 1px solid var(--neon-purple);
            border-radius: 10px;
            padding: 20px;
            text-align: center;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 20px rgba(138, 43, 226, 0.3);
        }
        
        .product-card img {
            max-width: 100%;
            border-radius: 8px;
            margin-bottom: 15px;
        }
        
        .product-card h3 {
            color: var(--neon-pink);
            margin-bottom: 10px;
        }
        
        /* Prices Section */
        .prices-container {
            max-width: 1000px;
            margin: 0 auto;
        }
        
        .price-table {
            width: 100%;
            border-collapse: collapse;
            margin: 30px 0;
            background: rgba(15, 15, 25, 0.7);
            border-radius: 10px;
            overflow: hidden;
        }
        
        .price-table th, .price-table td {
            padding: 15px;
            text-align: center;
            border-bottom: 1px solid var(--neon-purple);
        }
        
        .price-table th {
            background-color: rgba(138, 43, 226, 0.2);
            color: var(--neon-blue);
        }
        
        .price-table tr:last-child td {
            border-bottom: none;
        }
        
        .discount-badge {
            display: inline-block;
            padding: 5px 10px;
            background-color: var(--neon-pink);
            color: var(--dark-bg);
            border-radius: 20px;
            font-weight: bold;
            margin-left: 10px;
        }
        
        /* Gallery Section */
        .gallery-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 15px;
        }
        
        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 8px;
            height: 250px;
        }
        
        .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 {
            max-width: 1000px;
            margin: 0 auto;
            position: relative;
            overflow: hidden;
        }
        
        .feedback-slides {
            display: flex;
            transition: transform 0.5s ease;
        }
        
        .feedback-slide {
            min-width: 100%;
            padding: 20px;
            background: rgba(15, 15, 25, 0.7);
            border-radius: 10px;
            border: 1px solid var(--neon-purple);
        }
        
        .feedback-content {
            padding: 20px;
            position: relative;
        }
        
        .feedback-content::before {
            content: '"';
            font-size: 60px;
            color: var(--neon-pink);
            position: absolute;
            top: -20px;
            left: -10px;
            opacity: 0.3;
        }
        
        .client-info {
            display: flex;
            align-items: center;
            margin-top: 20px;
        }
        
        .client-info img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            margin-right: 15px;
            object-fit: cover;
        }
        
        .slider-nav {
            text-align: center;
            margin-top: 20px;
        }
        
        .slider-dot {
            display: inline-block;
            width: 12px;
            height: 12px;
            background: var(--neon-purple);
            border-radius: 50%;
            margin: 0 5px;
            cursor: pointer;
            opacity: 0.5;
            transition: opacity 0.3s;
        }
        
        .slider-dot.active {
            opacity: 1;
        }
        
        /* FAQ Section */
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .faq-item {
            margin-bottom: 20px;
            border: 1px solid var(--neon-purple);
            border-radius: 8px;
            overflow: hidden;
        }
        
        .faq-question {
            padding: 15px 20px;
            background: rgba(15, 15, 25, 0.7);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: bold;
        }
        
        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
            background: rgba(10, 10, 18, 0.9);
        }
        
        .faq-item.active .faq-answer {
            max-height: 300px;
            padding: 20px;
        }
        
        /* Contact Section */
        .contact-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .contact-form {
            background: rgba(15, 15, 25, 0.7);
            padding: 30px;
            border-radius: 10px;
            border: 1px solid var(--neon-purple);
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: var(--neon-blue);
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px;
            background: rgba(10, 10, 18, 0.9);
            border: 1px solid var(--neon-purple);
            border-radius: 5px;
            color: var(--text-color);
        }
        
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--neon-pink);
            box-shadow: 0 0 5px var(--neon-pink);
        }
        
        /* Disclaimer */
        .disclaimer {
            background-color: var(--darker-bg);
            padding: 20px;
            text-align: center;
            font-size: 0.8rem;
            border-top: 1px solid var(--neon-purple);
        }
        
        /* Cookie Banner */
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: rgba(10, 10, 18, 0.95);
            padding: 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            border-top: 1px solid var(--neon-purple);
            z-index: 1000;
            transform: translateY(100%);
            transition: transform 0.5s;
        }
        
        .cookie-banner.show {
            transform: translateY(0);
        }
        
        .cookie-text {
            flex: 1;
            min-width: 300px;
            margin-right: 20px;
        }
        
        .cookie-buttons {
            display: flex;
            gap: 10px;
        }
        
        /* Footer */
        footer {
            background-color: var(--darker-bg);
            padding: 50px 0 20px;
            border-top: 1px solid var(--neon-purple);
        }
        
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
        }
        
        .footer-column {
            flex: 1;
            min-width: 250px;
            margin-bottom: 30px;
            padding: 0 20px;
        }
        
        .footer-column h3 {
            color: var(--neon-blue);
            margin-bottom: 20px;
            font-size: 1.2rem;
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 10px;
        }
        
        .footer-column a {
            color: var(--text-color);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-column a:hover {
            color: var(--neon-pink);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(138, 43, 226, 0.3);
            margin-top: 30px;
        }
        
        /* Modal */
        .modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(5, 5, 8, 0.9);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 2000;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s, visibility 0.3s;
        }
        
        .modal.show {
            opacity: 1;
            visibility: visible;
        }
        
        .modal-content {
            background: var(--dark-bg);
            padding: 30px;
            border-radius: 10px;
            border: 2px solid var(--neon-pink);
            text-align: center;
            max-width: 500px;
            width: 90%;
            box-shadow: 0 0 30px rgba(255, 45, 149, 0.5);
        }
        
        .modal-close {
            position: absolute;
            top: 10px;
            right: 10px;
            background: none;
            border: none;
            color: var(--text-color);
            font-size: 24px;
            cursor: pointer;
        }
        
        /* Animations */
        @keyframes flicker {
            0%, 18%, 22%, 25%, 53%, 57%, 100% {
                text-shadow: 0 0 5px var(--neon-blue),
                             0 0 10px var(--neon-blue),
                             0 0 15px var(--neon-blue),
                             0 0 20px var(--neon-purple),
                             0 0 35px var(--neon-purple),
                             0 0 40px var(--neon-purple);
            }
            20%, 24%, 55% {
                text-shadow: none;
            }
        }
        
        .fade-in {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.5s, transform 0.5s;
        }
        
        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .burger {
                display: block;
            }
            
            .nav-menu {
                position: fixed;
                top: 70px;
                right: -100%;
                height: calc(100vh - 70px);
                width: 70%;
                background: var(--darker-bg);
                flex-direction: column;
                align-items: center;
                justify-content: center;
                transition: right 0.5s ease;
                border-left: 1px solid var(--neon-purple);
            }
            
            .nav-menu.active {
                right: 0;
            }
            
            .nav-menu li {
                margin: 20px 0;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .about-content {
                flex-direction: column;
            }
            
            .footer-content {
                flex-direction: column;
            }
            
            .cookie-text {
                margin-right: 0;
                margin-bottom: 15px;
            }
            
            .cookie-buttons {
                width: 100%;
                justify-content: center;
            }
        }

