
@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@400;700&family=Bebas+Neue&display=swap');
        
        :root {
            --primary-color: #ff00ff;
            --secondary-color: #00ffff;
            --background-color: #1a0033;
            --text-color: #ffffff;
            --accent-color: #ff9900;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            scroll-behavior: smooth;
        }

        html {
            font-size: 16px;
        }

        body {
            font-family: 'Roboto Mono', monospace;
            background-color: var(--background-color);
            color: var(--text-color);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        a {
            color: var(--secondary-color);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        a:hover {
            color: var(--accent-color);
        }
        
        h1, h2, h3 {
            font-family: 'Bebas Neue', sans-serif;
            color: var(--primary-color);
            text-transform: uppercase;
        }
        
        h1 {
            font-size: 4rem;
            text-shadow: 2px 2px var(--secondary-color);
        }
        
        h2 {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            text-align: center;
        }
        
        h3 {
            font-size: 2rem;
            margin-bottom: 1rem;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        section {
            padding: 5rem 0;
        }
        
        .cta-button {
            display: inline-block;
            background-color: var(--accent-color);
            color: var(--background-color);
            padding: 0.75rem 2rem;
            text-transform: uppercase;
            font-weight: bold;
            border-radius: 5px;
            border: none;
            cursor: pointer;
            transition: transform 0.3s ease, background-color 0.3s ease;
        }
        
        .cta-button:hover {
            background-color: var(--secondary-color);
            transform: scale(1.05);
        }

        /* Header */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: rgba(26, 0, 51, 0.8);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 1rem 0;
            transition: background 0.3s ease;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 2.5rem;
            color: var(--primary-color);
            text-shadow: 1px 1px var(--secondary-color);
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-menu a {
            text-transform: uppercase;
            font-weight: bold;
            position: relative;
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -5px;
            width: 0;
            height: 2px;
            background-color: var(--accent-color);
            transition: width 0.3s ease;
        }

        .nav-menu a:hover::after {
            width: 100%;
        }

        .burger-menu {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }

        .burger-bar {
            width: 30px;
            height: 3px;
            background-color: var(--text-color);
            margin: 4px 0;
            transition: all 0.3s ease;
        }
        
        .hero {
            position: relative;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            background-image: url('../img/10.webp');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(26, 0, 51, 0.6);
        }
        
        .hero-content {
            z-index: 1;
            padding: 2rem;
            animation: fadeIn 2s ease-in-out;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* About Section */
        .about .container {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .about p {
            max-width: 800px;
            margin-bottom: 1.5rem;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 1s ease, transform 1s ease;
        }

        .about p.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .about-image {
            width: 100%;
            max-width: 600px;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
            margin-top: 2rem;
            opacity: 0;
            transform: scale(0.9);
            transition: opacity 1s ease, transform 1s ease;
        }

        .about-image.visible {
            opacity: 1;
            transform: scale(1);
        }

        /* Products Section */
        .products .container {
            text-align: center;
        }

        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .product-card {
            background: rgba(0, 255, 255, 0.1);
            border: 2px solid var(--secondary-color);
            padding: 2rem;
            border-radius: 10px;
            text-align: left;
            position: relative;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(0, 255, 255, 0.3);
        }

        .product-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 5px;
            margin-bottom: 1rem;
        }

        .product-card h3 {
            color: var(--accent-color);
        }

        /* Prices Section */
        .prices .container {
            text-align: center;
        }
        
        .price-grid {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 2rem;
            margin-top: 2rem;
        }

        .price-card {
            background: rgba(255, 0, 255, 0.1);
            border: 2px solid var(--primary-color);
            padding: 2rem;
            border-radius: 10px;
            width: 100%;
            max-width: 350px;
            text-align: center;
            transition: transform 0.3s ease;
        }
        
        .price-card:hover {
            transform: scale(1.05);
        }

        .price-card h3 {
            color: var(--primary-color);
        }
        
        .price-card .price {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--accent-color);
            margin: 1rem 0;
        }

        .price-card ul {
            list-style: none;
            margin-bottom: 1.5rem;
            text-align: left;
        }

        .price-card ul li {
            margin-bottom: 0.5rem;
        }

        /* Gallery Section */
        .gallery .container {
            text-align: center;
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1rem;
            margin-top: 2rem;
        }
        
        .gallery-item img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            border-radius: 5px;
            box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
            transition: transform 0.3s ease;
        }

        .gallery-item img:hover {
            transform: scale(1.05);
        }

        /* Feedback Section */
        .feedback .container {
            text-align: center;
        }
        
        .feedback-slider-container {
            position: relative;
            width: 100%;
            max-width: 800px;
            margin: 2rem auto;
            overflow: hidden;
        }

        .feedback-slider {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }

        .feedback-card {
            flex-shrink: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.05);
            padding: 2rem;
            border-radius: 10px;
            text-align: left;
        }
        
        .feedback-card blockquote {
            font-style: italic;
            margin-bottom: 1rem;
        }

        .feedback-card cite {
            display: block;
            text-align: right;
            font-weight: bold;
            color: var(--accent-color);
        }

        .slider-nav {
            position: absolute;
            top: 50%;
            width: 100%;
            display: flex;
            justify-content: space-between;
            transform: translateY(-50%);
        }

        .slider-nav button {
            background: var(--primary-color);
            color: var(--background-color);
            border: none;
            padding: 0.5rem 1rem;
            cursor: pointer;
            border-radius: 5px;
            font-size: 1.5rem;
            transition: background 0.3s ease;
        }

        .slider-nav button:hover {
            background: var(--secondary-color);
        }

        /* FAQ Section */
        .faq .container {
            max-width: 900px;
        }
        
        .faq-item {
            border-bottom: 1px solid var(--secondary-color);
            padding: 1rem 0;
            cursor: pointer;
        }

        .faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: bold;
            color: var(--primary-color);
            transition: color 0.3s ease;
        }

        .faq-question:hover {
            color: var(--accent-color);
        }
        
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease;
            padding-top: 0;
        }

        .faq-answer.open {
            max-height: 200px;
            padding-top: 1rem;
        }
        
        .faq-answer p {
            padding-right: 2rem;
        }

        .faq-item .arrow {
            transition: transform 0.3s ease;
        }

        .faq-item.active .arrow {
            transform: rotate(90deg);
        }
        
        /* Contact Form */
        .contact .container {
            max-width: 600px;
            text-align: center;
        }

        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-top: 2rem;
        }

        .contact-form input,
        .contact-form textarea {
            width: 100%;
            padding: 0.75rem;
            border: 1px solid var(--secondary-color);
            background: rgba(255, 255, 255, 0.05);
            color: var(--text-color);
            border-radius: 5px;
        }

        .contact-form button {
            align-self: flex-end;
        }
        
        /* Disclaimer */
        .disclaimer {
            background: rgba(255, 255, 255, 0.05);
            padding: 2rem;
            text-align: center;
            font-size: 0.8rem;
            border-top: 2px solid var(--accent-color);
        }

        /* Footer */
        .footer {
            background-color: var(--background-color);
            padding: 2rem 0;
            text-align: center;
        }
        
        .footer-content {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            align-items: center;
        }

        .footer-nav {
            list-style: none;
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            justify-content: center;
        }

        .footer-contacts p {
            font-size: 0.9rem;
            margin: 0.25rem 0;
        }

        /* Popups */
        .popup-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 1001;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease;
        }

        .popup-overlay.show {
            opacity: 1;
            visibility: visible;
        }
        
        .popup-content {
            background-color: var(--background-color);
            border: 2px solid var(--primary-color);
            padding: 2rem;
            border-radius: 10px;
            text-align: center;
            position: relative;
            transform: scale(0.8);
            transition: transform 0.3s ease;
        }

        .popup-overlay.show .popup-content {
            transform: scale(1);
        }
        
        .close-popup {
            position: absolute;
            top: 10px;
            right: 10px;
            font-size: 1.5rem;
            color: var(--text-color);
            cursor: pointer;
        }

        /* Cookie Banner */
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: rgba(0, 0, 0, 0.9);
            padding: 1rem;
            text-align: center;
            z-index: 999;
            transform: translateY(100%);
            transition: transform 0.5s ease-out;
        }

        .cookie-banner.show {
            transform: translateY(0);
        }

        .cookie-banner-content {
            max-width: 900px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
        }
        
        .cookie-banner p {
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }

        .cookie-buttons button {
            padding: 0.5rem 1rem;
            border: none;
            cursor: pointer;
            margin: 0 0.5rem;
        }

        #accept-cookies {
            background-color: var(--accent-color);
            color: var(--background-color);
        }
        
        #decline-cookies {
            background-color: #555;
            color: #fff;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            h1 {
                font-size: 3rem;
            }

            h2 {
                font-size: 2.5rem;
            }
            
            .nav-menu {
                position: fixed;
                top: 0;
                right: -100%;
                height: 100vh;
                width: 70%;
                background: rgba(26, 0, 51, 0.95);
                backdrop-filter: blur(10px);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                transition: right 0.5s ease-in-out;
            }

            .nav-menu.active {
                right: 0;
            }

            .burger-menu {
                display: flex;
            }

            .burger-menu.active .burger-bar:nth-child(2) {
                opacity: 0;
            }
            
            .burger-menu.active .burger-bar:nth-child(1) {
                transform: translateY(7px) rotate(45deg);
            }

            .burger-menu.active .burger-bar:nth-child(3) {
                transform: translateY(-7px) rotate(-45deg);
            }
            
            .price-grid, .product-grid {
                flex-direction: column;
            }
            
            .cookie-banner-content {
                flex-direction: column;
            }
        }

