:root {
            --primary: #ff3e6c;
            --secondary: #00c9b1;
            --accent: #ffde59;
            --dark: #1a1a2e;
            --light: #f8f4e3;
            --retro-pink: #ff6b8b;
            --retro-blue: #4cc9f0;
            --retro-purple: #7209b7;
        }

        * {
            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;
            
            background-image: 
                radial-gradient(circle at 10% 20%, rgba(114, 9, 183, 0.15) 0%, transparent 20%),
                radial-gradient(circle at 90% 80%, rgba(76, 201, 240, 0.15) 0%, transparent 20%);}

        main {
            max-width: 1000px;
            margin: 0 auto;
            background: rgba(26, 26, 46, 0.9);
            padding: 40px;
            border-radius: 10px;
            border: 2px solid var(--retro-blue);
        }

        h1 {
            text-align: center;
            margin-bottom: 30px;
            color: var(--retro-pink);
            font-size: 2.5rem;
        }

        h2 {
            color: var(--retro-blue);
            margin: 25px 0 15px;
            font-size: 1.8rem;
        }

        h3 {
            color: var(--retro-pink);
            margin: 20px 0 10px;
            font-size: 1.4rem;
        }

        p, ul, ol {
            margin-bottom: 15px;
        }

        ul, ol {
            padding-left: 20px;
        }

        li {
            margin-bottom: 8px;
        }

        a {
            color: var(--retro-blue);
            text-decoration: none;
        }

        a:hover {
            text-decoration: underline;
        }

        .last-updated {
            text-align: right;
            font-style: italic;
            margin-bottom: 30px;
            color: var(--retro-blue);
        }

        @media (max-width: 768px) {
            main {
                padding: 20px;
            }
            
            h1 {
                font-size: 2rem;
            }
            
            h2 {
                font-size: 1.5rem;
            }
            
            h3 {
                font-size: 1.2rem;
            }
        }
:root {
            --primary: #ff3e6c;
            --secondary: #00c9b1;
            --accent: #ffde59;
            --dark: #1a1a2e;
            --light: #f8f4e3;
            --retro-pink: #ff6b8b;
            --retro-blue: #4cc9f0;
            --retro-purple: #7209b7;
        }

        * {
            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;
            overflow-x: hidden;
            background-image: 
                radial-gradient(circle at 10% 20%, rgba(114, 9, 183, 0.15) 0%, transparent 20%),
                radial-gradient(circle at 90% 80%, rgba(76, 201, 240, 0.15) 0%, transparent 20%);}

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        /* Header Styles */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(26, 26, 46, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 15px 0;
            border-bottom: 2px solid var(--retro-blue);
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--retro-pink);
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 0 0 10px rgba(255, 107, 139, 0.5);
        }

        .nav-menu {
            display: flex;
            list-style: none;
        }

        .nav-menu li {
            margin-left: 25px;
        }

        .nav-menu a {
            color: var(--light);
            text-decoration: none;
            font-weight: bold;
            transition: color 0.3s;
            position: relative;
        }

        .nav-menu a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: var(--retro-blue);
            transition: width 0.3s;
        }

        .nav-menu a:hover {
            color: var(--retro-blue);
        }

        .nav-menu 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;
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            margin-top: 70px;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(26, 26, 46, 0.8), rgba(114, 9, 183, 0.5));
            z-index: -1;
        }

        .hero-content {
            text-align: center;
            z-index: 1;
            animation: fadeIn 1.5s ease-out;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            color: var(--retro-pink);
            text-shadow: 0 0 15px rgba(255, 107, 139, 0.7);
        }

        .hero p {
            font-size: 1.5rem;
            margin-bottom: 30px;
            max-width: 700px;
        }

        .btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: var(--retro-blue);
            color: var(--dark);
            text-decoration: none;
            font-weight: bold;
            border-radius: 30px;
            transition: all 0.3s;
            border: 2px solid var(--retro-blue);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .btn:hover {
            background-color: transparent;
            color: var(--retro-blue);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(76, 201, 240, 0.3);
        }

        /* Sections Common */
        section {
            padding: 80px 0;
        }

        section h2 {
            text-align: center;
            margin-bottom: 50px;
            font-size: 2.5rem;
            color: var(--retro-pink);
            position: relative;
        }

        section h2:after {
            content: '';
            position: absolute;
            width: 100px;
            height: 3px;
            background: var(--retro-blue);
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
        }

        /* About Section */
        .about-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
        }

        .about-text {
            flex: 1;
            min-width: 300px;
            padding-right: 30px;
        }

        .about-image {
            flex: 1;
            min-width: 300px;
            text-align: center;
        }

        .about-image img {
            max-width: 100%;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            transition: transform 0.5s;
        }

        .about-image img:hover {
            transform: scale(1.03);
        }

        /* Products Section */
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .product-card {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            overflow: hidden;
            transition: transform 0.3s, box-shadow 0.3s;
            border: 1px solid rgba(76, 201, 240, 0.2);
        }

        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(76, 201, 240, 0.2);
        }

        .product-image {
            height: 200px;
            overflow: hidden;
        }

        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .product-card:hover .product-image img {
            transform: scale(1.1);
        }

        .product-info {
            padding: 20px;
        }

        .product-info h3 {
            margin-bottom: 10px;
            color: var(--retro-blue);
        }

        /* Prices Section */
        .prices-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
        }

        .price-card {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            padding: 30px;
            text-align: center;
            flex: 1;
            min-width: 250px;
            max-width: 350px;
            border: 1px solid rgba(255, 107, 139, 0.2);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .price-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(255, 107, 139, 0.2);
        }

        .price-card h3 {
            color: var(--retro-pink);
            margin-bottom: 15px;
        }

        .price {
            font-size: 2.5rem;
            color: var(--retro-blue);
            margin: 20px 0;
        }

        .price-features {
            list-style: none;
            margin: 20px 0;
        }

        .price-features li {
            margin-bottom: 10px;
            padding-left: 20px;
            position: relative;
        }

        .price-features li:before {
            content: '✓';
            color: var(--retro-blue);
            position: absolute;
            left: 0;
        }

        /* Gallery Section */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 15px;
        }

        .gallery-item {
            height: 250px;
            overflow: hidden;
            border-radius: 10px;
            position: relative;
            cursor: pointer;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .gallery-item-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
            padding: 20px;
            opacity: 0;
            transition: opacity 0.3s;
        }

        .gallery-item:hover .gallery-item-overlay {
            opacity: 1;
        }

        /* Feedback Section */
        .feedback-slider {
            position: relative;
            overflow: hidden;
            padding: 20px;
        }

        .feedback-track {
            display: flex;
            transition: transform 0.5s ease;
        }

        .feedback-slide {
            min-width: 100%;
            padding: 20px;
        }

        .feedback-card {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            padding: 30px;
            text-align: center;
            border: 1px solid rgba(255, 222, 89, 0.2);
        }

        .feedback-text {
            font-style: italic;
            margin-bottom: 20px;
        }

        .feedback-author {
            font-weight: bold;
            color: var(--retro-blue);
        }

        .slider-nav {
            display: flex;
            justify-content: center;
            margin-top: 30px;
        }

        .slider-dot {
            width: 12px;
            height: 12px;
            background: rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            margin: 0 5px;
            cursor: pointer;
            transition: background 0.3s;
        }

        .slider-dot.active {
            background: var(--retro-pink);
        }

        /* FAQ Section */
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            margin-bottom: 20px;
            border: 1px solid rgba(76, 201, 240, 0.2);
            border-radius: 10px;
            overflow: hidden;
        }

        .faq-question {
            padding: 20px;
            background: rgba(255, 255, 255, 0.05);
            cursor: pointer;
            position: relative;
            font-weight: bold;
        }

        .faq-question:after {
            content: '+';
            position: absolute;
            right: 20px;
            transition: transform 0.3s;
        }

        .faq-item.active .faq-question:after {
            transform: rotate(45deg);
        }

        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s, padding 0.3s;
        }

        .faq-item.active .faq-answer {
            padding: 20px;
            max-height: 300px;
        }

        /* Contact Section */
        .contact-form {
            max-width: 600px;
            margin: 0 auto;
            background: rgba(255, 255, 255, 0.05);
            padding: 30px;
            border-radius: 10px;
            border: 1px solid rgba(255, 107, 139, 0.2);
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 5px;
            font-weight: bold;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 5px;
            color: var(--light);
        }

        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }

        /* Modal */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            z-index: 2000;
            align-items: center;
            justify-content: center;
        }

        .modal-content {
            background: var(--dark);
            padding: 40px;
            border-radius: 10px;
            text-align: center;
            max-width: 500px;
            width: 90%;
            border: 2px solid var(--retro-blue);
        }

        .modal h3 {
            color: var(--retro-blue);
            margin-bottom: 20px;
        }

        .close-modal {
            margin-top: 20px;
            padding: 10px 20px;
            background: var(--retro-pink);
            color: var(--light);
            border: none;
            border-radius: 5px;
            cursor: pointer;
            transition: background 0.3s;
        }

        .close-modal:hover {
            background: #ff4d7a;
        }

        /* Disclaimer */
        .disclaimer {
            background: rgba(0, 0, 0, 0.5);
            padding: 20px;
            margin: 40px 0;
            border-radius: 10px;
            font-size: 0.9rem;
        }

        /* Cookie Banner */
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(26, 26, 46, 0.95);
            padding: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            z-index: 1000;
            border-top: 2px solid var(--retro-blue);
        }

        .cookie-text {
            flex: 2;
            min-width: 300px;
            margin-right: 20px;
        }

        .cookie-actions {
            flex: 1;
            min-width: 200px;
            display: flex;
            justify-content: flex-end;
        }

        .cookie-btn {
            padding: 10px 20px;
            margin-left: 10px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            transition: background 0.3s;
        }

        .cookie-accept {
            background: var(--retro-blue);
            color: var(--dark);
        }

        .cookie-reject {
            background: rgba(255, 255, 255, 0.1);
            color: var(--light);
        }

        /* Footer */
        footer {
            background: rgba(0, 0, 0, 0.5);
            padding: 50px 0 20px;
            border-top: 2px solid var(--retro-purple);
        }

        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin-bottom: 30px;
        }

        .footer-section {
            flex: 1;
            min-width: 250px;
            margin-bottom: 30px;
        }

        .footer-section h3 {
            color: var(--retro-pink);
            margin-bottom: 20px;
            position: relative;
        }

        .footer-section h3:after {
            content: '';
            position: absolute;
            width: 50px;
            height: 2px;
            background: var(--retro-blue);
            bottom: -10px;
            left: 0;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: var(--light);
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: var(--retro-blue);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .fade-in {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.5s, transform 0.5s;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive Styles */
        @media (max-width: 768px) {
            .burger {
                display: block;
            }

            .nav-menu {
                position: fixed;
                top: 70px;
                right: -100%;
                height: calc(100vh - 70px);
                width: 70%;
                background: rgba(26, 26, 46, 0.98);
                flex-direction: column;
                align-items: center;
                justify-content: center;
                transition: right 0.5s ease;
                padding: 40px 0;
            }

            .nav-menu.active {
                right: 0;
            }

            .nav-menu li {
                margin: 20px 0;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .hero p {
                font-size: 1.2rem;
            }

            section h2 {
                font-size: 2rem;
            }
        }

