:root {
            --primary: #FF5E7D;
            --secondary: #00C2CB;
            --accent: #FFD166;
            --dark: #1A1A2E;
            --light: #F5F5F5;
            --retro-purple: #6A4C93;
            --retro-orange: #F25F5C;
            --retro-teal: #06D6A0;
        }

        * {
            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: linear-gradient(to right, var(--dark) 0%, var(--retro-purple) 100%);
        }

        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: 3px solid var(--retro-orange);
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .logo {
            font-size: 28px;
            font-weight: bold;
            color: var(--accent);
            text-decoration: none;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .logo span {
            color: var(--primary);
        }

        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: 18px;
            transition: color 0.3s;
            position: relative;
        }

        nav ul li a:hover {
            color: var(--accent);
        }

        nav ul li a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: var(--accent);
            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 {
            color: var(--accent);
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        h1 {
            font-size: 48px;
            line-height: 1.2;
            text-shadow: 3px 3px 0 var(--retro-purple);
        }

        h2 {
            font-size: 36px;
            border-bottom: 3px solid var(--primary);
            display: inline-block;
            padding-bottom: 10px;
        }

        h3 {
            font-size: 24px;
            color: var(--retro-teal);
        }

        p {
            margin-bottom: 20px;
            font-size: 18px;
        }

        .btn {
            display: inline-block;
            background-color: var(--primary);
            color: var(--dark);
            padding: 12px 30px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
            font-size: 16px;
            margin-top: 20px;
        }

        .btn:hover {
            background-color: var(--accent);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }

        .hero {
            height: calc(100vh - 80px);
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            background: url('https://images.unsplash.com/photo-1545389336-cf090694435e?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to right, rgba(26, 26, 46, 0.8) 0%, rgba(106, 76, 147, 0.6) 100%);
        }

        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 800px;
            padding: 0 20px;
        }

        .hero p {
            font-size: 20px;
            margin-bottom: 30px;
            color: var(--light);
        }

        .about {
            background-color: var(--dark);
            text-align: center;
        }

        .about-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin-top: 50px;
            gap: 30px;
        }

        .about-item {
            flex: 1 1 300px;
            background-color: rgba(255, 255, 255, 0.05);
            padding: 30px;
            border-radius: 10px;
            border: 1px solid var(--retro-purple);
            transition: transform 0.3s;
        }

        .about-item:hover {
            transform: translateY(-10px);
            border-color: var(--accent);
        }

        .products {
            background-color: var(--retro-purple);
            text-align: center;
        }

        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .product-card {
            background-color: var(--dark);
            padding: 30px;
            border-radius: 10px;
            transition: all 0.3s;
            border: 1px solid var(--retro-orange);
        }

        .product-card:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .product-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 5px;
            margin-bottom: 20px;
            border: 3px solid var(--primary);
        }

        .prices {
            background-color: var(--dark);
            text-align: center;
        }

        .price-cards {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
            margin-top: 50px;
        }

        .price-card {
            flex: 1 1 300px;
            background-color: rgba(255, 255, 255, 0.05);
            padding: 30px;
            border-radius: 10px;
            border: 1px solid var(--retro-teal);
            transition: all 0.3s;
            max-width: 350px;
        }

        .price-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(0, 194, 203, 0.2);
        }

        .price-card h3 {
            color: var(--primary);
            margin-bottom: 10px;
        }

        .price {
            font-size: 36px;
            font-weight: bold;
            color: var(--accent);
            margin: 20px 0;
        }

        .price span {
            font-size: 16px;
            color: var(--light);
        }

        .price-features {
            list-style: none;
            margin-bottom: 30px;
        }

        .price-features li {
            margin-bottom: 10px;
            position: relative;
            padding-left: 25px;
        }

        .price-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--retro-teal);
            font-weight: bold;
        }

        .gallery {
            background-color: var(--dark);
            text-align: center;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 50px;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            height: 250px;
            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) 0%, transparent 100%);
            opacity: 0;
            transition: opacity 0.3s;
        }

        .gallery-item:hover::after {
            opacity: 1;
        }

        .feedback {
            background-color: var(--retro-purple);
            text-align: center;
        }

        .feedback-slider {
            max-width: 800px;
            margin: 50px auto 0;
            position: relative;
            overflow: hidden;
        }

        .feedback-slides {
            display: flex;
            transition: transform 0.5s ease;
        }

        .feedback-slide {
            min-width: 100%;
            padding: 30px;
            background-color: var(--dark);
            border-radius: 10px;
            border: 1px solid var(--accent);
        }

        .feedback-slide p {
            font-style: italic;
            margin-bottom: 20px;
        }

        .feedback-author {
            font-weight: bold;
            color: var(--accent);
        }

        .slider-nav {
            display: flex;
            justify-content: center;
            margin-top: 20px;
        }

        .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(--accent);
        }

        .faq {
            background-color: var(--dark);
        }

        .faq-item {
            margin-bottom: 20px;
            border: 1px solid var(--retro-purple);
            border-radius: 10px;
            overflow: hidden;
        }

        .faq-question {
            background-color: rgba(106, 76, 147, 0.3);
            padding: 15px 20px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background-color 0.3s;
        }

        .faq-question:hover {
            background-color: rgba(106, 76, 147, 0.5);
        }

        .faq-question::after {
            content: '+';
            font-size: 24px;
            color: var(--accent);
        }

        .faq-question.active::after {
            content: '-';
        }

        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
            background-color: rgba(26, 26, 46, 0.5);
        }

        .faq-answer.show {
            padding: 20px;
            max-height: 500px;
        }

        .contact-form {
            max-width: 600px;
            margin: 50px auto 0;
            background-color: rgba(255, 255, 255, 0.05);
            padding: 30px;
            border-radius: 10px;
            border: 1px solid var(--retro-teal);
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: var(--accent);
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px;
            background-color: rgba(255, 255, 255, 0.1);
            border: 1px solid var(--retro-purple);
            border-radius: 5px;
            color: var(--light);
            font-size: 16px;
        }

        .form-group textarea {
            height: 120px;
            resize: vertical;
        }

        footer {
            background-color: var(--dark);
            padding: 50px 20px 20px;
            border-top: 3px solid var(--primary);
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .footer-logo {
            font-size: 24px;
            font-weight: bold;
            color: var(--accent);
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .footer-links h3 {
            color: var(--primary);
            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(--accent);
        }

        .footer-contact p {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }

        .footer-contact p i {
            margin-right: 10px;
            color: var(--accent);
        }

        .copyright {
            text-align: center;
            margin-top: 50px;
            padding-top: 20px;
            border-top: 1px solid var(--retro-purple);
        }

        .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;
            max-width: 500px;
            width: 90%;
            text-align: center;
            border: 3px solid var(--accent);
            position: relative;
        }

        .close-modal {
            position: absolute;
            top: 10px;
            right: 10px;
            font-size: 24px;
            color: var(--light);
            cursor: pointer;
            transition: color 0.3s;
        }

        .close-modal:hover {
            color: var(--primary);
        }

        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: var(--dark);
            padding: 20px;
            box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
            z-index: 1000;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            border-top: 3px solid var(--retro-teal);
        }

        .cookie-banner p {
            margin-bottom: 0;
            flex: 1 1 300px;
        }

        .cookie-banner .btn {
            margin: 10px;
            flex-shrink: 0;
        }

        @media (max-width: 768px) {
            nav ul {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background-color: var(--dark);
                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: 20px 0;
            }

            .burger {
                display: block;
            }

            .burger.active div:nth-child(1) {
                transform: rotate(-45deg) translate(-5px, 6px);
            }

            .burger.active div:nth-child(2) {
                opacity: 0;
            }

            .burger.active div:nth-child(3) {
                transform: rotate(45deg) translate(-5px, -6px);
            }

            h1 {
                font-size: 36px;
            }

            h2 {
                font-size: 28px;
            }

            .hero {
                height: auto;
                padding: 100px 0;
            }

            section {
                padding: 60px 20px;
            }
        }

        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes slideUp {
            from { 
                opacity: 0;
                transform: translateY(50px);
            }
            to { 
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in {
            animation: fadeIn 1s ease forwards;
        }

        .slide-up {
            animation: slideUp 0.8s ease forwards;
        }

        .delay-1 {
            animation-delay: 0.2s;
        }

        .delay-2 {
            animation-delay: 0.4s;
        }

        .delay-3 {
            animation-delay: 0.6s;
        }

        .delay-4 {
            animation-delay: 0.8s;
        }

