:root {
            --primary: #ff52a2;
            --secondary: #00c8ff;
            --accent: #ffde59;
            --dark: #1a1a3a;
            --light: #f0f0f0;
            --retro-bg: #2d2d5a;
            --retro-text: #e6e6e6;
            --font-main: 'Arial', sans-serif;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {font-family: var(--font-main);
            background-color: var(--dark);
            color: var(--retro-text);
            line-height: 1.6;}
        
        main {
            max-width: 1000px;
            margin: 0 auto;
            background-color: var(--retro-bg);
            padding: 3rem;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }
        
        h1, h2, h3 {
            color: var(--primary);
            margin-bottom: 1.5rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        h1 {
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 2.5rem;
        }
        
        h2 {
            font-size: 1.8rem;
            margin-top: 2.5rem;
        }
        
        h3 {
            font-size: 1.3rem;
            margin-top: 2rem;
            color: var(--secondary);
        }
        
        p, ul, ol {
            margin-bottom: 1.5rem;
        }
        
        ul, ol {
            padding-left: 2rem;
        }
        
        li {
            margin-bottom: 0.5rem;
        }
        
        .last-updated {
            text-align: right;
            font-style: italic;
            margin-bottom: 2rem;
            color: var(--accent);
        }
        
        @media screen and (max-width: 768px) {
            body {}
            
            main {
                padding: 2rem;
            }
            
            h1 {
                font-size: 2rem;
            }
        }
:root {
            --primary: #ff52a2;
            --secondary: #00c8ff;
            --accent: #ffde59;
            --dark: #1a1a3a;
            --light: #f0f0f0;
            --retro-bg: #2d2d5a;
            --retro-text: #e6e6e6;
            --font-main: 'Arial', sans-serif;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {font-family: var(--font-main);
            background-color: var(--dark);
            color: var(--retro-text);
            line-height: 1.6;
            overflow-x: hidden;
            padding-top: 80px;}
        
        /* Typography */
        h1, h2, h3, h4 {
            font-weight: 700;
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        h1 {
            font-size: 2.5rem;
            color: var(--primary);
            text-shadow: 0 0 10px rgba(255, 82, 162, 0.5);
        }
        
        h2 {
            font-size: 2rem;
            color: var(--secondary);
            margin-bottom: 2rem;
        }
        
        h3 {
            font-size: 1.5rem;
            color: var(--accent);
        }
        
        p {
            margin-bottom: 1.5rem;
        }
        
        /* Layout */
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        section {
            padding: 5rem 0;
        }
        
        /* Header */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(26, 26, 58, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 1rem 0;
            border-bottom: 2px solid var(--primary);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary);
            text-decoration: none;
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
        }
        
        .nav-menu li {
            margin-left: 2rem;
        }
        
        .nav-menu a {
            color: var(--retro-text);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }
        
        .nav-menu a:hover {
            color: var(--primary);
        }
        
        .burger {
            display: none;
            cursor: pointer;
        }
        
        .burger div {
            width: 25px;
            height: 3px;
            background-color: var(--retro-text);
            margin: 5px;
            transition: all 0.3s ease;
        }
        
        /* Hero Section */
        .hero {
            height: 80vh;
            display: flex;
            align-items: center;
            background: linear-gradient(rgba(26, 26, 58, 0.8), rgba(26, 26, 58, 0.8)), 
                        url('https://images.unsplash.com/photo-1594136579292-d98588fe6429?q=80&w=1074&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') no-repeat center center/cover;
            position: relative;
            overflow: hidden;
        }
        
        .hero-content {
            position: relative;
            z-index: 1;
            text-align: center;
            animation: fadeIn 1.5s ease-in;
        }
        
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
        }
        
        .hero p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 2rem;
        }
        
        .btn {
            display: inline-block;
            background-color: var(--primary);
            color: var(--light);
            padding: 12px 30px;
            border: none;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s;
            cursor: pointer;
        }
        
        .btn:hover {
            background-color: var(--secondary);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 200, 255, 0.3);
        }
        
        /* About Section */
        .about {
            background-color: var(--retro-bg);
            position: relative;
        }
        
        .about-content {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
        }
        
        .about-text {
            flex: 1;
            min-width: 300px;
            padding-right: 2rem;
        }
        
        .about-image {
            flex: 1;
            min-width: 300px;
            text-align: center;
        }
        
        .about-image img {
            max-width: 100%;
            border-radius: 10px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
            transition: transform 0.5s;
        }
        
        .about-image img:hover {
            transform: scale(1.03);
        }
        
        /* Products Section */
        .products {
            background-color: var(--dark);
        }
        
        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }
        
        .product-card {
            background: linear-gradient(145deg, #23234d, #1c1c3d);
            border-radius: 10px;
            padding: 2rem;
            text-align: center;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s;
        }
        
        .product-card:hover {
            transform: translateY(-10px);
        }
        
        .product-card img {
            max-width: 100%;
            border-radius: 8px;
            margin-bottom: 1.5rem;
        }
        
        /* Prices Section */
        .prices {
            background-color: var(--retro-bg);
            text-align: center;
        }
        
        .price-container {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 2rem;
            margin-top: 2rem;
        }
        
        .price-box {
            background: linear-gradient(145deg, #2d2d5a, #25254d);
            border: 2px solid var(--primary);
            border-radius: 10px;
            padding: 2rem;
            width: 280px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }
        
        .price-box h3 {
            margin-bottom: 1rem;
        }
        
        .price {
            font-size: 2.5rem;
            color: var(--accent);
            margin-bottom: 1.5rem;
        }
        
        .price-old {
            text-decoration: line-through;
            color: #999;
            font-size: 1.5rem;
        }
        
        /* Gallery Section */
        .gallery {
            background-color: var(--dark);
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1rem;
            margin-top: 2rem;
        }
        
        .gallery-item {
            overflow: hidden;
            border-radius: 8px;
            position: relative;
            height: 250px;
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        
        /* Feedback Section */
        .feedback {
            background-color: var(--retro-bg);
            position: relative;
        }
        
        .slider {
            position: relative;
            overflow: hidden;
            height: 300px;
            margin-top: 2rem;
        }
        
        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 0.5s ease;
            background: linear-gradient(145deg, #2d2d5a, #25254d);
            padding: 2rem;
            border-radius: 10px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .slide.active {
            opacity: 1;
        }
        
        .slide-text {
            font-style: italic;
            margin-bottom: 1rem;
        }
        
        .slide-author {
            font-weight: 700;
            color: var(--accent);
        }
        
        .slider-nav {
            display: flex;
            justify-content: center;
            margin-top: 1.5rem;
        }
        
        .slider-dot {
            width: 12px;
            height: 12px;
            background-color: var(--light);
            border-radius: 50%;
            margin: 0 5px;
            cursor: pointer;
            opacity: 0.5;
            transition: opacity 0.3s;
        }
        
        .slider-dot.active {
            opacity: 1;
            background-color: var(--primary);
        }
        
        /* FAQ Section */
        .faq {
            background-color: var(--dark);
        }
        
        .accordion {
            margin-top: 2rem;
        }
        
        .accordion-item {
            margin-bottom: 1rem;
            border: 1px solid var(--primary);
            border-radius: 8px;
            overflow: hidden;
        }
        
        .accordion-header {
            background-color: var(--retro-bg);
            padding: 1.5rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .accordion-content {
            padding: 0;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
            background-color: rgba(45, 45, 90, 0.5);
        }
        
        .accordion-content.active {
            padding: 1.5rem;
            max-height: 300px;
        }
        
        /* Contact Section */
        .contact {
            background-color: var(--retro-bg);
        }
        
        .contact-form {
            max-width: 600px;
            margin: 0 auto;
            background: linear-gradient(145deg, #2d2d5a, #25254d);
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
        }
        
        .form-group {
            margin-bottom: 1.5rem;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px;
            border: 1px solid var(--primary);
            border-radius: 5px;
            background-color: rgba(255, 255, 255, 0.1);
            color: var(--light);
        }
        
        /* Modal */
        .modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 2000;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s, visibility 0.3s;
        }
        
        .modal.active {
            opacity: 1;
            visibility: visible;
        }
        
        .modal-content {
            background-color: var(--dark);
            padding: 3rem;
            border-radius: 10px;
            text-align: center;
            max-width: 500px;
            width: 90%;
            position: relative;
        }
        
        .close-modal {
            position: absolute;
            top: 1rem;
            right: 1rem;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--light);
        }
        
        /* Disclaimer */
        .disclaimer {
            background-color: #0f0f1f;
            padding: 2rem 0;
            font-size: 0.9rem;
            text-align: center;
        }
        
        /* Cookie Banner */
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: var(--dark);
            padding: 1.5rem;
            box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.3);
            z-index: 1000;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        
        .cookie-text {
            flex: 1;
            min-width: 300px;
            margin-right: 2rem;
        }
        
        .cookie-buttons {
            display: flex;
            gap: 1rem;
        }
        
        /* Footer */
        footer {
            background-color: #0f0f1f;
            padding: 3rem 0;
            color: var(--light);
        }
        
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 2rem;
        }
        
        .footer-column {
            flex: 1;
            min-width: 250px;
        }
        
        .footer-column h3 {
            color: var(--primary);
            margin-bottom: 1.5rem;
            font-size: 1.2rem;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        
        .footer-links a {
            color: var(--light);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: var(--primary);
        }
        
        .copyright {
            text-align: center;
            margin-top: 3rem;
            padding-top: 1.5rem;
            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.6s ease, transform 0.6s ease;
        }
        
        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Responsive */
        @media screen and (max-width: 768px) {
            body {padding-top: 70px;}
            
            .nav-menu {
                position: fixed;
                top: 70px;
                right: -100%;
                width: 70%;
                height: calc(100vh - 70px);
                background-color: var(--dark);
                flex-direction: column;
                align-items: center;
                justify-content: center;
                transition: right 0.5s ease;
                z-index: 999;
            }
            
            .nav-menu.active {
                right: 0;
            }
            
            .nav-menu li {
                margin: 1.5rem 0;
            }
            
            .burger {
                display: block;
            }
            
            .burger.active div:nth-child(1) {
                transform: rotate(45deg) translate(5px, 5px);
            }
            
            .burger.active div:nth-child(2) {
                opacity: 0;
            }
            
            .burger.active div:nth-child(3) {
                transform: rotate(-45deg) translate(5px, -5px);
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .about-text {
                padding-right: 0;
                margin-bottom: 2rem;
            }
            
            .cookie-banner {
                flex-direction: column;
                text-align: center;
            }
            
            .cookie-text {
                margin-right: 0;
                margin-bottom: 1rem;
            }
        }

