:root {
            --primary: #5E2BFF;
            --secondary: #FF4D80;
            --accent: #00F5A0;
            --dark: #1A1A2E;
            --light: #F5F5F5;
            --retro-orange: #FF6B35;
            --retro-blue: #4ECDC4;
            --font-main: 'Courier New', monospace;
            --font-heading: 'Arial Black', sans-serif;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: var(--font-main);
            background-color: var(--dark);
            color: var(--light);
            line-height: 1.6;
            padding-top: 80px;
            background-image: 
                radial-gradient(circle at 10% 20%, rgba(94, 43, 255, 0.1) 0%, transparent 20%),
                radial-gradient(circle at 90% 80%, rgba(255, 77, 128, 0.1) 0%, transparent 20%);
        }

        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-orange);
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-family: var(--font-heading);
            font-size: 1.8rem;
            color: var(--retro-orange);
            text-decoration: none;
            letter-spacing: 2px;
        }

        .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-weight: bold;
            transition: color 0.3s;
            position: relative;
        }

        nav ul li a:hover {
            color: var(--retro-orange);
        }

        nav ul li a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: var(--retro-orange);
            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 0;
        }

        .hero {
            height: 90vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .hero-content {
            width: 50%;
            z-index: 2;
        }

        .hero h1 {
            font-family: var(--font-heading);
            font-size: 3.5rem;
            margin-bottom: 20px;
            color: var(--retro-orange);
            line-height: 1.2;
            text-transform: uppercase;
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            max-width: 80%;
        }

        .btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: var(--retro-orange);
            color: var(--dark);
            text-decoration: none;
            font-weight: bold;
            border-radius: 30px;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .btn:hover {
            background-color: var(--retro-blue);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }

        .hero-image {
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 50%;
            height: 80%;
            background-image: url('https://images.unsplash.com/photo-1571934811356-5cc061b6821f?q=80&w=1167&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
            background-size: cover;
            background-position: center;
            border-radius: 20px 0 0 20px;
            box-shadow: -20px 20px 0 var(--retro-orange);
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {
            0% { transform: translateY(-50%) translateX(0); }
            50% { transform: translateY(-50%) translateX(-10px); }
            100% { transform: translateY(-50%) translateX(0); }
        }

        .about {
            background-color: rgba(26, 26, 46, 0.7);
            position: relative;
        }

        .about::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('https://images.unsplash.com/photo-1515688594390-b649af70d282?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
            background-size: cover;
            background-position: center;
            opacity: 0.2;
            z-index: -1;
        }

        .section-title {
            font-family: var(--font-heading);
            font-size: 2.5rem;
            margin-bottom: 50px;
            color: var(--retro-orange);
            text-align: center;
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background-color: var(--retro-blue);
        }

        .about-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }

        .about-text {
            flex: 1;
        }

        .about-text h3 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: var(--retro-blue);
        }

        .about-text p {
            margin-bottom: 15px;
        }

        .about-image {
            flex: 1;
            height: 400px;
            background-image: url('https://images.unsplash.com/photo-1558160074-4d7d8bdf4256?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
            background-size: cover;
            background-position: center;
            border-radius: 10px;
            box-shadow: 10px 10px 0 var(--retro-orange);
        }

        .products {
            background-color: var(--dark);
        }

        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .product-card {
            background-color: rgba(26, 26, 46, 0.8);
            border-radius: 10px;
            overflow: hidden;
            transition: transform 0.3s;
            border: 1px solid var(--retro-blue);
            position: relative;
        }

        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 245, 160, 0.2);
        }

        .product-image {
            height: 200px;
            background-size: cover;
            background-position: center;
        }

        .product-info {
            padding: 20px;
        }

        .product-info h3 {
            font-size: 1.5rem;
            margin-bottom: 10px;
            color: var(--retro-orange);
        }

        .product-info p {
            margin-bottom: 15px;
        }

        .product-price {
            font-weight: bold;
            font-size: 1.3rem;
            color: var(--retro-blue);
            display: block;
            margin-bottom: 15px;
        }

        .prices {
            background-color: rgba(26, 26, 46, 0.7);
        }

        .price-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 30px;
        }

        .price-table th, .price-table td {
            padding: 15px;
            text-align: left;
            border-bottom: 1px solid var(--retro-blue);
        }

        .price-table th {
            background-color: var(--retro-orange);
            color: var(--dark);
            font-weight: bold;
        }

        .price-table tr:nth-child(even) {
            background-color: rgba(0, 245, 160, 0.1);
        }

        .price-table tr:hover {
            background-color: rgba(255, 107, 53, 0.2);
        }

        .discount-badge {
            background-color: var(--retro-blue);
            color: var(--dark);
            padding: 3px 8px;
            border-radius: 5px;
            font-size: 0.8rem;
            font-weight: bold;
            margin-left: 10px;
        }

        .gallery {
            background-color: var(--dark);
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }

        .gallery-item {
            height: 250px;
            overflow: hidden;
            border-radius: 10px;
            position: relative;
            transition: all 0.3s;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .gallery-item::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(26, 26, 46, 0.7), transparent);
            opacity: 0;
            transition: opacity 0.3s;
        }

        .gallery-item:hover::after {
            opacity: 1;
        }

        .feedback {
            background-color: rgba(26, 26, 46, 0.7);
        }

        .feedback-slider {
            position: relative;
            overflow: hidden;
            padding: 20px 0;
        }

        .slides {
            display: flex;
            transition: transform 0.5s ease;
        }

        .slide {
            min-width: 100%;
            padding: 0 20px;
        }

        .feedback-card {
            background-color: rgba(26, 26, 46, 0.9);
            padding: 30px;
            border-radius: 10px;
            border-left: 5px solid var(--retro-orange);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }

        .feedback-text {
            font-style: italic;
            margin-bottom: 20px;
            position: relative;
        }

        .feedback-text::before, .feedback-text::after {
            content: '"';
            font-size: 2rem;
            color: var(--retro-blue);
            opacity: 0.5;
        }

        .feedback-author {
            display: flex;
            align-items: center;
        }

        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-size: cover;
            background-position: center;
            margin-right: 15px;
        }

        .author-info h4 {
            color: var(--retro-orange);
            margin-bottom: 5px;
        }

        .author-info p {
            font-size: 0.9rem;
            color: var(--retro-blue);
        }

        .slider-nav {
            display: flex;
            justify-content: center;
            margin-top: 30px;
        }

        .slider-dot {
            width: 12px;
            height: 12px;
            background-color: var(--light);
            border-radius: 50%;
            margin: 0 5px;
            cursor: pointer;
            opacity: 0.5;
            transition: all 0.3s;
        }

        .slider-dot.active {
            opacity: 1;
            background-color: var(--retro-orange);
            transform: scale(1.2);
        }

        .faq {
            background-color: var(--dark);
        }

        .accordion {
            max-width: 800px;
            margin: 0 auto;
        }

        .accordion-item {
            margin-bottom: 15px;
            border: 1px solid var(--retro-blue);
            border-radius: 5px;
            overflow: hidden;
        }

        .accordion-header {
            background-color: rgba(26, 26, 46, 0.8);
            padding: 15px 20px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background-color 0.3s;
        }

        .accordion-header:hover {
            background-color: rgba(255, 107, 53, 0.2);
        }

        .accordion-header h3 {
            color: var(--retro-orange);
            font-size: 1.2rem;
        }

        .accordion-icon {
            font-size: 1.5rem;
            color: var(--retro-blue);
            transition: transform 0.3s;
        }

        .accordion-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out;
            background-color: rgba(26, 26, 46, 0.6);
        }

        .accordion-content-inner {
            padding: 20px;
        }

        .accordion-item.active .accordion-icon {
            transform: rotate(45deg);
        }

        .contact-form {
            max-width: 600px;
            margin: 0 auto;
            background-color: rgba(26, 26, 46, 0.8);
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
            border-top: 5px solid var(--retro-orange);
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: var(--retro-blue);
            font-weight: bold;
        }

        .form-group input, .form-group textarea {
            width: 100%;
            padding: 12px;
            background-color: rgba(255, 255, 255, 0.1);
            border: 1px solid var(--retro-blue);
            border-radius: 5px;
            color: var(--light);
            font-family: var(--font-main);
        }

        .form-group textarea {
            height: 150px;
            resize: vertical;
        }

        .submit-btn {
            width: 100%;
            padding: 15px;
            background-color: var(--retro-orange);
            color: var(--dark);
            border: none;
            border-radius: 5px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .submit-btn:hover {
            background-color: var(--retro-blue);
        }

        .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: 30px;
            border-radius: 10px;
            text-align: center;
            max-width: 500px;
            width: 90%;
            border-top: 5px solid var(--retro-blue);
            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: 15px;
            font-size: 1.5rem;
            color: var(--retro-orange);
            cursor: pointer;
        }

        footer {
            background-color: rgba(26, 26, 46, 0.9);
            padding: 50px 0 20px;
            border-top: 1px solid var(--retro-orange);
        }

        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }

        .footer-logo {
            font-family: var(--font-heading);
            font-size: 1.5rem;
            color: var(--retro-orange);
            margin-bottom: 15px;
            display: inline-block;
        }

        .footer-logo span {
            color: var(--retro-blue);
        }

        .footer-about p {
            margin-bottom: 15px;
        }

        .footer-links h3, .footer-contact h3 {
            color: var(--retro-blue);
            margin-bottom: 20px;
            font-size: 1.2rem;
        }

        .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-orange);
        }

        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }

        .contact-icon {
            color: var(--retro-orange);
            margin-right: 10px;
            font-size: 1.2rem;
        }

        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
        }

        .disclaimer {
            background-color: rgba(255, 107, 53, 0.1);
            padding: 20px;
            border-radius: 5px;
            margin-top: 50px;
            font-size: 0.9rem;
            border-left: 3px solid var(--retro-orange);
        }

        .disclaimer p {
            margin-bottom: 10px;
        }

        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: rgba(26, 26, 46, 0.95);
            padding: 15px;
            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.3s;
        }

        .cookie-banner.show {
            transform: translateY(0);
        }

        .cookie-text {
            flex: 1;
            margin-right: 20px;
        }

        .cookie-btn {
            background-color: var(--retro-orange);
            color: var(--dark);
            border: none;
            padding: 8px 20px;
            border-radius: 20px;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s;
        }

        .cookie-btn:hover {
            background-color: var(--retro-blue);
        }

        @media (max-width: 992px) {
            .hero-content {
                width: 60%;
            }

            .hero-image {
                width: 40%;
            }

            .about-content {
                flex-direction: column;
            }

            .about-image {
                width: 100%;
            }
        }

        @media (max-width: 768px) {
            nav ul {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background-color: rgba(26, 26, 46, 0.95);
                flex-direction: column;
                align-items: center;
                justify-content: center;
                transition: left 0.5s;
                z-index: 999;
            }

            nav ul.active {
                left: 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: 120px 0 80px;
                flex-direction: column;
            }

            .hero-content {
                width: 100%;
                text-align: center;
                margin-bottom: 40px;
            }

            .hero p {
                max-width: 100%;
            }

            .hero-image {
                position: relative;
                width: 100%;
                height: 300px;
                transform: none;
                top: auto;
                right: auto;
                border-radius: 10px;
                box-shadow: 10px 10px 0 var(--retro-orange);
                animation: none;
            }

            .section-title {
                font-size: 2rem;
            }
        }

        @media (max-width: 576px) {
            .product-grid {
                grid-template-columns: 1fr;
            }

            .footer-container {
                grid-template-columns: 1fr;
            }

            .cookie-banner {
                flex-direction: column;
                text-align: center;
            }

            .cookie-text {
                margin-right: 0;
                margin-bottom: 15px;
            }
        }

