/* Vaporwave стиль с неоновыми цветами */
        :root {
            --primary-color: #ff00ff;
            --secondary-color: #00ffff;
            --dark-bg: #1a0033;
            --light-text: #ffffff;
            --dark-text: #333333;
            --accent-color: #ff00aa;
            --section-bg: rgba(26, 0, 51, 0.8);
            --gradient-1: linear-gradient(135deg, #ff00ff, #00ffff);
            --gradient-2: linear-gradient(135deg, #00ffff, #ff00ff);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        
        body {
            background-color: var(--dark-bg);
            color: var(--light-text);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        /* Header стили */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            background-color: rgba(26, 0, 51, 0.9);
            z-index: 1000;
            padding: 15px 0;
            box-shadow: 0 0 15px rgba(255, 0, 255, 0.5);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 24px;
            font-weight: bold;
            color: var(--primary-color);
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 0 0 10px var(--primary-color);
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 25px;
        }
        
        nav ul li a {
            color: var(--light-text);
            text-decoration: none;
            font-size: 16px;
            text-transform: uppercase;
            transition: all 0.3s ease;
            position: relative;
        }
        
        nav ul li a:hover {
            color: var(--secondary-color);
            text-shadow: 0 0 5px var(--secondary-color);
        }
        
        .burger-menu {
            display: none;
            cursor: pointer;
        }
        
        .burger-menu div {
            width: 25px;
            height: 3px;
            background-color: var(--light-text);
            margin: 5px 0;
            transition: all 0.3s ease;
        }
        
        /* Hero секция */
        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            background: linear-gradient(rgba(26, 0, 51, 0.7), rgba(26, 0, 51, 0.7)), url('../img/02.webp');
            background-size: cover;
            background-position: center;
            position: relative;
        }
        
        .hero-content {
            max-width: 800px;
            padding: 20px;
            z-index: 1;
        }
        
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            color: var(--primary-color);
            text-transform: uppercase;
            letter-spacing: 3px;
            text-shadow: 0 0 15px var(--primary-color);
            animation: glow 2s infinite alternate;
        }
        
        @keyframes glow {
            from {
                text-shadow: 0 0 10px var(--primary-color), 0 0 20px var(--primary-color);
            }
            to {
                text-shadow: 0 0 20px var(--primary-color), 0 0 30px var(--primary-color);
            }
        }
        
        .hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            color: var(--light-text);
        }
        
        .btn {
            display: inline-block;
            padding: 12px 30px;
            background: var(--gradient-1);
            color: var(--light-text);
            border: none;
            text-transform: uppercase;
            text-decoration: none;
            font-weight: bold;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--gradient-2);
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: -1;
        }
        
        .btn:hover::before {
            opacity: 1;
        }
        
        /* About секция */
        .about {
            padding: 100px 0;
            background-color: var(--section-bg);
            position: relative;
            overflow: hidden;
        }
        
        .about::before {
            content: '';
            position: absolute;
            top: -50px;
            right: -50px;
            width: 200px;
            height: 200px;
            background: var(--gradient-1);
            border-radius: 50%;
            opacity: 0.3;
            z-index: 0;
        }
        
        .about::after {
            content: '';
            position: absolute;
            bottom: -50px;
            left: -50px;
            width: 200px;
            height: 200px;
            background: var(--gradient-2);
            border-radius: 50%;
            opacity: 0.3;
            z-index: 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
            position: relative;
            z-index: 1;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            color: var(--primary-color);
            text-transform: uppercase;
            letter-spacing: 2px;
            position: relative;
            display: inline-block;
            margin-bottom: 15px;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            width: 100px;
            height: 3px;
            background: var(--gradient-1);
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .about-content {
            display: flex;
            align-items: center;
            gap: 50px;
            position: relative;
            z-index: 1;
        }
        
        .about-text {
            flex: 1;
        }
        
        .about-text h3 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: var(--secondary-color);
        }
        
        .about-text p {
            margin-bottom: 20px;
            font-size: 1.1rem;
        }
        
        .about-image {
            flex: 1;
            text-align: center;
        }
        
        .about-image img {
            max-width: 100%;
            border: 3px solid var(--primary-color);
            box-shadow: 0 0 20px rgba(255, 0, 255, 0.5);
            transition: transform 0.3s ease;
        }
        
        .about-image img:hover {
            transform: scale(1.05);
        }
        
        /* Products секция */
        .products {
            padding: 100px 0;
            background-color: var(--dark-bg);
            position: relative;
            overflow: hidden;
        }
        
        .products::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="none" stroke="rgba(255,0,255,0.1)" stroke-width="1"/></svg>');
            z-index: 0;
        }
        
        .products-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            position: relative;
            z-index: 1;
        }
        
        .product-card {
            background-color: var(--section-bg);
            border: 1px solid var(--primary-color);
            padding: 25px;
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .product-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: var(--gradient-1);
            opacity: 0;
            transition: opacity 0.3s ease;
            transform: rotate(45deg);
            z-index: -1;
        }
        
        .product-card:hover::before {
            opacity: 0.2;
        }
        
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 0 20px rgba(255, 0, 255, 0.5);
        }
        
        .product-card img {
            max-width: 100%;
            height: 200px;
            object-fit: cover;
            margin-bottom: 20px;
            border: 1px solid var(--secondary-color);
        }
        
        .product-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--secondary-color);
        }
        
        .product-card p {
            margin-bottom: 20px;
        }
        
        /* Prices секция */
        .prices {
            padding: 100px 0;
            background-color: var(--section-bg);
            position: relative;
            overflow: hidden;
        }
        
        .prices::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 100px;
            background: var(--gradient-1);
            opacity: 0.2;
            transform: skewY(-2deg);
            z-index: 0;
        }
        
        .prices-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            position: relative;
            z-index: 1;
        }
        
        .price-card {
            background-color: var(--dark-bg);
            border: 1px solid var(--secondary-color);
            padding: 30px;
            text-align: center;
            position: relative;
            transition: all 0.3s ease;
            overflow: hidden;
        }
        
        .price-card.featured {
            border: 2px solid var(--primary-color);
            transform: scale(1.05);
        }
        
        .price-card.featured::before {
            content: 'AANBEVOLEN';
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--gradient-1);
            color: var(--light-text);
            padding: 5px 15px;
            font-size: 0.9rem;
            text-transform: uppercase;
            z-index: 1;
        }
        
        .price-card h3 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: var(--secondary-color);
        }
        
        .price {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--primary-color);
            margin-bottom: 20px;
        }
        
        .price-card ul {
            list-style: none;
            margin-bottom: 30px;
        }
        
        .price-card ul li {
            margin-bottom: 10px;
            position: relative;
            padding-left: 25px;
        }
        
        .price-card ul li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--secondary-color);
        }
        
        /* Gallery секция */
        .gallery {
            padding: 100px 0;
            background-color: var(--dark-bg);
            position: relative;
            overflow: hidden;
        }
        
        .gallery::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 300px;
            height: 300px;
            background: var(--gradient-2);
            opacity: 0.2;
            border-radius: 50%;
            transform: translate(50%, -50%);
            z-index: 0;
        }
        
        .gallery-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            position: relative;
            z-index: 1;
        }
        
        .gallery-item {
            position: relative;
            overflow: hidden;
            height: 250px;
            border: 1px solid var(--primary-color);
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        
        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(rgba(26, 0, 51, 0.7), rgba(26, 0, 51, 0.7));
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }
        
        .gallery-overlay p {
            color: var(--light-text);
            font-size: 1.2rem;
            text-transform: uppercase;
            text-align: center;
            padding: 0 20px;
        }
        
        /* Feedback секция */
        .feedback {
            padding: 100px 0;
            background-color: var(--section-bg);
            position: relative;
            overflow: hidden;
        }
        
        .feedback::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 100px;
            background: var(--gradient-2);
            opacity: 0.2;
            transform: skewY(2deg);
            z-index: 0;
        }
        
        .feedback-container {
            position: relative;
            z-index: 1;
        }
        
        .feedback-slider {
            position: relative;
            overflow: hidden;
        }
        
        .feedback-track {
            display: flex;
            transition: transform 0.5s ease;
        }
        
        .feedback-item {
            min-width: 100%;
            padding: 30px;
            background-color: var(--dark-bg);
            border: 1px solid var(--primary-color);
            text-align: center;
        }
        
        .feedback-item p {
            font-style: italic;
            margin-bottom: 20px;
            font-size: 1.1rem;
        }
        
        .feedback-item h4 {
            font-size: 1.2rem;
            color: var(--secondary-color);
            margin-bottom: 5px;
        }
        
        .feedback-item .rating {
            color: var(--primary-color);
            margin-bottom: 15px;
        }
        
        .feedback-controls {
            text-align: center;
            margin-top: 30px;
        }
        
        .feedback-btn {
            background: var(--gradient-1);
            color: var(--light-text);
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            margin: 0 10px;
            cursor: pointer;
            font-size: 18px;
            transition: all 0.3s ease;
        }
        
        .feedback-btn:hover {
            transform: scale(1.1);
        }
        
        /* FAQ секция */
        .faq {
            padding: 100px 0;
            background-color: var(--dark-bg);
            position: relative;
            overflow: hidden;
        }
        
        .faq::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 300px;
            height: 300px;
            background: var(--gradient-1);
            opacity: 0.2;
            border-radius: 50%;
            transform: translate(-50%, -50%);
            z-index: 0;
        }
        
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }
        
        .faq-item {
            margin-bottom: 20px;
            border: 1px solid var(--secondary-color);
            overflow: hidden;
        }
        
        .faq-question {
            background: var(--gradient-2);
            color: var(--light-text);
            padding: 15px 20px;
            font-size: 1.1rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .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: 500px;
        }
        
        /* Contact секция */
        .contact {
            padding: 100px 0;
            background-color: var(--section-bg);
            position: relative;
            overflow: hidden;
        }
        
        .contact::before {
            content: '';
            position: absolute;
            top: 50%;
            right: 0;
            width: 300px;
            height: 300px;
            background: var(--gradient-1);
            opacity: 0.2;
            border-radius: 50%;
            transform: translate(50%, -50%);
            z-index: 0;
        }
        
        .contact-form {
            max-width: 600px;
            margin: 0 auto;
            background-color: var(--dark-bg);
            padding: 30px;
            border: 1px solid var(--primary-color);
            position: relative;
            z-index: 1;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: bold;
            color: var(--secondary-color);
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px;
            background-color: var(--section-bg);
            border: 1px solid var(--secondary-color);
            color: var(--light-text);
            font-size: 16px;
        }
        
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary-color);
        }
        
        .contact-form .btn {
            width: 100%;
            padding: 15px;
            font-size: 1.1rem;
        }
        
        /* Disclaimer */
        .disclaimer {
            background-color: var(--dark-bg);
            color: var(--light-text);
            padding: 20px;
            text-align: center;
            font-size: 0.9rem;
            border-top: 1px solid var(--primary-color);
        }
        
        /* Footer */
        footer {
            background-color: var(--dark-bg);
            color: var(--light-text);
            padding: 50px 0 20px;
            position: relative;
            overflow: hidden;
        }
        
        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--gradient-1);
        }
        
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
            position: relative;
            z-index: 1;
        }
        
        .footer-col h3 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            color: var(--secondary-color);
            text-transform: uppercase;
        }
        
        .footer-col ul {
            list-style: none;
        }
        
        .footer-col ul li {
            margin-bottom: 10px;
        }
        
        .footer-col ul li a {
            color: var(--light-text);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-col ul li a:hover {
            color: var(--secondary-color);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
        }
        
        /* Cookie баннер */
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background-color: var(--dark-bg);
            color: var(--light-text);
            padding: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            transform: translateY(100%);
            transition: transform 0.3s ease;
            border-top: 1px solid var(--primary-color);
        }
        
        .cookie-banner.active {
            transform: translateY(0);
        }
        
        .cookie-text {
            flex: 1;
            padding-right: 20px;
        }
        
        .cookie-buttons {
            display: flex;
            gap: 10px;
        }
        
        .cookie-btn {
            padding: 8px 15px;
            border: none;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s ease;
        }
        
        .accept-btn {
            background: var(--gradient-1);
            color: var(--light-text);
        }
        
        .decline-btn {
            background-color: transparent;
            color: var(--light-text);
            border: 1px solid var(--light-text);
        }
        
        .decline-btn:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }
        
        /* Модальное окно */
        .modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 2000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        
        .modal.active {
            opacity: 1;
            visibility: visible;
        }
        
        .modal-content {
            background-color: var(--dark-bg);
            padding: 30px;
            border: 2px solid var(--primary-color);
            text-align: center;
            max-width: 500px;
            width: 90%;
            transform: scale(0.7);
            transition: transform 0.3s ease;
        }
        
        .modal.active .modal-content {
            transform: scale(1);
        }
        
        .modal-content h3 {
            color: var(--secondary-color);
            margin-bottom: 15px;
            font-size: 1.5rem;
        }
        
        .modal-content p {
            margin-bottom: 20px;
        }
        
        .modal-btn {
            background: var(--gradient-1);
            color: var(--light-text);
            border: none;
            padding: 10px 20px;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s ease;
        }
        
        .modal-btn:hover {
            transform: scale(1.05);
        }
        
        /* Адаптивность */
        @media (max-width: 768px) {
            nav ul {
                position: fixed;
                top: 70px;
                left: 0;
                width: 100%;
                background-color: var(--dark-bg);
                flex-direction: column;
                align-items: center;
                padding: 20px 0;
                transform: translateY(-150%);
                transition: transform 0.3s ease;
                z-index: 100;
            }
            
            nav ul.active {
                transform: translateY(0);
            }
            
            nav ul li {
                margin: 10px 0;
            }
            
            .burger-menu {
                display: block;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .about-content {
                flex-direction: column;
            }
            
            .cookie-banner {
                flex-direction: column;
                text-align: center;
            }
            
            .cookie-text {
                padding-right: 0;
                margin-bottom: 15px;
            }
        }

