:root {
            --primary: #FF4E50;
            --secondary: #00C2FF;
            --accent: #FFE81F;
            --dark: #2C2C2C;
            --light: #FFFFFF;
            --gray: #E0E0E0;
            --retro-pink: #FF6B9D;
            --retro-blue: #5D8AA8;
        }

        * {
            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(255, 78, 80, 0.1) 0%, transparent 20%),
                radial-gradient(circle at 90% 80%, rgba(0, 194, 255, 0.1) 0%, transparent 20%);
        }

        h1, h2, h3, h4 {
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1rem;
        }

        h1 {
            font-size: 3.5rem;
            text-transform: uppercase;
            color: var(--accent);
            text-shadow: 3px 3px 0 var(--primary);
        }

        h2 {
            font-size: 2.5rem;
            color: var(--secondary);
            border-bottom: 3px solid var(--retro-pink);
            padding-bottom: 0.5rem;
            margin-bottom: 2rem;
        }

        h3 {
            font-size: 1.8rem;
            color: var(--retro-pink);
        }

        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }

        .container {
            width: 100%;
            padding: 0 1rem;
            margin: 0 auto;
        }

        @media (min-width: 576px) {
            .container {
                max-width: 540px;
            }
        }

        @media (min-width: 768px) {
            .container {
                max-width: 720px;
            }
        }

        @media (min-width: 992px) {
            .container {
                max-width: 960px;
            }
        }

        @media (min-width: 1200px) {
            .container {
                max-width: 1140px;
            }
        }

        section {
            padding: 5rem 0;
        }

        .btn {
            display: inline-block;
            padding: 0.8rem 2rem;
            background: var(--primary);
            color: var(--light);
            text-decoration: none;
            font-weight: bold;
            border: none;
            border-radius: 0;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 2px;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .btn:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: var(--secondary);
            transition: all 0.4s ease;
            z-index: -1;
        }

        .btn:hover:before {
            left: 0;
        }

        .btn:hover {
            color: var(--dark);
        }

        /* Header */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(44, 44, 44, 0.95);
            padding: 1rem 0;
            z-index: 1000;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            border-bottom: 2px solid var(--retro-pink);
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 900;
            color: var(--accent);
            text-decoration: none;
            display: flex;
            align-items: center;
        }

        .logo span {
            color: var(--secondary);
        }

        .nav-menu {
            display: flex;
            list-style: none;
        }

        .nav-item {
            margin-left: 2rem;
        }

        .nav-link {
            color: var(--light);
            text-decoration: none;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-link:after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: width 0.3s ease;
        }

        .nav-link:hover {
            color: var(--secondary);
        }

        .nav-link:hover:after {
            width: 100%;
        }

        .hamburger {
            display: none;
            cursor: pointer;
        }

        .bar {
            display: block;
            width: 25px;
            height: 3px;
            margin: 5px auto;
            background-color: var(--light);
            transition: all 0.3s ease;
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1565958011703-44f9829ba187?ixlib=rb-4.0.3&auto=format&fit=crop&w=700&q=80') no-repeat center center/cover;
            position: relative;
            overflow: hidden;
        }

        .hero-content {
            position: relative;
            z-index: 1;
            text-align: center;
            animation: fadeIn 1.5s ease;
        }

        .hero-subtitle {
            font-size: 1.5rem;
            color: var(--secondary);
            margin-bottom: 2rem;
        }

        /* About Section */
        .about {
            background-color: rgba(255, 255, 255, 0.05);
            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;
            position: relative;
        }

        .about-image img {
            width: 100%;
            border: 5px solid var(--retro-pink);
            box-shadow: 10px 10px 0 var(--secondary);
            transition: transform 0.5s ease;
        }

        .about-image img:hover {
            transform: scale(1.03);
        }

        /* Products Section */
        .products {
            background: linear-gradient(to bottom, rgba(44, 44, 44, 0.9), rgba(44, 44, 44, 0.8)), url('https://images.unsplash.com/photo-1467003909585-2f8a72700288?ixlib=rb-4.0.3&auto=format&fit=crop&w=700&q=80') fixed center center/cover;
            background-attachment: fixed;
        }

        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .product-card {
            background: rgba(255, 255, 255, 0.1);
            padding: 2rem;
            border: 2px solid var(--retro-blue);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .product-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--primary);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.3s ease;
        }

        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }

        .product-card:hover:before {
            transform: scaleX(1);
        }

        .product-icon {
            font-size: 3rem;
            color: var(--accent);
            margin-bottom: 1rem;
        }

        /* Prices Section */
        .prices {
            background-color: rgba(255, 255, 255, 0.05);
        }

        .price-container {
            overflow-x: scroll;
        }

        .price-table {
            width: 100%;
            border-collapse: collapse;
            min-width: 600px;
        }

        .price-table th, .price-table td {
            padding: 1rem;
            text-align: left;
            border: 1px solid var(--retro-blue);
        }

        .price-table th {
            background-color: var(--primary);
            color: var(--light);
            text-transform: uppercase;
        }

        .price-table tr:nth-child(even) {
            background-color: rgba(255, 255, 255, 0.05);
        }

        .price-table tr:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }

        .discount {
            color: var(--accent);
            font-weight: bold;
        }

        /* Gallery Section */
        .gallery {
            background: linear-gradient(to bottom, rgba(44, 44, 44, 0.9), rgba(44, 44, 44, 0.8)), url('https://images.unsplash.com/photo-1623059265421-2dc2a04f10f6?q=80&w=687&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') fixed center center/cover;
            background-attachment: fixed;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1rem;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            height: 250px;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .gallery-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
            padding: 1rem;
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }

        .gallery-item:hover .gallery-overlay {
            transform: translateY(0);
        }

        /* Feedback Section */
        .feedback {
            background-color: rgba(255, 255, 255, 0.05);
        }

        .slider {
            position: relative;
            overflow: hidden;
            height: 300px;
        }

        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 0.5s ease;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 2rem;
            background: rgba(255, 255, 255, 0.1);
            border-left: 5px solid var(--secondary);
        }

        .slide.active {
            opacity: 1;
        }

        .client-info {
            display: flex;
            align-items: center;
            margin-top: 1rem;
        }

        .client-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 1rem;
            border: 2px solid var(--accent);
        }

        .client-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .slider-nav {
            display: flex;
            justify-content: center;
            margin-top: 2rem;
        }

        .slider-dot {
            width: 12px;
            height: 12px;
            background: var(--gray);
            border-radius: 50%;
            margin: 0 5px;
            cursor: pointer;
            transition: background 0.3s ease;
        }

        .slider-dot.active {
            background: var(--primary);
        }

        /* FAQ Section */
        .faq {
            background: linear-gradient(to bottom, rgba(44, 44, 44, 0.9), rgba(44, 44, 44, 0.8)), url('https://plus.unsplash.com/premium_photo-1679518569530-a2d8374b0f4b?q=80&w=687&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') fixed center center/cover;
            background-attachment: fixed;
        }

        .accordion {
            margin-bottom: 1rem;
        }

        .accordion-header {
            background: rgba(255, 255, 255, 0.1);
            padding: 1rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-left: 3px solid var(--retro-pink);
        }

        .accordion-content {
            padding: 0;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
            background: rgba(0, 0, 0, 0.2);
        }

        .accordion-content.active {
            padding: 1rem;
            max-height: 300px;
        }

        /* Contact Section */
        .contact {
            background-color: rgba(255, 255, 255, 0.05);
        }

        .contact-form {
            background: rgba(255, 255, 255, 0.1);
            padding: 2rem;
            border: 2px solid var(--retro-blue);
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-label {
            display: block;
            margin-bottom: 0.5rem;
            color: var(--secondary);
        }

        .form-input {
            width: 100%;
            padding: 0.8rem;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid var(--retro-blue);
            color: var(--light);
        }

        .form-input:focus {
            outline: none;
            border-color: var(--primary);
        }

        /* Popup */
        .popup {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 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 ease, visibility 0.3s ease;
        }

        .popup.active {
            opacity: 1;
            visibility: visible;
        }

        .popup-content {
            background: var(--dark);
            padding: 2rem;
            text-align: center;
            border: 3px solid var(--primary);
            max-width: 500px;
            width: 90%;
        }

        .popup-close {
            position: absolute;
            top: 10px;
            right: 10px;
            background: none;
            border: none;
            color: var(--light);
            font-size: 1.5rem;
            cursor: pointer;
        }

        /* Disclaimer */
        .disclaimer {
            background: rgba(0, 0, 0, 0.9);
            padding: 2rem 0;
            font-size: 0.9rem;
            color: var(--gray);
        }

        /* Cookie Banner */
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: var(--dark);
            padding: 1rem;
            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;
            transform: translateY(100%);
            transition: transform 0.5s ease;
        }

        .cookie-banner.active {
            transform: translateY(0);
        }

        .cookie-text {
            flex: 1;
            min-width: 300px;
            margin-right: 1rem;
        }

        .cookie-actions {
            display: flex;
            gap: 1rem;
        }

        /* Footer */
        footer {
            background: var(--dark);
            padding: 3rem 0;
            border-top: 3px solid var(--primary);
        }

        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
        }

        .footer-column {
            flex: 1;
            min-width: 250px;
            margin-bottom: 2rem;
        }

        .footer-heading {
            color: var(--accent);
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
        }

        .footer-links {
            list-style: none;
        }

        .footer-link {
            margin-bottom: 0.8rem;
        }

        .footer-link a {
            color: var(--light);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-link a:hover {
            color: var(--secondary);
        }

        .contact-info {
            margin-bottom: 0.8rem;
            display: flex;
            align-items: center;
        }

        .contact-icon {
            margin-right: 0.5rem;
            color: var(--secondary);
        }

        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            margin-top: 2rem;
        }

        /* 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 ease, transform 0.5s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive */
        @media (max-width: 768px) {
            h1 {
                font-size: 2.5rem;
            }

            h2 {
                font-size: 2rem;
            }

            .hamburger {
                display: block;
            }

            .hamburger.active .bar:nth-child(2) {
                opacity: 0;
            }

            .hamburger.active .bar:nth-child(1) {
                transform: translateY(8px) rotate(45deg);
            }

            .hamburger.active .bar:nth-child(3) {
                transform: translateY(-8px) rotate(-45deg);
            }

            .nav-menu {
                position: fixed;
                left: -100%;
                top: 70px;
                gap: 0;
                flex-direction: column;
                background-color: var(--dark);
                width: 100%;
                text-align: center;
                transition: 0.3s;
                box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
                padding: 2rem 0;
            }

            .nav-menu.active {
                left: 0;
            }

            .nav-item {
                margin: 1.5rem 0;
            }

            .about-content {
                flex-direction: column;
            }

            .about-text {
                padding-right: 0;
                margin-bottom: 2rem;
            }
        }

