
        :root {
            --primary: #FF5E7D;
            --secondary: #47B8E0;
            --accent: #FFD166;
            --dark: #2D3047;
            --light: #F7F7FF;
            --retro-dark: #1A1B25;
            --retro-light: #E2E2E2;
            --retro-accent: #FF3864;
            --retro-secondary: #00CFC1;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Courier New', monospace;
        }

        body {
            background-color: var(--retro-dark);
            color: var(--retro-light);
            line-height: 1.6;
            padding-top: 80px;
            overflow-x: hidden;
            background-image: 
                linear-gradient(rgba(26, 27, 37, 0.9), rgba(26, 27, 37, 0.9)),
                url('https://images.unsplash.com/photo-1531969179221-3946e6b5a5e7?w=500&auto=format&fit=crop&q=60&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8Mnx8dGVhfGVufDB8fDB8fHww');
            background-attachment: fixed;
            background-size: cover;
            background-position: center;
        }

        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(45, 48, 71, 0.9);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 15px 0;
            border-bottom: 3px solid var(--retro-accent);
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .logo {
            display: flex;
            align-items: center;
            color: var(--retro-secondary);
            font-weight: bold;
            font-size: 24px;
            text-decoration: none;
        }

        .logo img {
            height: 40px;
            margin-right: 10px;
        }

        nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li {
            margin-left: 30px;
        }

        nav ul li a {
            color: var(--retro-light);
            text-decoration: none;
            font-weight: bold;
            transition: color 0.3s;
            position: relative;
        }

        nav ul li a:hover {
            color: var(--retro-secondary);
        }

        nav ul li a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--retro-accent);
            transition: width 0.3s;
        }

        nav ul li a:hover::after {
            width: 100%;
        }

        .burger {
            display: none;
            cursor: pointer;
        }

        .burger div {
            width: 25px;
            height: 3px;
            background-color: var(--retro-light);
            margin: 5px;
            transition: all 0.3s ease;
        }

        section {
            padding: 80px 20px;
            max-width: 1200px;
            margin: 0 auto;
        }

        h1, h2, h3 {
            color: var(--retro-secondary);
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        h1 {
            font-size: 48px;
            line-height: 1.2;
            text-shadow: 0 0 10px rgba(0, 207, 193, 0.3);
            animation: glow 2s infinite alternate;
        }

        h2 {
            font-size: 36px;
            border-bottom: 2px solid var(--retro-accent);
            padding-bottom: 10px;
            display: inline-block;
        }

        h3 {
            font-size: 24px;
            color: var(--retro-light);
        }

        p {
            margin-bottom: 20px;
            font-size: 18px;
        }

        .btn {
            display: inline-block;
            background-color: var(--retro-accent);
            color: var(--retro-dark);
            padding: 12px 30px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
            font-size: 18px;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 5px 15px rgba(255, 56, 100, 0.4);
        }

        .btn:hover {
            background-color: var(--retro-secondary);
            color: var(--retro-dark);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 207, 193, 0.4);
        }

        .hero {
            text-align: center;
            padding: 120px 20px;
            position: relative;
            overflow: hidden;
        }

        .hero-content {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .hero p {
            font-size: 20px;
            margin-bottom: 30px;
            color: var(--retro-light);
        }

        .hero-image {
            margin: 40px auto;
            width: 100%;
            max-width: 500px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
            transform: perspective(1000px) rotateY(-5deg);
            transition: transform 0.5s;
        }

        .hero-image:hover {
            transform: perspective(1000px) rotateY(5deg);
        }

        .hero-image img {
            width: 100%;
            height: auto;
            display: block;
        }

        .about {
            background-color: rgba(45, 48, 71, 0.7);
            border-radius: 10px;
            padding: 40px;
            margin-bottom: 40px;
            position: relative;
            overflow: hidden;
        }

        .about::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, transparent 65%, rgba(255, 94, 125, 0.1) 100%);
            z-index: -1;
        }

        .features {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin-top: 40px;
        }

        .feature {
            flex: 0 0 calc(33.333% - 20px);
            margin-bottom: 30px;
            background-color: rgba(26, 27, 37, 0.7);
            padding: 30px;
            border-radius: 10px;
            border-left: 4px solid var(--retro-secondary);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .feature:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .feature h3 {
            color: var(--retro-secondary);
            margin-bottom: 15px;
            font-size: 20px;
        }

        .feature-icon {
            font-size: 40px;
            margin-bottom: 20px;
            color: var(--retro-accent);
        }

        .product {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            margin-bottom: 60px;
        }

        .product-image {
            flex: 0 0 50%;
            padding: 20px;
        }

        .product-image img {
            width: 100%;
            border-radius: 10px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            transition: transform 0.5s;
        }

        .product-image img:hover {
            transform: scale(1.03);
        }

        .product-content {
            flex: 0 0 50%;
            padding: 20px;
        }

        .ingredients {
            margin-top: 30px;
        }

        .ingredients ul {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            margin-top: 15px;
        }

        .ingredients li {
            background-color: rgba(255, 94, 125, 0.2);
            color: var(--retro-light);
            padding: 8px 15px;
            border-radius: 20px;
            margin-right: 10px;
            margin-bottom: 10px;
            font-size: 14px;
        }

        .pricing {
            text-align: center;
            margin-bottom: 60px;
        }

        .price-cards {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 40px;
            gap: 30px;
        }

        .price-card {
            background-color: rgba(45, 48, 71, 0.8);
            border-radius: 10px;
            padding: 40px 30px;
            width: 300px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            transition: transform 0.3s, box-shadow 0.3s;
            border-top: 5px solid var(--retro-secondary);
            position: relative;
            overflow: hidden;
        }

        .price-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 207, 193, 0.2);
        }

        .price-card.popular::before {
            content: 'POPULIARIAUSIA';
            position: absolute;
            top: 0;
            right: 0;
            background-color: var(--retro-accent);
            color: var(--retro-dark);
            padding: 5px 15px;
            font-size: 12px;
            font-weight: bold;
            border-bottom-left-radius: 10px;
        }

        .price-card h3 {
            font-size: 24px;
            margin-bottom: 20px;
        }

        .price {
            font-size: 36px;
            font-weight: bold;
            color: var(--retro-secondary);
            margin-bottom: 20px;
        }

        .price span {
            font-size: 16px;
            color: var(--retro-light);
        }

        .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(--retro-secondary);
            font-weight: bold;
        }

        .gallery {
            margin-bottom: 60px;
        }

        .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;
            transition: transform 0.3s;
        }

        .gallery-item:hover {
            transform: scale(1.05);
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .reviews {
            background-color: rgba(45, 48, 71, 0.7);
            border-radius: 10px;
            padding: 40px;
            margin-bottom: 60px;
        }

        .review-slider {
            position: relative;
            overflow: hidden;
            margin-top: 40px;
        }

        .review-track {
            display: flex;
            transition: transform 0.5s ease;
        }

        .review {
            min-width: 100%;
            padding: 30px;
            background-color: rgba(26, 27, 37, 0.7);
            border-radius: 10px;
            margin-right: 20px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }

        .review-header {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }

        .review-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 20px;
        }

        .review-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .review-author {
            font-weight: bold;
            font-size: 18px;
            color: var(--retro-secondary);
        }

        .review-date {
            font-size: 14px;
            color: var(--retro-light);
            opacity: 0.7;
        }

        .review-rating {
            color: var(--accent);
            margin-top: 5px;
            font-size: 16px;
        }

        .review-rating span {
            color: var(--retro-secondary);
        }

        .slider-nav {
            display: flex;
            justify-content: center;
            margin-top: 30px;
        }

        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.3);
            margin: 0 5px;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .slider-dot.active {
            background-color: var(--retro-secondary);
        }

        .faq {
            margin-bottom: 60px;
        }

        .faq-item {
            margin-bottom: 20px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            overflow: hidden;
        }

        .faq-question {
            padding: 20px;
            background-color: rgba(45, 48, 71, 0.5);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: bold;
            transition: background-color 0.3s;
        }

        .faq-question:hover {
            background-color: rgba(45, 48, 71, 0.7);
        }

        .faq-question::after {
            content: '+';
            font-size: 24px;
            color: var(--retro-secondary);
        }

        .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;
            background-color: rgba(26, 27, 37, 0.5);
        }

        .faq-answer.show {
            padding: 20px;
            max-height: 500px;
        }

        .contact {
            background-color: rgba(45, 48, 71, 0.7);
            border-radius: 10px;
            padding: 40px;
            margin-bottom: 60px;
        }

        .contact-form {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-top: 30px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group.full-width {
            grid-column: span 2;
        }

        label {
            display: block;
            margin-bottom: 8px;
            color: var(--retro-secondary);
            font-weight: bold;
        }

        input, textarea {
            width: 100%;
            padding: 12px 15px;
            background-color: rgba(26, 27, 37, 0.7);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 5px;
            color: var(--retro-light);
            font-size: 16px;
            transition: border-color 0.3s;
        }

        input:focus, textarea:focus {
            outline: none;
            border-color: var(--retro-secondary);
        }

        textarea {
            min-height: 150px;
            resize: vertical;
        }

        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            z-index: 2000;
            justify-content: center;
            align-items: center;
        }

        .modal-content {
            background-color: var(--retro-dark);
            padding: 40px;
            border-radius: 10px;
            max-width: 500px;
            width: 90%;
            text-align: center;
            position: relative;
            border: 2px solid var(--retro-accent);
        }

        .modal-close {
            position: absolute;
            top: 10px;
            right: 10px;
            font-size: 24px;
            cursor: pointer;
            color: var(--retro-light);
        }

        .modal h2 {
            color: var(--retro-secondary);
            margin-bottom: 20px;
        }

        .disclaimer {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.6);
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: var(--dark);
            padding: 20px;
            z-index: 1000;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
            transform: translateY(100%);
            transition: transform 0.3s;
        }

        .cookie-banner.show {
            transform: translateY(0);
        }

        .cookie-text {
            flex: 1;
            margin-right: 20px;
            margin-bottom: 10px;
        }

        .cookie-banner .btn {
            margin-bottom: 10px;
        }

        footer {
            background-color: var(--dark);
            color: var(--retro-light);
            padding: 60px 0 30px;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
            color: var(--retro-secondary);
            font-weight: bold;
            font-size: 20px;
        }

        .footer-logo img {
            height: 30px;
            margin-right: 10px;
        }

        .footer-about p {
            margin-bottom: 20px;
            font-size: 14px;
        }

        .footer-links h3 {
            color: var(--retro-secondary);
            margin-bottom: 20px;
            font-size: 18px;
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links ul li {
            margin-bottom: 10px;
        }

        .footer-links ul li a {
            color: var(--retro-light);
            text-decoration: none;
            transition: color 0.3s;
            font-size: 14px;
        }

        .footer-links ul li a:hover {
            color: var(--retro-secondary);
        }

        .footer-contact h3 {
            color: var(--retro-secondary);
            margin-bottom: 20px;
            font-size: 18px;
        }

        .contact-info {
            margin-bottom: 20px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }

        .contact-icon {
            margin-right: 10px;
            color: var(--retro-secondary);
            font-size: 20px;
        }

        .social-links {
            display: flex;
            margin-top: 20px;
        }

        .social-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.1);
            margin-right: 10px;
            transition: background-color 0.3s;
            color: var(--retro-light);
            text-decoration: none;
            font-size: 18px;
        }

        .social-link:hover {
            background-color: var(--retro-secondary);
            color: var(--retro-dark);
        }

        .copyright {
            text-align: center;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 14px;
            color: rgba(255, 255, 255, 0.6);
        }

        @keyframes glow {
            from {
                text-shadow: 0 0 10px rgba(0, 207, 193, 0.3);
            }
            to {
                text-shadow: 0 0 20px rgba(0, 207, 193, 0.6), 0 0 30px rgba(0, 207, 193, 0.4);
            }
        }

        @media (max-width: 992px) {
            .feature {
                flex: 0 0 calc(50% - 15px);
            }

            .product-image, .product-content {
                flex: 0 0 100%;
            }

            .product-image {
                order: -1;
            }
        }

        @media (max-width: 768px) {
            h1 {
                font-size: 36px;
            }

            h2 {
                font-size: 28px;
            }

            .header-container {
                padding: 0 15px;
            }

            nav {
                position: absolute;
                top: 80px;
                left: 0;
                width: 100%;
                background-color: rgba(45, 48, 71, 0.95);
                backdrop-filter: blur(10px);
                padding: 20px;
                transform: translateY(-150%);
                transition: transform 0.4s ease;
                z-index: 999;
            }

            nav.active {
                transform: translateY(0);
            }

            nav ul {
                flex-direction: column;
            }

            nav ul li {
                margin: 0 0 15px 0;
            }

            .burger {
                display: block;
            }

            .burger.active div:nth-child(1) {
                transform: rotate(-45deg) translate(-5px, 6px);
            }

            .burger.active div:nth-child(2) {
                opacity: 0;
            }

            .burger.active div:nth-child(3) {
                transform: rotate(45deg) translate(-5px, -6px);
            }

            .feature {
                flex: 0 0 100%;
            }

            .contact-form {
                grid-template-columns: 1fr;
            }

            .form-group.full-width {
                grid-column: span 1;
            }
        }

        @media (max-width: 576px) {
            section {
                padding: 60px 15px;
            }

            .hero {
                padding: 80px 15px;
            }

            .about, .reviews, .contact {
                padding: 30px 20px;
            }

            .price-cards {
                flex-direction: column;
                align-items: center;
            }

            .price-card {
                width: 100%;
                max-width: 300px;
            }
        }
