:root {
            --neon-pink: #ff2d95;
            --neon-blue: #0ff0fc;
            --neon-purple: #8a2be2;
            --dark-bg: #0a0a12;
            --dark-card: #12121f;
            --text-color: #ffffff;
        }
        
        * {
            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;}
        
        main {
            max-width: 1000px;
            margin: 0 auto;
            background-color: var(--dark-card);
            padding: 40px;
            border: 1px solid var(--neon-pink);
            box-shadow: 0 0 20px var(--neon-pink);
        }
        
        h1, h2, h3 {
            font-weight: 700;
            text-transform: uppercase;
            margin-bottom: 1rem;
        }
        
        h1 {
            font-size: 2.5rem;
            color: var(--neon-purple);
            text-shadow: 0 0 5px var(--neon-purple);
            margin-bottom: 2rem;
            text-align: center;
        }
        
        h2 {
            font-size: 1.8rem;
            color: var(--neon-pink);
            margin-top: 2rem;
        }
        
        h3 {
            font-size: 1.3rem;
            color: var(--neon-blue);
            margin-top: 1.5rem;
        }
        
        p {
            margin-bottom: 1rem;
        }
        
        ul {
            margin-bottom: 1rem;
            padding-left: 20px;
        }
        
        li {
            margin-bottom: 0.5rem;
        }
        
        table {
            width: 100%;
            border-collapse: collapse;
            margin-bottom: 2rem;
        }
        
        th, td {
            border: 1px solid var(--neon-purple);
            padding: 10px;
            text-align: left;
        }
        
        th {
            background-color: rgba(138, 43, 226, 0.2);
            color: var(--neon-blue);
        }
        
        .last-update {
            text-align: right;
            font-style: italic;
            margin-bottom: 2rem;
            color: rgba(255, 255, 255, 0.7);
        }
:root {
            --neon-pink: #ff2d95;
            --neon-blue: #0ff0fc;
            --neon-purple: #8a2be2;
            --dark-bg: #0a0a12;
            --dark-card: #12121f;
            --text-color: #ffffff;
        }
        
        * {
            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;
            padding-top: 80px;}
        
        h1, h2, h3 {
            font-weight: 700;
            text-transform: uppercase;
        }
        
        h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            text-shadow: 0 0 10px var(--neon-blue), 0 0 20px var(--neon-blue);
            color: var(--neon-blue);
        }
        
        h2 {
            font-size: 2.5rem;
            margin-bottom: 2rem;
            color: var(--neon-pink);
            text-shadow: 0 0 5px var(--neon-pink);
        }
        
        h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
            color: var(--neon-purple);
        }
        
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        section {
            padding: 80px 0;
            position: relative;
        }
        
        /* Header Styles */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(10, 10, 18, 0.9);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 15px 0;
            border-bottom: 1px solid var(--neon-purple);
            box-shadow: 0 0 15px var(--neon-purple);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 1.8rem;
            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-weight: bold;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .nav-menu a:hover {
            color: var(--neon-pink);
        }
        
        .nav-menu a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: var(--neon-pink);
            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;
            background: linear-gradient(rgba(10, 10, 18, 0.8), rgba(10, 10, 18, 0.9)), url('https://images.unsplash.com/photo-1540189549336-e6e99c3679fe?ixlib=rb-4.0.3&auto=format&fit=crop&w=700&q=80') no-repeat center center/cover;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .hero:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at center, transparent 10%, var(--dark-bg) 90%);
        }
        
        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .hero p {
            font-size: 1.3rem;
            margin-bottom: 2rem;
        }
        
        .btn {
            display: inline-block;
            padding: 12px 30px;
            background: transparent;
            color: var(--neon-blue);
            border: 2px solid var(--neon-blue);
            text-decoration: none;
            font-weight: bold;
            text-transform: uppercase;
            transition: all 0.3s ease;
            cursor: pointer;
            box-shadow: 0 0 10px var(--neon-blue);
        }
        
        .btn:hover {
            background-color: var(--neon-blue);
            color: var(--dark-bg);
            box-shadow: 0 0 20px var(--neon-blue);
        }
        
        /* About Section */
        .about {
            background-color: var(--dark-card);
            position: relative;
        }
        
        .about:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, transparent 40%, rgba(138, 43, 226, 0.1) 100%);
            pointer-events: none;
        }
        
        .about-content {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 40px;
        }
        
        .about-text {
            flex: 1;
            min-width: 300px;
        }
        
        .about-image {
            flex: 1;
            min-width: 300px;
            border: 2px solid var(--neon-purple);
            box-shadow: 0 0 20px var(--neon-purple);
            overflow: hidden;
        }
        
        .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 {
            background-color: var(--dark-bg);
        }
        
        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .product-card {
            background-color: var(--dark-card);
            border: 1px solid var(--neon-pink);
            padding: 25px;
            transition: all 0.3s ease;
            box-shadow: 0 0 10px rgba(255, 45, 149, 0.3);
        }
        
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 0 20px var(--neon-pink);
        }
        
        .product-card h3 {
            color: var(--neon-pink);
            margin-bottom: 15px;
        }
        
        .product-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
            margin-bottom: 15px;
            border: 1px solid var(--neon-blue);
        }
        
        /* Prices Section */
        .prices {
            background-color: var(--dark-card);
        }
        
        .price-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
        }
        
        .price-card {
            background-color: var(--dark-bg);
            border: 2px solid var(--neon-blue);
            padding: 30px;
            flex: 1;
            min-width: 250px;
            max-width: 350px;
            text-align: center;
            box-shadow: 0 0 15px var(--neon-blue);
        }
        
        .price-card h3 {
            color: var(--neon-blue);
            margin-bottom: 15px;
        }
        
        .price {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--neon-pink);
            margin: 20px 0;
        }
        
        .price-features {
            list-style: none;
            margin-bottom: 20px;
        }
        
        .price-features li {
            padding: 8px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        /* Gallery Section */
        .gallery {
            background-color: var(--dark-bg);
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 15px;
        }
        
        .gallery-item {
            position: relative;
            overflow: hidden;
            height: 250px;
            border: 1px solid var(--neon-purple);
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        
        /* Feedback Section */
        .feedback {
            background-color: var(--dark-card);
            position: relative;
        }
        
        .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-color: var(--dark-bg);
            border: 1px solid var(--neon-pink);
            padding: 30px;
            box-shadow: 0 0 15px rgba(255, 45, 149, 0.3);
        }
        
        .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: 30px;
        }
        
        .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 ease;
        }
        
        .slider-dot.active {
            background-color: var(--neon-pink);
        }
        
        /* FAQ Section */
        .faq {
            background-color: var(--dark-bg);
        }
        
        .faq-item {
            margin-bottom: 20px;
            border: 1px solid var(--neon-purple);
        }
        
        .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;
            top: 50%;
            transform: translateY(-50%);
            font-size: 1.5rem;
        }
        
        .faq-question.active:after {
            content: '-';
        }
        
        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
            background-color: var(--dark-card);
        }
        
        .faq-answer.open {
            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;
            color: var(--neon-blue);
        }
        
        .form-control {
            width: 100%;
            padding: 12px 15px;
            background-color: rgba(255, 255, 255, 0.1);
            border: 1px solid var(--neon-purple);
            color: var(--text-color);
            font-size: 1rem;
        }
        
        .form-control:focus {
            outline: none;
            border-color: var(--neon-blue);
            box-shadow: 0 0 10px var(--neon-blue);
        }
        
        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }
        
        /* Modal */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(10, 10, 18, 0.9);
            z-index: 2000;
            justify-content: center;
            align-items: center;
        }
        
        .modal-content {
            background-color: var(--dark-card);
            padding: 40px;
            text-align: center;
            max-width: 500px;
            width: 90%;
            border: 2px solid var(--neon-blue);
            box-shadow: 0 0 30px var(--neon-blue);
        }
        
        .modal h3 {
            color: var(--neon-blue);
            margin-bottom: 20px;
        }
        
        .close-modal {
            margin-top: 20px;
            padding: 10px 20px;
            background-color: transparent;
            color: var(--neon-pink);
            border: 1px solid var(--neon-pink);
            cursor: pointer;
        }
        
        /* Disclaimer */
        .disclaimer {
            background-color: var(--dark-bg);
            padding: 30px 0;
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.7);
        }
        
        /* Cookie Banner */
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: var(--dark-card);
            padding: 20px;
            border-top: 2px solid var(--neon-purple);
            box-shadow: 0 -5px 15px rgba(138, 43, 226, 0.3);
            z-index: 1000;
            display: none;
        }
        
        .cookie-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .cookie-text {
            flex: 2;
            min-width: 300px;
            margin-right: 20px;
        }
        
        .cookie-buttons {
            flex: 1;
            min-width: 200px;
            display: flex;
            justify-content: flex-end;
        }
        
        .cookie-btn {
            padding: 10px 20px;
            margin-left: 10px;
            cursor: pointer;
            border: none;
            font-weight: bold;
        }
        
        .cookie-accept {
            background-color: var(--neon-blue);
            color: var(--dark-bg);
        }
        
        .cookie-decline {
            background-color: transparent;
            color: var(--neon-pink);
            border: 1px solid var(--neon-pink);
        }
        
        /* Footer */
        footer {
            background-color: var(--dark-card);
            padding: 60px 0 30px;
            border-top: 1px solid var(--neon-purple);
        }
        
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-column {
            flex: 1;
            min-width: 250px;
        }
        
        .footer-column h3 {
            color: var(--neon-blue);
            margin-bottom: 20px;
            font-size: 1.5rem;
        }
        
        .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 ease;
        }
        
        .footer-links a:hover {
            color: var(--neon-pink);
        }
        
        .contact-info {
            list-style: none;
        }
        
        .contact-info li {
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }
        
        .contact-info i {
            margin-right: 10px;
            color: var(--neon-blue);
        }
        
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.6);
        }
        
        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .fade-in {
            animation: fadeIn 1s ease forwards;
        }
        
        .delay-1 { animation-delay: 0.2s; }
        .delay-2 { animation-delay: 0.4s; }
        .delay-3 { animation-delay: 0.6s; }
        
        /* Responsive Styles */
        @media screen and (max-width: 768px) {
            body {padding-top: 70px;}
            
            h1 {
                font-size: 2.5rem;
            }
            
            h2 {
                font-size: 2rem;
            }
            
            .nav-menu {
                position: fixed;
                top: 70px;
                right: -100%;
                width: 70%;
                height: calc(100vh - 70px);
                background-color: var(--dark-card);
                flex-direction: column;
                align-items: center;
                justify-content: flex-start;
                padding-top: 50px;
                transition: right 0.5s ease;
                border-left: 2px solid var(--neon-purple);
            }
            
            .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 {
                padding: 60px 0;
            }
        }

