:root {
            --neon-blue: #0ff0fc;
            --neon-pink: #ff2a6d;
            --deep-purple: #1a0033;
            --dark-bg: #0d0018;
            --text-light: #ffffff;
            --accent-green: #00ff9d;
            --accent-yellow: #f2ff00;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Orbitron', sans-serif;
        }
        
        body {
            background-color: var(--dark-bg);
            color: var(--text-light);
            line-height: 1.6;
            overflow-x: hidden;
            background-image: 
                radial-gradient(circle at 20% 30%, rgba(255, 42, 109, 0.15) 0%, transparent 40%),
                radial-gradient(circle at 80% 70%, rgba(0, 255, 157, 0.15) 0%, transparent 40%);
        }
        
        .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;
            }
        }
        
        h1, h2, h3, h4 {
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 20px;
        }
        
        h1 {
            font-size: 3.5rem;
            background: linear-gradient(45deg, var(--neon-blue), var(--neon-pink));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        
        h2 {
            font-size: 2.5rem;
            color: var(--neon-blue);
            position: relative;
            display: inline-block;
            margin-bottom: 40px;
        }
        
        h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, var(--neon-blue), transparent);
        }
        
        h3 {
            font-size: 1.8rem;
            color: var(--accent-green);
        }
        
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
        }
        
        a {
            color: var(--neon-pink);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        a:hover {
            color: var(--accent-yellow);
            text-shadow: 0 0 10px var(--accent-yellow);
        }
        
        .btn {
            display: inline-block;
            padding: 12px 30px;
            background: linear-gradient(45deg, var(--neon-blue), var(--neon-pink));
            color: var(--text-light);
            border: none;
            border-radius: 30px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 0 15px rgba(0, 240, 252, 0.5);
        }
        
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 0 25px rgba(0, 240, 252, 0.8);
            color: var(--text-light);
        }
        
        .btn-outline {
            background: transparent;
            border: 2px solid var(--neon-blue);
            color: var(--neon-blue);
            box-shadow: 0 0 10px rgba(0, 240, 252, 0.3);
        }
        
        .btn-outline:hover {
            background: var(--neon-blue);
            color: var(--dark-bg);
            box-shadow: 0 0 20px rgba(0, 240, 252, 0.8);
        }
        
        section {
            padding: 100px 0;
            position: relative;
        }
        
        .parallax-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            opacity: 0.1;
            background-attachment: fixed;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
        }
        
        /* Header Styles */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background-color: rgba(13, 0, 24, 0.9);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(0, 240, 252, 0.2);
            padding: 15px 0;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 1.8rem;
            font-weight: 900;
            color: var(--neon-blue);
            text-transform: uppercase;
            letter-spacing: 3px;
            display: flex;
            align-items: center;
        }
        
        .logo span {
            color: var(--neon-pink);
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
        }
        
        .nav-menu li {
            margin-left: 30px;
        }
        
        .nav-menu a {
            color: var(--text-light);
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.9rem;
            position: relative;
        }
        
        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: 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 {
            height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(13, 0, 24, 0.8) 0%, rgba(26, 0, 51, 0.6) 100%);
            z-index: -1;
        }
        
        .hero-content {
            max-width: 800px;
        }
        
        .hero-subtitle {
            font-size: 1.5rem;
            color: var(--accent-green);
            margin-bottom: 30px;
        }
        
        .hero-buttons {
            display: flex;
            gap: 20px;
            margin-top: 40px;
        }
        
        /* About Section */
        .about-content {
            display: grid;
            grid-template-columns: 1fr;
            gap: 40px;
        }
        
        @media (min-width: 992px) {
            .about-content {
                grid-template-columns: 1fr 1fr;
            }
        }
        
        .about-text h2 {
            margin-bottom: 30px;
        }
        
        .about-features {
            list-style: none;
            margin-top: 30px;
        }
        
        .about-features li {
            margin-bottom: 15px;
            display: flex;
            align-items: flex-start;
        }
        
        .about-features li::before {
            content: '→';
            color: var(--neon-pink);
            font-weight: bold;
            margin-right: 10px;
        }
        
        .about-image {
            border-radius: 10px;
            overflow: hidden;
            position: relative;
            box-shadow: 0 0 30px rgba(255, 42, 109, 0.3);
        }
        
        .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: 1fr;
            gap: 30px;
        }
        
        @media (min-width: 768px) {
            .products-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (min-width: 1200px) {
            .products-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        
        .product-card {
            background: rgba(26, 0, 51, 0.5);
            border: 1px solid rgba(0, 240, 252, 0.2);
            border-radius: 10px;
            padding: 30px;
            transition: all 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(0, 240, 252, 0.2);
            border-color: var(--neon-blue);
        }
        
        .product-icon {
            font-size: 2.5rem;
            color: var(--neon-pink);
            margin-bottom: 20px;
        }
        
        .product-card h3 {
            margin-bottom: 15px;
        }
        
        /* Prices Section */
        .prices-container {
            overflow-x: auto;
        }
        
        .prices-table {
            width: 100%;
            border-collapse: collapse;
            margin: 40px 0;
            min-width: 600px;
        }
        
        .prices-table th, .prices-table td {
            padding: 15px;
            text-align: left;
            border-bottom: 1px solid rgba(0, 240, 252, 0.2);
        }
        
        .prices-table th {
            background-color: rgba(26, 0, 51, 0.5);
            color: var(--neon-blue);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .prices-table tr:hover {
            background-color: rgba(0, 240, 252, 0.1);
        }
        
        .price {
            font-weight: 700;
            color: var(--accent-green);
        }
        
        .discount {
            color: var(--neon-pink);
            font-weight: 700;
        }
        
        /* Gallery Section */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 40px;
        }
        
        .gallery-item {
            border-radius: 10px;
            overflow: hidden;
            position: relative;
            height: 250px;
            cursor: pointer;
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        
        .gallery-item::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .gallery-item:hover::after {
            opacity: 1;
        }
        
        /* Feedback Section */
        .feedback-slider {
            position: relative;
            margin-top: 40px;
        }
        
        .feedback-slides {
            display: flex;
            overflow-x: hidden;
            scroll-behavior: smooth;
            border-radius: 10px;
        }
        
        .feedback-slide {
            min-width: 100%;
            background: rgba(26, 0, 51, 0.5);
            border: 1px solid rgba(0, 240, 252, 0.2);
            border-radius: 10px;
            padding: 30px;
            display: flex;
            flex-direction: column;
        }
        
        .feedback-content {
            flex-grow: 1;
            margin-bottom: 20px;
            position: relative;
        }
        
        .feedback-content::before {
            content: '"';
            font-size: 4rem;
            color: var(--neon-pink);
            opacity: 0.3;
            position: absolute;
            top: -20px;
            left: -10px;
        }
        
        .feedback-author {
            display: flex;
            align-items: center;
        }
        
        .feedback-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 15px;
        }
        
        .feedback-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .feedback-info h4 {
            margin-bottom: 5px;
            color: var(--neon-blue);
        }
        
        .feedback-info p {
            font-size: 0.9rem;
            margin-bottom: 0;
            color: var(--accent-green);
        }
        
        .slider-nav {
            display: flex;
            justify-content: center;
            margin-top: 30px;
            gap: 10px;
        }
        
        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(0, 240, 252, 0.3);
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .slider-dot.active {
            background: var(--neon-blue);
            transform: scale(1.2);
        }
        
        /* FAQ Section */
        .faq-item {
            margin-bottom: 20px;
            border: 1px solid rgba(0, 240, 252, 0.2);
            border-radius: 10px;
            overflow: hidden;
        }
        
        .faq-question {
            padding: 20px;
            background: rgba(26, 0, 51, 0.3);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 700;
            color: var(--neon-blue);
        }
        
        .faq-question::after {
            content: '+';
            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;
        }
        
        .faq-answer.active {
            padding: 20px;
            max-height: 300px;
        }
        
        /* Contact Section */
        .contact-form {
            background: rgba(26, 0, 51, 0.5);
            border: 1px solid rgba(0, 240, 252, 0.2);
            border-radius: 10px;
            padding: 40px;
            margin-top: 40px;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: var(--neon-blue);
            font-weight: 500;
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px 15px;
            background: rgba(13, 0, 24, 0.7);
            border: 1px solid rgba(0, 240, 252, 0.3);
            border-radius: 5px;
            color: var(--text-light);
            font-size: 1rem;
        }
        
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--neon-blue);
            box-shadow: 0 0 10px rgba(0, 240, 252, 0.3);
        }
        
        textarea {
            min-height: 150px;
            resize: vertical;
        }
        
        .submit-btn {
            width: 100%;
            padding: 15px;
            font-size: 1.1rem;
            margin-top: 10px;
        }
        
        /* Modal */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            z-index: 2000;
            align-items: center;
            justify-content: center;
        }
        
        .modal-content {
            background: var(--dark-bg);
            border: 2px solid var(--neon-blue);
            border-radius: 10px;
            padding: 40px;
            text-align: center;
            max-width: 500px;
            width: 90%;
            box-shadow: 0 0 30px rgba(0, 240, 252, 0.5);
        }
        
        .modal h3 {
            color: var(--neon-blue);
            margin-bottom: 20px;
        }
        
        .modal p {
            margin-bottom: 30px;
        }
        
        .close-modal {
            background: var(--neon-pink);
            color: var(--text-light);
            border: none;
            padding: 10px 25px;
            border-radius: 30px;
            cursor: pointer;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        /* Disclaimer */
        .disclaimer {
            background: rgba(26, 0, 51, 0.7);
            padding: 30px;
            border-radius: 10px;
            margin-top: 60px;
            border-left: 4px solid var(--neon-pink);
        }
        
        .disclaimer h3 {
            color: var(--neon-pink);
            margin-bottom: 15px;
        }
        
        .disclaimer p {
            font-size: 0.9rem;
            line-height: 1.6;
        }
        
        /* Cookie Banner */
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: rgba(13, 0, 24, 0.95);
            padding: 20px;
            box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.5);
            z-index: 1000;
            display: none;
        }
        
        .cookie-content {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
        }
        
        .cookie-text {
            flex: 1;
            min-width: 300px;
        }
        
        .cookie-buttons {
            display: flex;
            gap: 15px;
        }
        
        /* Footer */
        footer {
            background: rgba(13, 0, 24, 0.9);
            padding: 60px 0 30px;
            border-top: 1px solid rgba(0, 240, 252, 0.2);
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 40px;
        }
        
        @media (min-width: 768px) {
            .footer-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        
        .footer-logo {
            font-size: 1.5rem;
            font-weight: 900;
            color: var(--neon-blue);
            margin-bottom: 20px;
            display: inline-block;
        }
        
        .footer-logo span {
            color: var(--neon-pink);
        }
        
        .footer-links h4 {
            color: var(--neon-blue);
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-links h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background: var(--neon-pink);
        }
        
        .footer-links ul {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: var(--text-light);
            transition: all 0.3s ease;
        }
        
        .footer-links a:hover {
            color: var(--neon-pink);
            padding-left: 5px;
        }
        
        .contact-info {
            margin-top: 20px;
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }
        
        .contact-icon {
            color: var(--neon-blue);
            margin-right: 15px;
            font-size: 1.2rem;
        }
        
        .footer-bottom {
            text-align: center;
            margin-top: 60px;
            padding-top: 20px;
            border-top: 1px solid rgba(0, 240, 252, 0.2);
            font-size: 0.9rem;
        }
        
        /* 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 (max-width: 991px) {
            h1 {
                font-size: 2.8rem;
            }
            
            h2 {
                font-size: 2rem;
            }
            
            .nav-menu {
                position: fixed;
                top: 0;
                right: -100%;
                height: 100vh;
                width: 70%;
                background: rgba(13, 0, 24, 0.95);
                backdrop-filter: blur(10px);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                transition: right 0.5s ease;
                z-index: 999;
            }
            
            .nav-menu.active {
                right: 0;
            }
            
            .nav-menu li {
                margin: 15px 0;
            }
            
            .burger {
                display: block;
                z-index: 1000;
            }
            
            .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);
            }
        }
        
        @media (max-width: 767px) {
            h1 {
                font-size: 2.2rem;
            }
            
            h2 {
                font-size: 1.8rem;
            }
            
            section {
                padding: 60px 0;
            }
            
            .hero-buttons {
                flex-direction: column;
                gap: 15px;
            }
            
            .btn {
                width: 100%;
                text-align: center;
            }
            
            .contact-form {
                padding: 20px;
            }
            
            .cookie-content {
                flex-direction: column;
                text-align: center;
            }
            
            .cookie-buttons {
                justify-content: center;
            }
        }

