@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: #0d0126;
            --text-color: #ffffff;
            --accent-color: #ffff00;
            --card-bg: rgba(255, 255, 255, 0.1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Roboto Mono', monospace;
            background-color: var(--background-color);
            color: var(--text-color);
            line-height: 1.6;
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        header {
            position: fixed;
            width: 100%;
            top: 0;
            left: 0;
            background: rgba(13, 1, 38, 0.8);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 15px 0;
            border-bottom: 2px solid var(--primary-color);
            transition: transform 0.3s ease-in-out;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 2.5rem;
            color: var(--accent-color);
            text-shadow: 2px 2px var(--secondary-color);
        }

        .logo a {
            text-decoration: none;
            color: inherit;
        }

        nav ul {
            list-style: none;
            display: flex;
        }

        nav ul li {
            margin-left: 30px;
        }

        nav ul a {
            text-decoration: none;
            color: var(--text-color);
            font-weight: bold;
            font-size: 1.1rem;
            position: relative;
            transition: color 0.3s ease;
        }

        nav ul a:hover {
            color: var(--primary-color);
        }

        nav ul a::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -5px;
            width: 100%;
            height: 2px;
            background-color: var(--primary-color);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        nav ul a:hover::after {
            transform: scaleX(1);
        }

        .burger-menu {
            display: none;
            cursor: pointer;
            flex-direction: column;
            justify-content: space-around;
            width: 30px;
            height: 25px;
            z-index: 1001;
        }

        .burger-menu div {
            width: 100%;
            height: 3px;
            background-color: var(--text-color);
            transition: all 0.3s ease;
        }

        /* Hero */
        .hero {
            position: relative;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            opacity: 0.2;
            z-index: 1;
        }

        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 0;
            filter: grayscale(80%) brightness(50%);
            animation: parallax-bg 100s linear infinite;
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            transform: translateY(20px);
            opacity: 0;
            animation: fadeInTop 1s forwards 0.5s;
        }

        .hero-content h1 {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 4rem;
            color: var(--text-color);
            text-shadow: 4px 4px var(--primary-color);
            line-height: 1;
        }

        .hero-content p {
            font-size: 1.5rem;
            margin: 20px 0;
            color: var(--secondary-color);
            text-shadow: 1px 1px var(--background-color);
        }

        .cta-button {
            display: inline-block;
            padding: 15px 30px;
            background-color: var(--accent-color);
            color: var(--background-color);
            text-decoration: none;
            font-weight: bold;
            border-radius: 5px;
            font-size: 1.2rem;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .cta-button:hover {
            transform: scale(1.05);
            box-shadow: 0 0 20px var(--accent-color);
        }

        /* Sections */
        section {
            padding: 80px 0;
            position: relative;
        }

        section:nth-of-type(even) {
            background-color: rgba(255, 255, 255, 0.05);
        }

        h2 {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 3rem;
            text-align: center;
            margin-bottom: 50px;
            color: var(--primary-color);
            text-shadow: 2px 2px var(--secondary-color);
        }

        .section-content {
            display: flex;
            gap: 40px;
            align-items: center;
            justify-content: center;
        }

        .section-text {
            flex: 1;
            max-width: 600px;
        }

        .section-text h3 {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 2rem;
            color: var(--secondary-color);
            margin-bottom: 20px;
        }

        .section-image {
            flex: 1;
            max-width: 500px;
            border: 4px solid var(--primary-color);
            box-shadow: 0 0 30px rgba(255, 0, 255, 0.5);
            transition: transform 0.5s ease;
        }

        .section-image img {
            width: 100%;
            display: block;
            filter: grayscale(50%);
            transition: filter 0.5s ease;
        }

        .section-image:hover {
            transform: scale(1.03);
            box-shadow: 0 0 40px rgba(255, 0, 255, 0.8);
        }

        .section-image:hover img {
            filter: grayscale(0%);
        }
        
        /* Products */
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
        }

        .product-card {
            background-color: var(--card-bg);
            border: 2px solid var(--secondary-color);
            padding: 30px;
            text-align: center;
            box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
            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.5);
        }

        .product-card h3 {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 2rem;
            color: var(--primary-color);
            margin-bottom: 10px;
        }

        .product-card p {
            font-size: 1rem;
            margin-bottom: 20px;
        }
        
        .product-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            margin-bottom: 20px;
        }

        /* Prices */
        .prices-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
        }

        .price-card {
            background-color: var(--card-bg);
            border: 2px solid var(--accent-color);
            padding: 30px;
            text-align: center;
            box-shadow: 0 0 20px rgba(255, 255, 0, 0.2);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .price-card.featured {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 0 40px var(--primary-color);
            transform: scale(1.1);
        }

        .price-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(255, 255, 0, 0.5);
        }

        .price-card h3 {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 2.5rem;
            margin-bottom: 10px;
            color: var(--accent-color);
        }

        .price-card .price {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 3.5rem;
            color: var(--text-color);
            margin-bottom: 10px;
        }

        .price-card ul {
            list-style: none;
            text-align: left;
            margin: 20px 0;
            font-size: 1.1rem;
        }

        .price-card ul li {
            padding: 5px 0;
            border-bottom: 1px dotted rgba(255, 255, 255, 0.3);
        }

        .price-card .cta-button {
            margin-top: 20px;
        }

        /* Gallery */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }
        
        .gallery-item {
            overflow: hidden;
            position: relative;
            border: 2px solid var(--secondary-color);
            transition: transform 0.3s ease;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        /* Feedback Slider */
        .feedback-slider {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
            overflow: hidden;
        }

        .slider-wrapper {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }

        .feedback-card {
            min-width: 100%;
            background-color: var(--card-bg);
            padding: 40px;
            text-align: center;
            border: 2px solid var(--primary-color);
            box-shadow: 0 0 20px rgba(255, 0, 255, 0.5);
        }

        .feedback-card p {
            font-style: italic;
            margin-bottom: 20px;
        }

        .feedback-card h4 {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 1.5rem;
            color: var(--accent-color);
        }

        .slider-controls {
            display: flex;
            justify-content: center;
            margin-top: 20px;
        }

        .slider-button {
            background: none;
            border: 2px solid var(--secondary-color);
            color: var(--secondary-color);
            font-size: 1.5rem;
            padding: 5px 15px;
            cursor: pointer;
            margin: 0 10px;
            transition: all 0.3s ease;
        }
        
        .slider-button:hover {
            background-color: var(--secondary-color);
            color: var(--background-color);
        }

        /* FAQ */
        .faq-item {
            border-bottom: 1px solid var(--card-bg);
            padding: 20px 0;
        }

        .faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            font-size: 1.2rem;
            font-weight: bold;
            color: var(--primary-color);
        }

        .faq-question .toggle-icon {
            font-size: 1.5rem;
            transform: rotate(0deg);
            transition: transform 0.3s ease;
        }

        .faq-question.active .toggle-icon {
            transform: rotate(180deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease-in-out;
            padding-top: 0;
            color: var(--text-color);
        }

        .faq-answer p {
            margin-top: 15px;
        }

        /* Contact Form */
        .contact-form-container {
            max-width: 600px;
            margin: 0 auto;
            background-color: var(--card-bg);
            padding: 40px;
            border: 2px solid var(--primary-color);
            box-shadow: 0 0 30px rgba(255, 0, 255, 0.5);
        }

        .contact-form-container h3 {
            font-family: 'Bebas Neue', sans-serif;
            text-align: center;
            font-size: 2rem;
            margin-bottom: 20px;
            color: var(--accent-color);
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 5px;
            font-size: 1.1rem;
        }

        .form-group input {
            width: 100%;
            padding: 10px;
            background-color: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--secondary-color);
            color: var(--text-color);
            font-size: 1rem;
        }

        .form-group input:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 10px rgba(255, 0, 255, 0.5);
        }

        .submit-button {
            display: block;
            width: 100%;
            padding: 15px;
            background-color: var(--accent-color);
            color: var(--background-color);
            font-weight: bold;
            font-size: 1.2rem;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .submit-button:hover {
            background-color: var(--primary-color);
            color: var(--text-color);
        }

        /* Footer */
        footer {
            background-color: var(--background-color);
            padding: 50px 0 20px;
            border-top: 2px solid var(--primary-color);
        }

        .footer-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .footer-links {
            margin: 20px 0;
        }

        .footer-links a {
            color: var(--text-color);
            text-decoration: none;
            margin: 0 15px;
            position: relative;
            transition: color 0.3s ease;
        }
        
        .footer-links a:hover {
            color: var(--secondary-color);
        }
        
        .footer-links a::after {
            content: '|';
            position: absolute;
            right: -10px;
            color: var(--text-color);
        }

        .footer-links a:last-child::after {
            content: '';
        }

        .footer-contacts {
            margin-top: 20px;
        }

        .footer-contacts p {
            margin: 5px 0;
        }

        .copyright {
            margin-top: 30px;
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.5);
        }

        /* Disclaimer */
        .disclaimer {
            background-color: rgba(0, 0, 0, 0.5);
            padding: 20px;
            text-align: center;
            font-size: 0.9rem;
            border-top: 1px dashed var(--secondary-color);
            margin-top: 50px;
        }

        .disclaimer p {
            color: rgba(255, 255, 255, 0.7);
        }

        /* Cookie Banner */
        .cookie-banner {
            position: fixed;
            bottom: 20px;
            left: 20px;
            right: 20px;
            background-color: var(--card-bg);
            border: 2px solid var(--secondary-color);
            padding: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
            z-index: 2000;
            transform: translateY(150%);
            transition: transform 0.5s ease-in-out;
        }

        .cookie-banner.show {
            transform: translateY(0);
        }

        .cookie-banner p {
            font-size: 0.9rem;
        }

        .cookie-banner a {
            color: var(--primary-color);
        }

        .cookie-button {
            background-color: var(--primary-color);
            color: var(--text-color);
            border: none;
            padding: 10px 20px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .cookie-button:hover {
            background-color: var(--secondary-color);
        }

        /* Animations */
        @keyframes fadeInTop {
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }
        
        @keyframes parallax-bg {
            0% {
                transform: translate(0, 0);
            }
            25% {
                transform: translate(-5%, 5%);
            }
            50% {
                transform: translate(-10%, 0);
            }
            75% {
                transform: translate(-5%, -5%);
            }
            100% {
                transform: translate(0, 0);
            }
        }

        /* Responsive */
        @media (max-width: 768px) {
            h1 {
                font-size: 2.5rem !important;
            }

            h2 {
                font-size: 2rem !important;
            }
            p{
                font-size: 1em !important   ;
            }

            .section-content {
                flex-direction: column;
                text-align: center;
            }

            .section-image {
                margin-top: 30px;
            }

            nav {
                position: fixed;
                top: 0;
                right: 0;
                height: 100vh;
                width: 70%;
                background-color: rgba(13, 1, 38, 0.95);
                backdrop-filter: blur(20px);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                transform: translateX(100%);
                transition: transform 0.5s ease-in-out;
            }

            nav.active {
                transform: translateX(0);
            }

            nav ul {
                flex-direction: column;
                text-align: center;
            }

            nav ul li {
                margin: 20px 0;
            }

            .burger-menu {
                display: flex;
            }

            .burger-menu.active .line1 {
                transform: rotate(-45deg) translate(-5px, 6px);
            }

            .burger-menu.active .line2 {
                opacity: 0;
            }

            .burger-menu.active .line3 {
                transform: rotate(45deg) translate(-5px, -6px);
            }

            .feedback-slider {
                max-width: 90%;
            }

            .cookie-banner {
                flex-direction: column;
                text-align: center;
            }
        }

