:root {
            --primary-color: #00FFFF;
            --secondary-color: #FF00FF;
            --tertiary-color: #8A2BE2;
            --background-color: #1a1a1a;
            --text-color: #FFFFFF;
            --font-family: 'Press Start 2P', cursive;
        }

        @font-face {
            font-family: 'Press Start 2P';
            src: url('https://fonts.gstatic.com/s/pressstart2p/v14/87gXNl-BfO1_b12jU9fJvD_v1uU-N0k6v0Y.woff2') format('woff2');
            font-weight: 400;
            font-style: normal;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Arial', sans-serif;
            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 {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: rgba(26, 26, 26, 0.9);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 20px 0;
            transition: all 0.3s ease-in-out;
            border-bottom: 2px solid var(--primary-color);
            font-family: var(--font-family);
        }

        header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo a {
            font-size: 24px;
            text-decoration: none;
            color: var(--primary-color);
            text-shadow: 2px 2px var(--secondary-color);
            transition: color 0.3s ease;
        }

        .logo a:hover {
            color: var(--secondary-color);
        }

        nav ul {
            list-style: none;
            display: flex;
            gap: 30px;
        }

        nav a {
            text-decoration: none;
            color: var(--text-color);
            font-size: 16px;
            text-transform: uppercase;
            transition: color 0.3s ease;
            position: relative;
        }

        nav a:hover {
            color: var(--primary-color);
        }

        nav a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            display: block;
            margin-top: 5px;
            right: 0;
            background: var(--primary-color);
            transition: width 0.4s ease;
        }

        nav a:hover::after {
            width: 100%;
            left: 0;
            background: var(--primary-color);
        }
        
        .burger-menu {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
        }

        .burger-menu span {
            display: block;
            width: 25px;
            height: 3px;
            background-color: var(--primary-color);
            transition: all 0.3s ease-in-out;
        }

        .burger-menu.open span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .burger-menu.open span:nth-child(2) {
            opacity: 0;
        }

        .burger-menu.open span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }

        @media (max-width: 768px) {
            nav {
                display: none;
            }

            nav.active {
                display: flex;
                flex-direction: column;
                position: absolute;
                top: 80px;
                left: 0;
                width: 100%;
                background: rgba(26, 26, 26, 0.95);
                backdrop-filter: blur(10px);
                padding: 20px 0;
                border-top: 2px solid var(--primary-color);
            }

            nav.active ul {
                flex-direction: column;
                text-align: center;
                gap: 20px;
            }

            nav.active a {
                font-size: 20px;
            }

            .burger-menu {
                display: flex;
            }
        }
        
        main {
            padding-top: 100px;
        }

        section {
            padding: 80px 0;
            min-height: 100vh;
            display: flex;
            align-items: center;
        }
        
        .hero {
            position: relative;
            background-image: url('../img/06.webp');
            background-size: cover;
            background-position: center;
            color: var(--text-color);
            text-align: center;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            z-index: 1;
        }

        .hero .container {
            position: relative;
            z-index: 2;
        }
        
        .hero h1 {
            font-size: 60px;
            margin-bottom: 20px;
            font-family: var(--font-family);
            text-shadow: 4px 4px var(--tertiary-color);
            animation: fadeIn 2s ease-in-out;
        }

        .hero p {
            font-size: 24px;
            margin-bottom: 40px;
            animation: fadeIn 2.5s ease-in-out;
        }
        
        .cta-button {
            display: inline-block;
            padding: 15px 30px;
            background-color: var(--primary-color);
            color: var(--background-color);
            text-decoration: none;
            font-size: 18px;
            font-weight: bold;
            text-transform: uppercase;
            border: 3px solid var(--primary-color);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .cta-button:hover {
            color: var(--primary-color);
            background-color: var(--background-color);
            box-shadow: 0 0 10px var(--primary-color), 0 0 20px var(--primary-color);
        }

        .about, .products, .prices, .gallery, .feedback, .faq {
            background-color: var(--background-color);
        }

        h2 {
            font-family: var(--font-family);
            font-size: 48px;
            text-align: center;
            margin-bottom: 60px;
            color: var(--primary-color);
            text-shadow: 2px 2px var(--secondary-color);
        }

        h3 {
            font-family: var(--font-family);
            font-size: 28px;
            margin-bottom: 20px;
            color: var(--secondary-color);
        }
        
        .about-content {
            display: flex;
            gap: 40px;
            align-items: center;
        }
        
        .about-text {
            flex: 1;
        }
        
        .about-image {
            flex: 1;
            text-align: center;
            transform: translateX(50px);
            opacity: 0;
            transition: all 1s ease-out;
        }

        .about-image.fade-in {
            transform: translateX(0);
            opacity: 1;
        }
        
        .about-image img {
            max-width: 100%;
            border: 4px solid var(--secondary-color);
            box-shadow: 10px 10px 0 var(--tertiary-color);
        }
        
        .product-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
        }

        .product-card {
            background: #2a2a2a;
            padding: 30px;
            text-align: center;
            border: 2px solid var(--secondary-color);
            box-shadow: 5px 5px 0 var(--primary-color);
            transition: transform 0.3s ease;
        }

        .product-card:hover {
            transform: translateY(-10px);
        }

        .product-card h3 {
            color: var(--primary-color);
            text-shadow: none;
        }

        .product-card p {
            margin-bottom: 20px;
        }
        
        .price-cards {
            display: flex;
            justify-content: center;
            gap: 40px;
            flex-wrap: wrap;
        }

        .price-card {
            background: #2a2a2a;
            border: 2px solid var(--tertiary-color);
            box-shadow: 8px 8px 0 var(--secondary-color);
            padding: 30px;
            text-align: center;
            width: 300px;
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease-in-out;
        }

        .price-card:hover {
            transform: scale(1.05);
            background: #333;
        }

        .price-card h3 {
            font-size: 24px;
            color: var(--secondary-color);
        }
        
        .price-card .price {
            font-size: 40px;
            font-family: var(--font-family);
            margin: 20px 0;
            color: var(--primary-color);
        }

        .price-card ul {
            list-style: none;
            text-align: left;
            margin-bottom: 30px;
        }
        
        .price-card li {
            margin-bottom: 10px;
            position: relative;
            padding-left: 20px;
        }

        .price-card li::before {
            content: '>';
            color: var(--primary-color);
            position: absolute;
            left: 0;
        }
        
        .gallery-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            padding: 20px 0;
        }

        .gallery-item {
            overflow: hidden;
            position: relative;
            border: 3px solid var(--primary-color);
            transition: transform 0.3s ease;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.5s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .feedback .container{
            width: 100%;
        }
        
        .feedback-slider {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
            overflow: hidden;
        }

        .slides {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }

        .slide {
            min-width: 100%;
            text-align: center;
            padding: 40px;
            background: #2a2a2a;
            border: 2px solid var(--secondary-color);
            box-shadow: 5px 5px 0 var(--tertiary-color);
        }
        
        .slide img {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            border: 2px solid var(--primary-color);
            margin-bottom: 20px;
        }

        .slide p {
            font-style: italic;
            margin-bottom: 10px;
        }

        .slide .author {
            font-weight: bold;
            color: var(--primary-color);
        }
        
        .faq-items {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .faq-item {
            margin-bottom: 20px;
            border: 1px solid var(--tertiary-color);
            padding: 20px;
            background: #2a2a2a;
            cursor: pointer;
            transition: background 0.3s ease;
        }

        .faq-item:hover {
            background: #333;
        }
        
        .faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: bold;
            color: var(--primary-color);
        }
        
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease-out;
            padding-top: 0;
        }
        
        .faq-answer.open {
            max-height: 200px;
            padding-top: 20px;
        }

        .contact-form-container {
            max-width: 600px;
            margin: 0 auto;
            background: #2a2a2a;
            padding: 40px;
            border: 2px solid var(--primary-color);
            box-shadow: 10px 10px 0 var(--secondary-color);
        }
        
        .contact-form label {
            display: block;
            margin-bottom: 5px;
            color: var(--primary-color);
        }

        .contact-form input {
            width: 100%;
            padding: 10px;
            margin-bottom: 20px;
            border: 1px solid var(--secondary-color);
            background: var(--background-color);
            color: var(--text-color);
        }

        .contact-form button {
            width: 100%;
            padding: 15px;
            background: var(--tertiary-color);
            color: var(--text-color);
            border: none;
            cursor: pointer;
            font-size: 18px;
            font-weight: bold;
            transition: background 0.3s ease;
        }

        .contact-form button:hover {
            background: var(--secondary-color);
        }

        .popup {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: #2a2a2a;
            border: 2px solid var(--primary-color);
            padding: 30px;
            text-align: center;
            z-index: 2000;
            box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
            display: none;
        }
        
        .popup-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            z-index: 1999;
            display: none;
        }
        
        footer {
            background: #111;
            color: #999;
            padding: 40px 0;
            text-align: center;
            border-top: 2px solid var(--tertiary-color);
        }

        footer .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }

        .footer-logo {
            font-family: var(--font-family);
            font-size: 24px;
            color: var(--primary-color);
            text-shadow: 2px 2px var(--secondary-color);
            margin-bottom: 20px;
        }

        .footer-links ul {
            list-style: none;
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            justify-content: center;
            margin-bottom: 20px;
        }

        .footer-links a {
            color: #999;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--primary-color);
        }
        
        .footer-contacts p {
            margin-bottom: 10px;
        }

        .disclaimer {
            text-align: center;
            font-size: 12px;
            color: #555;
            padding: 20px;
            border-top: 1px solid #333;
        }

        .cookie-banner {
            position: fixed;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            width: 90%;
            max-width: 500px;
            background: #2a2a2a;
            border: 2px solid var(--primary-color);
            box-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
            padding: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 2000;
            animation: slideUp 0.5s ease-out;
        }

        .cookie-banner p {
            font-size: 14px;
        }

        .cookie-banner a {
            color: var(--primary-color);
            text-decoration: underline;
        }
        
        .cookie-banner button {
            background: var(--tertiary-color);
            color: var(--text-color);
            border: none;
            padding: 10px 15px;
            cursor: pointer;
            transition: background 0.3s ease;
        }

        .cookie-banner button:hover {
            background: var(--secondary-color);
        }

        @keyframes slideUp {
            from {
                transform: translateX(-50%) translateY(100%);
                opacity: 0;
            }
            to {
                transform: translateX(-50%) translateY(0);
                opacity: 1;
            }
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .animate-on-scroll {
            opacity: 0;
            transform: translateY(50px);
            transition: all 1s ease-out;
        }
        
        .visible .animate-on-scroll{
            opacity: 1;
            transform: translateY(0);
        }

        @media (max-width: 768px) {
            h1 {
                font-size: 32px !important;
            }
            h2 {
                font-size: 24px !important;
            }
            .about-content {
                flex-direction: column;
            }
            .footer .container {
                flex-direction: column;
            }
        }

