:root {
            --primary: #4A2C92;
            --secondary: #FF5E7D;
            --accent: #00D1B2;
            --dark: #1A1A2E;
            --light: #F5F5F7;
            --retro-blue: #00C4FF;
            --retro-pink: #FF2D75;
            --retro-yellow: #FFDE59;
        }
        
        * {
            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: radial-gradient(circle at 25% 50%, rgba(74, 44, 146, 0.3) 0%, rgba(26, 26, 46, 1) 70%);
        }
        
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(26, 26, 46, 0.9);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 15px 0;
            border-bottom: 1px solid var(--retro-blue);
        }
        
        .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-yellow);
            font-size: 24px;
            font-weight: bold;
            text-decoration: none;
        }
        
        .logo span {
            color: var(--retro-blue);
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 30px;
        }
        
        nav ul li a {
            color: var(--light);
            text-decoration: none;
            font-size: 16px;
            transition: color 0.3s;
            position: relative;
        }
        
        nav ul li a:hover {
            color: var(--retro-blue);
        }
        
        nav ul li a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: var(--retro-blue);
            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: 80px 20px;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        h1, h2, h3 {
            font-family: 'Arial Narrow', sans-serif;
            letter-spacing: 1px;
        }
        
        h1 {
            font-size: 48px;
            margin-bottom: 20px;
            color: var(--retro-yellow);
            text-transform: uppercase;
        }
        
        h2 {
            font-size: 36px;
            margin-bottom: 30px;
            color: var(--retro-blue);
            position: relative;
            display: inline-block;
        }
        
        h2::after {
            content: '';
            position: absolute;
            width: 50%;
            height: 3px;
            bottom: -10px;
            left: 0;
            background-color: var(--retro-pink);
        }
        
        h3 {
            font-size: 24px;
            margin-bottom: 15px;
            color: var(--retro-yellow);
        }
        
        p {
            margin-bottom: 20px;
            font-size: 16px;
        }
        
        .btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: var(--retro-pink);
            color: var(--light);
            text-decoration: none;
            border-radius: 30px;
            font-weight: bold;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
            font-size: 16px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .btn:hover {
            background-color: var(--retro-blue);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 196, 255, 0.3);
        }
        
        .hero {
            height: 80vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(26, 26, 46, 0.8) 0%, rgba(74, 44, 146, 0.5) 100%);
            z-index: -1;
        }
        
        .hero-content {
            max-width: 600px;
            animation: fadeIn 1.5s ease-out;
        }
        
        .hero p {
            font-size: 18px;
            margin-bottom: 30px;
            color: var(--light);
        }
        
        .about {
            background-color: rgba(26, 26, 46, 0.7);
            border-radius: 10px;
            margin: 40px auto;
            padding: 50px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }
        
        .about-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .about-card {
            background-color: rgba(74, 44, 146, 0.2);
            padding: 30px;
            border-radius: 10px;
            border: 1px solid var(--retro-blue);
            transition: transform 0.3s;
        }
        
        .about-card:hover {
            transform: translateY(-10px);
            background-color: rgba(74, 44, 146, 0.4);
        }
        
        .products {
            text-align: center;
        }
        
        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .product-card {
            background-color: rgba(26, 26, 46, 0.7);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
            transition: all 0.3s;
            border: 1px solid var(--retro-pink);
        }
        
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(255, 45, 117, 0.3);
        }
        
        .product-img {
            height: 200px;
            overflow: hidden;
        }
        
        .product-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .product-card:hover .product-img img {
            transform: scale(1.1);
        }
        
        .product-info {
            padding: 20px;
        }
        
        .prices {
            background-color: rgba(26, 26, 46, 0.7);
            border-radius: 10px;
            padding: 50px;
            margin: 40px auto;
        }
        
        .price-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .price-card {
            background-color: rgba(74, 44, 146, 0.3);
            padding: 30px;
            border-radius: 10px;
            text-align: center;
            border: 1px solid var(--retro-yellow);
            transition: all 0.3s;
        }
        
        .price-card:hover {
            transform: scale(1.05);
            background-color: rgba(74, 44, 146, 0.5);
        }
        
        .price-card h3 {
            color: var(--retro-yellow);
            margin-bottom: 15px;
        }
        
        .price {
            font-size: 36px;
            font-weight: bold;
            color: var(--retro-blue);
            margin: 20px 0;
        }
        
        .price span {
            font-size: 16px;
            color: var(--light);
        }
        
        .gallery {
            text-align: center;
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 40px;
        }
        
        .gallery-item {
            height: 250px;
            overflow: hidden;
            border-radius: 10px;
            position: relative;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        
        .feedback {
            background-color: rgba(26, 26, 46, 0.7);
            border-radius: 10px;
            padding: 50px;
            margin: 40px auto;
        }
        
        .slider {
            position: relative;
            max-width: 800px;
            margin: 40px auto 0;
            overflow: hidden;
        }
        
        .slider-track {
            display: flex;
            transition: transform 0.5s ease;
        }
        
        .slide {
            min-width: 100%;
            padding: 20px;
        }
        
        .review {
            background-color: rgba(74, 44, 146, 0.3);
            padding: 30px;
            border-radius: 10px;
            border: 1px solid var(--retro-pink);
        }
        
        .review-text {
            font-style: italic;
            margin-bottom: 20px;
        }
        
        .review-author {
            font-weight: bold;
            color: var(--retro-yellow);
        }
        
        .slider-nav {
            display: flex;
            justify-content: center;
            margin-top: 20px;
        }
        
        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: var(--light);
            margin: 0 5px;
            cursor: pointer;
            opacity: 0.5;
            transition: opacity 0.3s;
        }
        
        .slider-dot.active {
            opacity: 1;
            background-color: var(--retro-blue);
        }
        
        .faq {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .faq-item {
            margin-bottom: 20px;
            border: 1px solid var(--retro-blue);
            border-radius: 10px;
            overflow: hidden;
        }
        
        .faq-question {
            background-color: rgba(74, 44, 146, 0.3);
            padding: 15px 20px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: bold;
        }
        
        .faq-question:hover {
            background-color: rgba(74, 44, 146, 0.5);
        }
        
        .faq-answer {
            padding: 20px;
            background-color: rgba(26, 26, 46, 0.7);
            display: none;
        }
        
        .faq-answer.active {
            display: block;
        }
        
        .contact-form {
            max-width: 600px;
            margin: 40px auto 0;
            background-color: rgba(26, 26, 46, 0.7);
            padding: 40px;
            border-radius: 10px;
            border: 1px solid var(--retro-yellow);
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: var(--retro-yellow);
        }
        
        .form-group input {
            width: 100%;
            padding: 12px;
            background-color: rgba(74, 44, 146, 0.3);
            border: 1px solid var(--retro-blue);
            border-radius: 5px;
            color: var(--light);
            font-size: 16px;
        }
        
        .form-group input:focus {
            outline: none;
            border-color: var(--retro-pink);
        }
        
        footer {
            background-color: rgba(26, 26, 46, 0.9);
            padding: 50px 20px 20px;
            border-top: 1px solid var(--retro-blue);
        }
        
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
        }
        
        .footer-logo {
            font-size: 24px;
            font-weight: bold;
            color: var(--retro-yellow);
            margin-bottom: 20px;
        }
        
        .footer-logo span {
            color: var(--retro-blue);
        }
        
        .footer-links h3 {
            color: var(--retro-blue);
            margin-bottom: 20px;
            font-size: 20px;
        }
        
        .footer-links ul {
            list-style: none;
        }
        
        .footer-links ul li {
            margin-bottom: 10px;
        }
        
        .footer-links ul li a {
            color: var(--light);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links ul li a:hover {
            color: var(--retro-pink);
        }
        
        .footer-contact p {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }
        
        .footer-contact i {
            margin-right: 10px;
            color: var(--retro-yellow);
        }
        
        .copyright {
            text-align: center;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--light);
            font-size: 14px;
        }
        
        .disclaimer {
            background-color: rgba(255, 45, 117, 0.1);
            padding: 20px;
            border-radius: 5px;
            margin-top: 40px;
            font-size: 14px;
            border: 1px solid var(--retro-pink);
        }
        
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: rgba(26, 26, 46, 0.95);
            padding: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            border-top: 1px solid var(--retro-blue);
            transform: translateY(100%);
            transition: transform 0.5s;
        }
        
        .cookie-banner.show {
            transform: translateY(0);
        }
        
        .cookie-banner p {
            margin-right: 20px;
            font-size: 14px;
        }
        
        .cookie-banner .btn {
            padding: 8px 20px;
            font-size: 14px;
            white-space: nowrap;
        }
        
        .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(--dark);
            padding: 40px;
            border-radius: 10px;
            max-width: 500px;
            width: 90%;
            text-align: center;
            border: 2px solid var(--retro-yellow);
            position: relative;
            animation: modalFadeIn 0.5s;
        }
        
        .close-modal {
            position: absolute;
            top: 15px;
            right: 15px;
            font-size: 24px;
            color: var(--light);
            cursor: pointer;
            transition: color 0.3s;
        }
        
        .close-modal:hover {
            color: var(--retro-pink);
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        @keyframes modalFadeIn {
            from { opacity: 0; transform: translateY(-50px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        @media (max-width: 768px) {
            h1 {
                font-size: 36px;
            }
            
            h2 {
                font-size: 28px;
            }
            
            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: 20px 0;
                transform: translateY(-150%);
                transition: transform 0.5s;
                z-index: 999;
            }
            
            nav ul.show {
                transform: translateY(0);
            }
            
            nav ul li {
                margin: 15px 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 {
                height: auto;
                padding: 100px 0;
            }
            
            .about, .prices, .feedback {
                padding: 30px 20px;
            }
            
            .footer-container {
                grid-template-columns: 1fr;
            }
        }

