:root {
            --primary: #FF4D80;
            --secondary: #00E5FF;
            --accent: #FFEB3B;
            --dark: #1A1A2E;
            --light: #F5F5F5;
            --retro-purple: #6A00F4;
            --retro-pink: #FF0084;
            --retro-cyan: #00F0FF;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Courier New', monospace;
        }

        body {
            background-color: var(--dark);
            color: var(--light);
            line-height: 1.6;
            padding-top: 80px;
            background-image: 
                linear-gradient(rgba(26, 26, 46, 0.9), rgba(26, 26, 46, 0.9)),
                url('https://images.unsplash.com/photo-1571902943202-507ec2618e8f?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
            background-size: cover;
            background-attachment: fixed;
        }

        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(26, 26, 46, 0.95);
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            border-bottom: 3px solid var(--retro-pink);
        }

        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--retro-cyan);
            text-decoration: none;
            letter-spacing: 2px;
        }

        .logo span {
            color: var(--retro-pink);
        }

        nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li {
            margin-left: 2rem;
        }

        nav ul li a {
            color: var(--light);
            text-decoration: none;
            font-weight: bold;
            transition: color 0.3s;
            position: relative;
        }

        nav ul li a:hover {
            color: var(--retro-cyan);
        }

        nav ul li a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: var(--retro-pink);
            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(--light);
            margin: 5px;
            transition: all 0.3s ease;
        }

        section {
            padding: 4rem 2rem;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .hero {
            text-align: center;
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1571019613454-1cb2f99b2d8b?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            color: var(--retro-cyan);
            text-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
            animation: glow 2s infinite alternate;
        }

        @keyframes glow {
            from {
                text-shadow: 0 0 5px var(--retro-cyan);
            }
            to {
                text-shadow: 0 0 20px var(--retro-cyan), 0 0 30px var(--retro-purple);
            }
        }

        .hero p {
            font-size: 1.5rem;
            max-width: 800px;
            margin: 0 auto 2rem;
            color: var(--light);
        }

        .btn {
            display: inline-block;
            background-color: var(--retro-pink);
            color: var(--dark);
            padding: 0.8rem 2rem;
            border: none;
            border-radius: 50px;
            font-size: 1.2rem;
            font-weight: bold;
            text-decoration: none;
            cursor: pointer;
            transition: all 0.3s;
            margin: 0.5rem;
            box-shadow: 0 0 15px rgba(255, 0, 132, 0.5);
        }

        .btn:hover {
            background-color: var(--retro-cyan);
            color: var(--dark);
            transform: translateY(-5px);
            box-shadow: 0 0 20px rgba(0, 240, 255, 0.7);
        }

        .about {
            background-color: rgba(26, 26, 46, 0.8);
            border-top: 3px solid var(--retro-purple);
            border-bottom: 3px solid var(--retro-purple);
        }

        .section-title {
            font-size: 2.5rem;
            margin-bottom: 2rem;
            color: var(--retro-pink);
            text-align: center;
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background-color: var(--retro-cyan);
        }

        .about-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            gap: 2rem;
        }

        .about-text {
            flex: 1;
            min-width: 300px;
            padding: 1rem;
        }

        .about-image {
            flex: 1;
            min-width: 300px;
            text-align: center;
        }

        .about-image img {
            max-width: 100%;
            border-radius: 10px;
            box-shadow: 0 0 20px rgba(106, 0, 244, 0.5);
            transition: transform 0.5s;
        }

        .about-image img:hover {
            transform: scale(1.05);
        }

        .products {
            background-color: rgba(26, 26, 46, 0.9);
        }

        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .product-card {
            background-color: rgba(31, 31, 56, 0.8);
            border-radius: 10px;
            padding: 1.5rem;
            transition: transform 0.3s, box-shadow 0.3s;
            border: 1px solid var(--retro-purple);
            position: relative;
            overflow: hidden;
        }

        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 20px rgba(106, 0, 244, 0.3);
        }

        .product-card h3 {
            color: var(--retro-cyan);
            margin-bottom: 1rem;
            font-size: 1.5rem;
        }

        .product-card p {
            margin-bottom: 1.5rem;
        }

        .prices {
            background-color: rgba(26, 26, 46, 0.8);
            border-top: 3px solid var(--retro-pink);
            border-bottom: 3px solid var(--retro-pink);
        }

        .price-cards {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 2rem;
            margin-top: 2rem;
        }

        .price-card {
            background-color: rgba(31, 31, 56, 0.9);
            border-radius: 10px;
            padding: 2rem;
            width: 300px;
            text-align: center;
            transition: transform 0.3s;
            border: 2px solid var(--retro-purple);
            position: relative;
        }

        .price-card:hover {
            transform: scale(1.05);
            border-color: var(--retro-cyan);
        }

        .price-card h3 {
            color: var(--retro-pink);
            font-size: 1.8rem;
            margin-bottom: 1rem;
        }

        .price {
            font-size: 2.5rem;
            color: var(--retro-cyan);
            margin: 1rem 0;
            font-weight: bold;
        }

        .price-card ul {
            list-style: none;
            margin: 1.5rem 0;
            text-align: left;
        }

        .price-card ul li {
            margin-bottom: 0.5rem;
            position: relative;
            padding-left: 1.5rem;
        }

        .price-card ul li::before {
            content: '✓';
            color: var(--retro-pink);
            position: absolute;
            left: 0;
        }

        .gallery {
            background-color: rgba(26, 26, 46, 0.9);
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1rem;
            margin-top: 2rem;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            height: 250px;
            transition: transform 0.3s;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .gallery-item:hover {
            transform: translateY(-5px);
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .feedback {
            background-color: rgba(26, 26, 46, 0.8);
            border-top: 3px solid var(--retro-cyan);
            border-bottom: 3px solid var(--retro-cyan);
        }

        .testimonials {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
        }

        .testimonial-slide {
            background-color: rgba(31, 31, 56, 0.9);
            padding: 2rem;
            border-radius: 10px;
            margin: 1rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            border: 1px solid var(--retro-purple);
            text-align: center;
            display: none;
            animation: fade 1s;
        }

        @keyframes fade {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .testimonial-slide.active {
            display: block;
        }

        .testimonial-text {
            font-style: italic;
            margin-bottom: 1rem;
            position: relative;
        }

        .testimonial-text::before,
        .testimonial-text::after {
            content: '"';
            color: var(--retro-pink);
            font-size: 1.5rem;
        }

        .testimonial-author {
            font-weight: bold;
            color: var(--retro-cyan);
            margin-top: 1rem;
        }

        .testimonial-controls {
            text-align: center;
            margin-top: 1rem;
        }

        .testimonial-controls button {
            background: none;
            border: none;
            color: var(--light);
            font-size: 1.5rem;
            margin: 0 0.5rem;
            cursor: pointer;
            transition: color 0.3s;
        }

        .testimonial-controls button:hover {
            color: var(--retro-pink);
        }

        .faq {
            background-color: rgba(26, 26, 46, 0.9);
        }

        .accordion {
            max-width: 800px;
            margin: 0 auto;
        }

        .accordion-item {
            margin-bottom: 1rem;
            border: 1px solid var(--retro-purple);
            border-radius: 5px;
            overflow: hidden;
        }

        .accordion-header {
            background-color: rgba(31, 31, 56, 0.9);
            padding: 1rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background-color 0.3s;
        }

        .accordion-header:hover {
            background-color: rgba(106, 0, 244, 0.2);
        }

        .accordion-header h3 {
            color: var(--retro-cyan);
            margin: 0;
            font-size: 1.2rem;
        }

        .accordion-content {
            background-color: rgba(31, 31, 56, 0.7);
            padding: 0 1rem;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out;
        }

        .accordion-content p {
            padding: 1rem 0;
        }

        .accordion-item.active .accordion-content {
            max-height: 500px;
        }

        .contact-form {
            max-width: 600px;
            margin: 2rem auto;
            background-color: rgba(31, 31, 56, 0.9);
            padding: 2rem;
            border-radius: 10px;
            border: 1px solid var(--retro-purple);
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: var(--retro-cyan);
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 0.8rem;
            border: 1px solid var(--retro-purple);
            border-radius: 5px;
            background-color: rgba(26, 26, 46, 0.8);
            color: var(--light);
        }

        .form-group textarea {
            min-height: 150px;
        }

        .disclaimer {
            background-color: rgba(26, 26, 46, 0.9);
            padding: 1rem;
            text-align: center;
            font-size: 0.8rem;
            color: #999;
            border-top: 1px solid var(--retro-purple);
        }

        footer {
            background-color: rgba(26, 26, 46, 0.95);
            color: var(--light);
            padding: 3rem 2rem;
            text-align: center;
            border-top: 3px solid var(--retro-pink);
        }

        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-around;
            max-width: 1200px;
            margin: 0 auto;
            gap: 2rem;
        }

        .footer-section {
            flex: 1;
            min-width: 250px;
            text-align: left;
        }

        .footer-section h3 {
            color: var(--retro-cyan);
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 0.8rem;
        }

        .footer-section ul li a {
            color: var(--light);
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-section ul li a:hover {
            color: var(--retro-pink);
        }

        .contact-info {
            margin-top: 1rem;
        }

        .contact-info p {
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
        }

        .contact-info i {
            margin-right: 0.5rem;
            color: var(--retro-pink);
        }

        .copyright {
            margin-top: 2rem;
            padding-top: 1rem;
            border-top: 1px solid var(--retro-purple);
            font-size: 0.9rem;
        }

        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background-color: rgba(31, 31, 56, 0.95);
            padding: 1rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            z-index: 1000;
            border-top: 2px solid var(--retro-pink);
            transform: translateY(100%);
            transition: transform 0.3s ease-out;
        }

        .cookie-banner.show {
            transform: translateY(0);
        }

        .cookie-text {
            flex: 1;
            min-width: 250px;
            margin-bottom: 1rem;
        }

        .cookie-buttons {
            display: flex;
            gap: 1rem;
        }

        .cookie-btn {
            padding: 0.5rem 1rem;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            transition: all 0.3s;
        }

        .cookie-accept {
            background-color: var(--retro-pink);
            color: var(--dark);
        }

        .cookie-decline {
            background-color: transparent;
            color: var(--light);
            border: 1px solid var(--light);
        }

        .cookie-btn:hover {
            transform: translateY(-2px);
        }

        .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: rgba(31, 31, 56, 0.95);
            padding: 2rem;
            border-radius: 10px;
            max-width: 500px;
            width: 90%;
            text-align: center;
            border: 2px solid var(--retro-cyan);
            position: relative;
            animation: modalFadeIn 0.5s;
        }

        @keyframes modalFadeIn {
            from {
                opacity: 0;
                transform: translateY(-50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .close-modal {
            position: absolute;
            top: 10px;
            right: 10px;
            font-size: 1.5rem;
            color: var(--light);
            cursor: pointer;
            transition: color 0.3s;
        }

        .close-modal:hover {
            color: var(--retro-pink);
        }

        .modal h3 {
            color: var(--retro-cyan);
            margin-bottom: 1rem;
            font-size: 1.8rem;
        }

        .modal p {
            margin-bottom: 1.5rem;
        }

        @media (max-width: 768px) {
            nav ul {
                position: fixed;
                top: 80px;
                left: 0;
                width: 100%;
                background-color: rgba(26, 26, 46, 0.95);
                flex-direction: column;
                align-items: center;
                padding: 1rem 0;
                transform: translateY(-150%);
                transition: transform 0.5s ease-in-out;
                z-index: 999;
                border-bottom: 2px solid var(--retro-pink);
            }

            nav ul.show {
                transform: translateY(0);
            }

            nav ul li {
                margin: 1rem 0;
            }

            .burger {
                display: block;
            }

            .burger.active .line1 {
                transform: rotate(-45deg) translate(-5px, 6px);
            }

            .burger.active .line2 {
                opacity: 0;
            }

            .burger.active .line3 {
                transform: rotate(45deg) translate(-5px, -6px);
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .hero p {
                font-size: 1.2rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .price-cards {
                flex-direction: column;
                align-items: center;
            }
        }

        @media (max-width: 480px) {
            .hero h1 {
                font-size: 2rem;
            }

            .hero p {
                font-size: 1rem;
            }

            .section-title {
                font-size: 1.8rem;
            }

            .btn {
                padding: 0.6rem 1.5rem;
                font-size: 1rem;
            }

            .footer-section {
                text-align: center;
            }

            .contact-info p {
                justify-content: center;
            }
        }

