:root {
            --primary: #FF5E7D;
            --secondary: #47CF73;
            --accent: #2EC4B6;
            --dark: #011627;
            --light: #FDFFFC;
            --retro-blue: #00C2D1;
            --retro-pink: #FF6B6B;
            --retro-yellow: #FFE66D;
            --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;
            overflow-x: hidden;
        }
        
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(1, 22, 39, 0.9);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 15px 0;
            border-bottom: 3px 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 {
            font-family: var(--font-heading);
            font-size: 28px;
            color: var(--retro-pink);
            text-decoration: none;
            display: flex;
            align-items: center;
        }
        
        .logo span:first-child {
            color: var(--retro-blue);
        }
        
        .logo span:last-child {
            color: var(--retro-yellow);
        }
        
        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;
            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-pink);
            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;
            position: relative;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        h1, h2, h3 {
            font-family: var(--font-heading);
            margin-bottom: 20px;
        }
        
        h1 {
            font-size: 48px;
            color: var(--retro-yellow);
            line-height: 1.2;
        }
        
        h2 {
            font-size: 36px;
            color: var(--retro-blue);
            text-align: center;
            margin-bottom: 40px;
        }
        
        h3 {
            font-size: 24px;
            color: var(--retro-pink);
        }
        
        p {
            margin-bottom: 20px;
            font-size: 16px;
        }
        
        .btn {
            display: inline-block;
            background-color: var(--retro-pink);
            color: var(--dark);
            padding: 12px 30px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: bold;
            border: none;
            cursor: pointer;
            transition: all 0.3s;
            font-size: 16px;
            margin-top: 20px;
            border: 2px solid transparent;
        }
        
        .btn:hover {
            background-color: transparent;
            color: var(--retro-pink);
            border-color: var(--retro-pink);
            transform: translateY(-3px);
        }
        
        .btn-secondary {
            background-color: transparent;
            color: var(--retro-blue);
            border: 2px solid var(--retro-blue);
        }
        
        .btn-secondary:hover {
            background-color: var(--retro-blue);
            color: var(--dark);
        }
        
        /* Hero Section */
        .hero {
            height: calc(100vh - 80px);
            display: flex;
            align-items: center;
            background: linear-gradient(rgba(1, 22, 39, 0.7), rgba(1, 22, 39, 0.9)), url('https://images.unsplash.com/photo-1545205597-3d9d02c29597?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
            position: relative;
            overflow: hidden;
        }
        
        .hero-content {
            max-width: 600px;
            position: relative;
            z-index: 2;
            animation: fadeInUp 1s ease-out;
        }
        
        .hero p {
            font-size: 18px;
            margin-bottom: 30px;
            color: var(--light);
        }
        
        .hero-btns {
            display: flex;
            gap: 20px;
        }
        
        /* About Section */
        .about {
            background-color: var(--light);
            color: var(--dark);
        }
        
        .about h2 {
            color: var(--retro-pink);
        }
        
        .about-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }
        
        .about-text {
            flex: 1;
        }
        
        .about-image {
            flex: 1;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }
        
        .about-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s;
        }
        
        .about-image:hover img {
            transform: scale(1.05);
        }
        
        /* Products Section */
        .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(255, 255, 255, 0.1);
            border-radius: 10px;
            overflow: hidden;
            transition: transform 0.3s, box-shadow 0.3s;
            border: 1px solid var(--retro-blue);
        }
        
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 194, 209, 0.3);
        }
        
        .product-image {
            height: 200px;
            overflow: hidden;
        }
        
        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .product-card:hover .product-image img {
            transform: scale(1.1);
        }
        
        .product-info {
            padding: 20px;
        }
        
        /* Prices Section */
        .prices {
            background-color: var(--light);
            color: var(--dark);
        }
        
        .prices h2 {
            color: var(--retro-pink);
        }
        
        .price-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .price-card {
            background-color: var(--dark);
            color: var(--light);
            border-radius: 10px;
            padding: 30px;
            text-align: center;
            transition: transform 0.3s;
            border: 2px solid var(--retro-blue);
        }
        
        .price-card:hover {
            transform: scale(1.05);
        }
        
        .price-card h3 {
            color: var(--retro-yellow);
            margin-bottom: 15px;
        }
        
        .price {
            font-size: 36px;
            font-weight: bold;
            color: var(--retro-pink);
            margin: 20px 0;
        }
        
        .price span {
            font-size: 16px;
            color: var(--light);
        }
        
        .price-features {
            list-style: none;
            margin-bottom: 20px;
        }
        
        .price-features li {
            margin-bottom: 10px;
            position: relative;
            padding-left: 20px;
        }
        
        .price-features li::before {
            content: '✓';
            color: var(--retro-blue);
            position: absolute;
            left: 0;
        }
        
        /* Gallery Section */
        .gallery {
            background-color: var(--dark);
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }
        
        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            height: 250px;
            cursor: pointer;
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        
        .gallery-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(1, 22, 39, 0.9), transparent);
            padding: 20px;
            opacity: 0;
            transition: opacity 0.3s;
        }
        
        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }
        
        /* Feedback Section */
        .feedback {
            background-color: var(--light);
            color: var(--dark);
        }
        
        .feedback h2 {
            color: var(--retro-pink);
        }
        
        .feedback-slider {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
            overflow: hidden;
        }
        
        .feedback-slides {
            display: flex;
            transition: transform 0.5s ease;
        }
        
        .feedback-slide {
            min-width: 100%;
            padding: 30px;
            text-align: center;
        }
        
        .feedback-avatar {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            object-fit: cover;
            margin: 0 auto 20px;
            border: 3px solid var(--retro-blue);
        }
        
        .feedback-text {
            font-style: italic;
            margin-bottom: 20px;
            position: relative;
        }
        
        .feedback-text::before,
        .feedback-text::after {
            content: '"';
            font-size: 24px;
            color: var(--retro-pink);
        }
        
        .feedback-author {
            font-weight: bold;
            color: var(--retro-blue);
        }
        
        .slider-controls {
            display: flex;
            justify-content: center;
            margin-top: 30px;
            gap: 20px;
        }
        
        .slider-btn {
            background-color: var(--dark);
            color: var(--light);
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }
        
        .slider-btn:hover {
            background-color: var(--retro-blue);
            color: var(--dark);
        }
        
        /* FAQ Section */
        .faq {
            background-color: var(--dark);
        }
        
        .faq-item {
            margin-bottom: 20px;
            border: 1px solid var(--retro-blue);
            border-radius: 10px;
            overflow: hidden;
            max-width: 800px;
            margin: 0 auto 20px;
        }
        
        .faq-question {
            background-color: rgba(0, 194, 209, 0.1);
            padding: 15px 20px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: bold;
        }
        
        .faq-question::after {
            content: '+';
            font-size: 20px;
            transition: transform 0.3s;
        }
        
        .faq-question.active::after {
            transform: rotate(45deg);
        }
        
        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
        }
        
        .faq-answer.active {
            padding: 20px;
            max-height: 500px;
        }
        
        /* Contact Form */
        .contact-form {
            max-width: 600px;
            margin: 0 auto;
            background-color: rgba(255, 255, 255, 0.1);
            padding: 30px;
            border-radius: 10px;
            border: 1px solid var(--retro-blue);
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: var(--retro-yellow);
        }
        
        .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 {
            min-height: 120px;
            resize: vertical;
        }
        
        /* Footer */
        footer {
            background-color: var(--dark);
            color: var(--light);
            padding: 50px 20px 20px;
            border-top: 3px 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-family: var(--font-heading);
            font-size: 24px;
            color: var(--retro-pink);
            margin-bottom: 20px;
            display: inline-block;
        }
        
        .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-blue);
        }
        
        .contact-info {
            margin-top: 20px;
        }
        
        .contact-info p {
            margin-bottom: 10px;
            display: flex;
            align-items: center;
        }
        
        .contact-info i {
            margin-right: 10px;
            color: var(--retro-blue);
        }
        
        .copyright {
            text-align: center;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        /* Disclaimer */
        .disclaimer {
            background-color: rgba(255, 110, 110, 0.1);
            padding: 20px;
            border-radius: 5px;
            margin-top: 40px;
            border-left: 3px solid var(--retro-pink);
        }
        
        .disclaimer p {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.7);
        }
        
        /* Cookie Banner */
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background-color: var(--dark);
            color: var(--light);
            padding: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            border-top: 2px solid var(--retro-blue);
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }
        
        .cookie-banner.show {
            transform: translateY(0);
        }
        
        .cookie-banner p {
            margin-right: 20px;
            font-size: 14px;
        }
        
        .cookie-banner .btn {
            margin-top: 0;
            white-space: nowrap;
        }
        
        /* Modal */
        .modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(1, 22, 39, 0.9);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 2000;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s, visibility 0.3s;
        }
        
        .modal.show {
            opacity: 1;
            visibility: visible;
        }
        
        .modal-content {
            background-color: var(--dark);
            padding: 40px;
            border-radius: 10px;
            max-width: 500px;
            width: 90%;
            text-align: center;
            border: 3px solid var(--retro-blue);
            position: relative;
            transform: translateY(20px);
            transition: transform 0.3s;
        }
        
        .modal.show .modal-content {
            transform: translateY(0);
        }
        
        .modal-close {
            position: absolute;
            top: 15px;
            right: 15px;
            background: none;
            border: none;
            color: var(--light);
            font-size: 20px;
            cursor: pointer;
        }
        
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes float {
            0% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-20px);
            }
            100% {
                transform: translateY(0px);
            }
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            h1 {
                font-size: 36px;
            }
            
            h2 {
                font-size: 30px;
            }
            
            .about-content {
                flex-direction: column;
            }
            
            .hero-content {
                max-width: 100%;
                text-align: center;
            }
            
            .hero-btns {
                justify-content: center;
            }
            
        }
        
        @media (max-width: 768px) {
            nav ul {
                position: fixed;
                top: 80px;
                left: 0;
                width: 100%;
                background-color: var(--dark);
                flex-direction: column;
                align-items: center;
                padding: 20px 0;
                transform: translateY(-100%);
                opacity: 0;
                transition: transform 0.3s, opacity 0.3s;
                pointer-events: none;
            }
            
            nav ul.show {
                transform: translateY(0);
                opacity: 1;
                pointer-events: all;
            }
            
            nav ul li {
                margin: 15px 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);
            }
            
            .cookie-banner {
                flex-direction: column;
                text-align: center;
            }
            
            .cookie-banner p {
                margin-right: 0;
                margin-bottom: 15px;
            }
        }
        
        @media (max-width: 576px) {
            h1 {
                font-size: 28px;
            }
            
            h2 {
                font-size: 24px;
            }
            
            section {
                padding: 60px 15px;
            }
            
            .hero-btns {
                flex-direction: column;
                gap: 15px;
            }
            
            .btn {
                width: 100%;
                text-align: center;
            }
        }

