:root {
            --primary: #00b3b3;
            --secondary: #ff6600;
            --accent: #9933cc;
            --dark: #1a1a1a;
            --light: #f0f0f0;
        }
        
        * {
            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;}
        
        main {
            max-width: 1000px;
            margin: 0 auto;
            background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
            padding: 3rem;
            border: 2px solid var(--primary);
        }
        
        h1, h2, h3 {
            font-family: 'Arial', sans-serif;
            margin-bottom: 1rem;
            color: var(--primary);
        }
        
        h1 {
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 2rem;
            text-transform: uppercase;
        }
        
        h2 {
            font-size: 1.8rem;
            margin-top: 2rem;
            color: var(--secondary);
        }
        
        h3 {
            font-size: 1.3rem;
            margin-top: 1.5rem;
            color: var(--accent);
        }
        
        p, ul {
            margin-bottom: 1rem;
        }
        
        ul {
            padding-left: 2rem;
        }
        
        .last-updated {
            text-align: right;
            font-style: italic;
            margin-bottom: 2rem;
            color: #999;
        }
        
        @media (max-width: 768px) {
            body {}
            
            main {
                padding: 2rem 1.5rem;
            }
            
            h1 {
                font-size: 2rem;
            }
            
            h2 {
                font-size: 1.5rem;
            }
        }
:root {
            --primary: #00b3b3;
            --secondary: #ff6600;
            --accent: #9933cc;
            --dark: #1a1a1a;
            --light: #f0f0f0;
            --retro-blue: #00aaff;
            --retro-pink: #ff33cc;
        }
        
        * {
            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;
            padding-top: 80px;}
        
        h1, h2, h3, h4 {
            font-family: 'Arial', sans-serif;
            margin-bottom: 1rem;
            text-transform: uppercase;
        }
        
        h1 {
            font-size: 2.5rem;
            color: var(--retro-blue);
            text-shadow: 0 0 10px rgba(0, 170, 255, 0.5);
        }
        
        h2 {
            font-size: 2rem;
            color: var(--retro-pink);
            margin-bottom: 2rem;
        }
        
        h3 {
            font-size: 1.5rem;
            color: var(--primary);
        }
        
        p {
            margin-bottom: 1rem;
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        section {
            padding: 5rem 0;
            border-bottom: 2px dashed var(--accent);
        }
        
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(26, 26, 26, 0.95);
            padding: 1rem 0;
            z-index: 1000;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
            border-bottom: 1px solid var(--primary);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--primary);
            text-decoration: none;
            display: flex;
            align-items: center;
        }
        
        .logo span {
            color: var(--secondary);
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
        }
        
        .nav-menu li {
            margin-left: 2rem;
        }
        
        .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;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--secondary);
            transition: width 0.3s;
        }
        
        .nav-menu a:hover {
            color: var(--secondary);
        }
        
        .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 {
            height: 80vh;
            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-1690047003542-9e0c770a0f62?q=80&w=1170&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') no-repeat center center/cover;
            position: relative;
            overflow: hidden;
        }
        
        .hero-content {
            text-align: center;
            z-index: 1;
            animation: fadeIn 1.5s ease-in;
        }
        
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            text-shadow: 0 0 15px rgba(0, 179, 179, 0.8);
        }
        
        .hero p {
            font-size: 1.5rem;
            margin-bottom: 2rem;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .btn {
            display: inline-block;
            background-color: var(--secondary);
            color: var(--light);
            padding: 0.8rem 2rem;
            border: none;
            border-radius: 0;
            text-decoration: none;
            font-weight: bold;
            text-transform: uppercase;
            transition: all 0.3s;
            cursor: pointer;
            box-shadow: 0 0 10px rgba(255, 102, 0, 0.5);
        }
        
        .btn:hover {
            background-color: var(--primary);
            box-shadow: 0 0 15px rgba(0, 179, 179, 0.8);
            transform: translateY(-3px);
        }
        
        .about-content {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 2rem;
        }
        
        .about-text {
            flex: 1;
            min-width: 300px;
        }
        
        .about-image {
            flex: 1;
            min-width: 300px;
            text-align: center;
        }
        
        .about-image img {
            max-width: 100%;
            border: 5px solid var(--accent);
            box-shadow: 0 0 20px rgba(153, 51, 204, 0.5);
            transition: transform 0.5s;
        }
        
        .about-image img:hover {
            transform: scale(1.05);
        }
        
        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }
        
        .product-card {
            background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
            padding: 2rem;
            border: 1px solid var(--primary);
            box-shadow: 0 0 15px rgba(0, 179, 179, 0.3);
            transition: transform 0.3s;
            text-align: center;
        }
        
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 0 20px rgba(0, 179, 179, 0.5);
        }
        
        .product-card img {
            max-width: 100%;
            margin-bottom: 1rem;
            border: 2px solid var(--secondary);
        }
        
        .prices-container {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            justify-content: center;
        }
        
        .price-card {
            background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
            padding: 2rem;
            border: 2px solid var(--accent);
            flex: 1;
            min-width: 250px;
            max-width: 350px;
            text-align: center;
            box-shadow: 0 0 15px rgba(153, 51, 204, 0.3);
        }
        
        .price-card h3 {
            color: var(--retro-pink);
            margin-bottom: 1rem;
        }
        
        .price {
            font-size: 2.5rem;
            color: var(--secondary);
            margin: 1rem 0;
        }
        
        .price-features {
            list-style: none;
            margin: 1rem 0;
        }
        
        .price-features li {
            margin-bottom: 0.5rem;
            padding-left: 1.5rem;
            position: relative;
        }
        
        .price-features li:before {
            content: '✓';
            color: var(--primary);
            position: absolute;
            left: 0;
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1rem;
            margin-top: 2rem;
        }
        
        .gallery-item {
            overflow: hidden;
            position: relative;
            height: 250px;
            border: 2px solid var(--primary);
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        
        .feedback-slider {
            position: relative;
            overflow: hidden;
            margin-top: 2rem;
            height: 300px;
        }
        
        .feedback-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 0.5s ease;
            background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
            padding: 2rem;
            border: 1px solid var(--secondary);
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .feedback-slide.active {
            opacity: 1;
        }
        
        .feedback-text {
            font-style: italic;
            margin-bottom: 1rem;
        }
        
        .feedback-author {
            font-weight: bold;
            color: var(--primary);
        }
        
        .feedback-nav {
            text-align: center;
            margin-top: 1rem;
        }
        
        .feedback-nav button {
            background: none;
            border: none;
            color: var(--light);
            font-size: 2rem;
            cursor: pointer;
            margin: 0 0.5rem;
            transition: color 0.3s;
        }
        
        .feedback-nav button:hover {
            color: var(--secondary);
        }
        
        .faq-item {
            margin-bottom: 1rem;
            border: 1px solid var(--accent);
            background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
        }
        
        .faq-question {
            padding: 1rem;
            cursor: pointer;
            position: relative;
            font-weight: bold;
            color: var(--light);
        }
        
        .faq-question:after {
            content: '+';
            position: absolute;
            right: 1rem;
            transition: transform 0.3s;
        }
        
        .faq-item.active .faq-question:after {
            transform: rotate(45deg);
        }
        
        .faq-answer {
            padding: 0 1rem;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }
        
        .faq-item.active .faq-answer {
            max-height: 500px;
            padding: 1rem;
        }
        
        .contact-form {
            max-width: 600px;
            margin: 0 auto;
            background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
            padding: 2rem;
            border: 2px solid var(--primary);
        }
        
        .form-group {
            margin-bottom: 1.5rem;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: var(--primary);
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 0.8rem;
            background-color: #333;
            border: 1px solid var(--accent);
            color: var(--light);
        }
        
        .disclaimer {
            padding: 2rem 0;
            font-size: 0.8rem;
            color: #999;
            text-align: center;
        }
        
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: rgba(26, 26, 26, 0.95);
            padding: 1rem;
            text-align: center;
            border-top: 2px solid var(--secondary);
            z-index: 1000;
            display: none;
        }
        
        .cookie-banner p {
            margin-bottom: 1rem;
        }
        
        footer {
            background-color: #111;
            padding: 3rem 0;
            color: #999;
        }
        
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            justify-content: space-between;
        }
        
        .footer-section {
            flex: 1;
            min-width: 250px;
        }
        
        .footer-section h3 {
            color: var(--primary);
            margin-bottom: 1.5rem;
            border-bottom: 1px solid var(--accent);
            padding-bottom: 0.5rem;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 0.5rem;
        }
        
        .footer-links a {
            color: #999;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: var(--secondary);
        }
        
        .footer-bottom {
            text-align: center;
            margin-top: 2rem;
            padding-top: 1rem;
            border-top: 1px solid #333;
        }
        
        .popup {
            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: all 0.3s;
        }
        
        .popup-content {
            background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
            padding: 2rem;
            border: 3px solid var(--secondary);
            text-align: center;
            max-width: 500px;
            width: 90%;
        }
        
        .popup.active {
            opacity: 1;
            visibility: visible;
        }
        
        @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);
        }
        
        @media (max-width: 768px) {
            .burger {
                display: block;
            }
            
            .nav-menu {
                position: fixed;
                top: 80px;
                right: -100%;
                width: 70%;
                height: calc(100vh - 80px);
                background-color: rgba(26, 26, 26, 0.98);
                flex-direction: column;
                align-items: center;
                justify-content: center;
                transition: right 0.5s ease;
                padding: 2rem 0;
            }
            
            .nav-menu.active {
                right: 0;
            }
            
            .nav-menu li {
                margin: 1.5rem 0;
            }
            
            h1 {
                font-size: 2rem;
            }
            
            h2 {
                font-size: 1.5rem;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero p {
                font-size: 1.2rem;
            }
        }

