@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&family=Roboto:wght@300;400;700&display=swap');
        
        :root {
            --primary-color: #0000FF; /* Bright Blue */
            --secondary-color: #FF00FF; /* Fuchsia */
            --accent-color: #6A0DAD; /* Deep Purple */
            --text-color: #ffffff;
            --background-color: #1a0f30; /* Dark purple/black */
            --light-accent: #00FFFF; /* Cyan */
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Roboto', sans-serif;
            scroll-behavior: smooth;
        }

        body {
            background-color: var(--background-color);
            color: var(--text-color);
            overflow-x: hidden;
            line-height: 1.6;
        }

        h1, h2, h3 {
            font-family: 'Orbitron', sans-serif;
            text-shadow: 2px 2px 5px rgba(255, 0, 255, 0.5);
        }
        
        h1 {
            font-size: clamp(2.5rem, 5vw, 4.5rem);
            line-height: 1.1;
        }
        
        h2 {
            font-size: clamp(2rem, 4vw, 3.5rem);
            margin-bottom: 20px;
            text-align: center;
        }
        
        p {
            font-size: clamp(1rem, 2vw, 1.2rem);
        }
        
        section {
            padding: 80px 5%;
            position: relative;
            overflow: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .animated-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            background: radial-gradient(circle at 50% 50%, var(--background-color) 0%, var(--accent-color) 100%);
            opacity: 0.1;
        }
        
        /* Header */
        header {
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            background-color: rgba(26, 15, 48, 0.9);
            padding: 15px 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 2px solid var(--secondary-color);
            transition: all 0.3s ease;
        }
        
        .logo {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.8rem;
            color: var(--secondary-color);
            text-decoration: none;
            text-shadow: 0 0 10px var(--secondary-color);
        }

        nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li a {
            color: var(--text-color);
            text-decoration: none;
            font-size: 1rem;
            padding: 10px 15px;
            transition: color 0.3s ease, text-shadow 0.3s ease;
        }
        
        nav ul li a:hover {
            color: var(--light-accent);
            text-shadow: 0 0 10px var(--light-accent);
        }
        
        .burger-menu {
            display: none;
            cursor: pointer;
            flex-direction: column;
            justify-content: space-between;
            width: 30px;
            height: 21px;
        }
        
        .burger-menu span {
            display: block;
            height: 3px;
            width: 100%;
            background-color: var(--text-color);
            transition: all 0.3s ease-in-out;
        }

        .burger-menu.active .bar1 { transform: rotate(-45deg) translate(-5px, 6px); }
        .burger-menu.active .bar2 { opacity: 0; }
        .burger-menu.active .bar3 { transform: rotate(45deg) translate(-5px, -6px); }

        .nav-links {
            transition: transform 0.3s ease-in-out;
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../img/03.webp') no-repeat center center/cover;
            animation: parallax-bg 10s infinite alternate linear;
        }
        
        @keyframes parallax-bg {
            0% { background-position: center 0; }
            100% { background-position: center 100%; }
        }
        
        .hero-content {
            z-index: 1;
            padding: 20px;
        }

        .hero h1 {
            color: var(--secondary-color);
            margin-bottom: 20px;
            animation: pulse-glow 2s infinite alternate;
        }

        @keyframes pulse-glow {
            0% { text-shadow: 0 0 5px var(--secondary-color), 0 0 10px var(--secondary-color); }
            100% { text-shadow: 0 0 20px var(--secondary-color), 0 0 40px var(--secondary-color); }
        }
        
        .hero p {
            max-width: 700px;
            margin: 0 auto 30px;
            font-size: 1.2rem;
        }
        
        .cta-button {
            display: inline-block;
            padding: 15px 30px;
            background-color: var(--secondary-color);
            color: var(--background-color);
            text-decoration: none;
            font-family: 'Orbitron', sans-serif;
            font-weight: 700;
            border-radius: 50px;
            text-transform: uppercase;
            letter-spacing: 2px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            box-shadow: 0 0 15px var(--secondary-color);
        }
        
        .cta-button:hover {
            transform: scale(1.1);
            box-shadow: 0 0 30px var(--secondary-color), 0 0 60px var(--secondary-color);
        }

        /* About Section */
        .about {
            background-color: var(--background-color);
            color: var(--text-color);
            text-align: center;
        }

        .about .container {
            display: flex;
            flex-direction: column;
            gap: 40px;
        }
        
        .about h2 {
            color: var(--primary-color);
            text-shadow: 2px 2px 5px rgba(0, 0, 255, 0.5);
        }

        .about-content {
            display: flex;
            align-items: center;
            gap: 40px;
            flex-wrap: wrap;
            justify-content: center;
        }
        
        .about-text, .about-image {
            flex: 1 1 45%;
            min-width: 300px;
        }
        
        .about-image img {
            width: 100%;
            height: auto;
            border-radius: 15px;
            box-shadow: 0 0 20px var(--primary-color);
        }

        /* Products Section */
        .products {
            background: linear-gradient(rgba(26, 15, 48, 0.8), rgba(26, 15, 48, 0.8)), url('img/02.webp') no-repeat center center/cover fixed;
            text-align: center;
        }
        
        .products h2 {
            color: var(--light-accent);
            text-shadow: 2px 2px 5px rgba(0, 255, 255, 0.5);
        }

        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-top: 40px;
        }
        
        .product-card {
            background: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(5px);
            border: 2px solid var(--light-accent);
            border-radius: 15px;
            padding: 30px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            text-align: left;
        }
        
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 255, 255, 0.3);
        }

        .product-card h3 {
            color: var(--light-accent);
            margin-bottom: 10px;
        }
        
        .product-card p {
            font-size: 1rem;
        }

        /* Prices Section */
        .prices {
            background-color: var(--background-color);
            text-align: center;
        }
        
        .prices h2 {
            color: var(--secondary-color);
            text-shadow: 2px 2px 5px rgba(255, 0, 255, 0.5);
        }
        
        .price-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-top: 40px;
        }
        
        .price-card {
            background: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(5px);
            border: 2px solid var(--secondary-color);
            border-radius: 15px;
            padding: 40px;
            display: flex;
            flex-direction: column;
            align-items: center;
            position: relative;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .price-card:before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: conic-gradient(transparent, var(--secondary-color), transparent);
            animation: rotate-border 4s linear infinite;
            z-index: 0;
            opacity: 0.5;
        }

        @keyframes rotate-border {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        .price-card-content {
            position: relative;
            z-index: 1;
        }
        
        .price-card h3 {
            color: var(--secondary-color);
            font-size: 1.8rem;
            margin-bottom: 10px;
        }
        
        .price-card .price {
            font-family: 'Orbitron', sans-serif;
            font-size: 3rem;
            font-weight: 700;
            color: var(--light-accent);
            text-shadow: 0 0 10px var(--light-accent);
            margin-bottom: 20px;
        }
        
        .price-card ul {
            list-style: none;
            text-align: left;
            margin-bottom: 30px;
        }
        
        .price-card ul li {
            margin-bottom: 10px;
            position: relative;
            padding-left: 25px;
        }
        
        .price-card ul li:before {
            content: '✓';
            color: var(--secondary-color);
            position: absolute;
            left: 0;
        }

        .price-card .cta-button {
            padding: 10px 20px;
            font-size: 1rem;
        }

        /* Gallery Section */
        .gallery {
            background-color: var(--background-color);
            text-align: center;
        }
        
        .gallery h2 {
            color: var(--primary-color);
            text-shadow: 2px 2px 5px rgba(0, 0, 255, 0.5);
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 40px;
        }
        
        .gallery-item {
            overflow: hidden;
            border-radius: 15px;
            position: relative;
            transition: transform 0.3s ease;
        }
        
        .gallery-item:hover {
            transform: scale(1.05);
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        /* Feedback Section */
        .feedback {
            background: linear-gradient(rgba(26, 15, 48, 0.8), rgba(26, 15, 48, 0.8)), url('img/03.webp') no-repeat center center/cover fixed;
        }
        
        .feedback h2 {
            color: var(--light-accent);
            text-shadow: 2px 2px 5px rgba(0, 255, 255, 0.5);
            text-align: center;
        }
        
        .slider-container {
            position: relative;
            max-width: 900px;
            margin: 40px auto;
            overflow: hidden;
        }

        .feedback-slider {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }

        .feedback-card {
            min-width: 100%;
            padding: 30px;
            text-align: center;
            background: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(5px);
            border: 2px solid var(--light-accent);
            border-radius: 15px;
        }
        
        .feedback-card blockquote {
            font-style: italic;
            margin-bottom: 20px;
            font-size: 1.1rem;
        }
        
        .feedback-card .author {
            font-weight: 700;
            color: var(--light-accent);
        }
        
        .slider-nav {
            text-align: center;
            margin-top: 20px;
        }

        .slider-dot {
            height: 10px;
            width: 10px;
            margin: 0 5px;
            background-color: #555;
            border-radius: 50%;
            display: inline-block;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }
        
        .slider-dot.active {
            background-color: var(--light-accent);
        }

        /* FAQ Section */
        .faq {
            background-color: var(--background-color);
        }
        
        .faq h2 {
            color: var(--secondary-color);
            text-shadow: 2px 2px 5px rgba(255, 0, 255, 0.5);
            text-align: center;
        }

        .faq-item {
            border-bottom: 1px solid var(--accent-color);
            padding: 20px 0;
        }
        
        .faq-question {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.2rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .faq-question:hover {
            color: var(--secondary-color);
        }
        
        .faq-question::after {
            content: '+';
            font-size: 1.5rem;
            transition: transform 0.3s ease;
        }
        
        .faq-question.active::after {
            content: '-';
            transform: rotate(180deg);
        }
        
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease-out;
            padding-top: 0;
        }
        
        .faq-answer p {
            padding-top: 15px;
        }

        /* Contact Form */
        .contact {
            background: linear-gradient(rgba(26, 15, 48, 0.8), rgba(26, 15, 48, 0.8)), url('img/04.webp') no-repeat center center/cover;
            text-align: center;
            padding-bottom: 120px;
        }
        
        .contact h2 {
            color: var(--light-accent);
            text-shadow: 2px 2px 5px rgba(0, 255, 255, 0.5);
            margin-bottom: 30px;
        }

        .contact-form {
            max-width: 600px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 20px;
            background: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(5px);
            padding: 40px;
            border-radius: 15px;
            border: 2px solid var(--light-accent);
        }
        
        .form-group {
            display: flex;
            flex-direction: column;
            text-align: left;
        }

        .form-group label {
            font-family: 'Orbitron', sans-serif;
            margin-bottom: 5px;
            color: var(--light-accent);
        }

        .form-group input {
            padding: 15px;
            background: transparent;
            border: 1px solid var(--light-accent);
            border-radius: 5px;
            color: var(--text-color);
            font-size: 1rem;
            transition: border-color 0.3s ease, box-shadow 0.3s ease;
        }
        
        .form-group input:focus {
            outline: none;
            border-color: var(--secondary-color);
            box-shadow: 0 0 10px var(--secondary-color);
        }
        
        .submit-button {
            padding: 15px;
            background-color: var(--secondary-color);
            color: var(--background-color);
            border: none;
            cursor: pointer;
            font-family: 'Orbitron', sans-serif;
            font-size: 1.2rem;
            font-weight: 700;
            border-radius: 5px;
            transition: background-color 0.3s ease, transform 0.3s ease;
        }
        
        .submit-button:hover {
            background-color: var(--light-accent);
            color: var(--background-color);
            transform: scale(1.05);
        }

        /* Disclaimer */
        .disclaimer {
            background-color: var(--background-color);
            color: #888;
            font-size: 0.8rem;
            text-align: center;
            padding: 20px 5%;
            border-top: 1px solid #333;
        }

        /* Footer */
        footer {
            background-color: var(--accent-color);
            padding: 40px 5%;
            text-align: center;
            font-size: 0.9rem;
        }
        
        footer .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }
        
        .footer-logo {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.5rem;
            color: var(--secondary-color);
            text-decoration: none;
        }
        
        .footer-links ul {
            list-style: none;
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            justify-content: center;
        }
        
        .footer-links a {
            color: var(--text-color);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-links a:hover {
            color: var(--light-accent);
        }
        
        .contact-info p {
            margin: 5px 0;
            font-size: 0.9rem;
        }

        /* Cookie Banner */
        .cookie-banner {
            position: fixed;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            width: 90%;
            max-width: 600px;
            background-color: rgba(26, 15, 48, 0.9);
            border: 2px solid var(--light-accent);
            border-radius: 10px;
            padding: 20px;
            display: flex;
            flex-direction: column;
            gap: 15px;
            box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
            z-index: 1001;
            display: none;
        }

        .cookie-banner p {
            font-size: 0.9rem;
            color: var(--text-color);
        }
        
        .cookie-banner a {
            color: var(--light-accent);
            text-decoration: underline;
        }
        
        .cookie-buttons {
            display: flex;
            gap: 10px;
            justify-content: flex-end;
        }

        .cookie-btn {
            padding: 10px 20px;
            border-radius: 5px;
            cursor: pointer;
            font-weight: 700;
        }

        .accept-cookie {
            background-color: var(--light-accent);
            color: var(--background-color);
            border: none;
        }

        .decline-cookie {
            background: transparent;
            border: 1px solid var(--light-accent);
            color: var(--light-accent);
        }
        
        /* Modal */
        .modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 2000;
        }

        .modal-content {
            background-color: var(--background-color);
            border: 2px solid var(--secondary-color);
            padding: 40px;
            text-align: center;
            border-radius: 15px;
            box-shadow: 0 0 30px var(--secondary-color);
            position: relative;
        }
        
        .close-btn {
            position: absolute;
            top: 10px;
            right: 10px;
            font-size: 1.5rem;
            color: var(--secondary-color);
            cursor: pointer;
            line-height: 1;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 0;
                right: 0;
                height: 100vh;
                width: 70%;
                background-color: rgba(26, 15, 48, 0.95);
                backdrop-filter: blur(10px);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                transform: translateX(100%);
            }
            
            .nav-links.active {
                transform: translateX(0);
            }
            
            .nav-links li {
                margin: 20px 0;
            }
            
            .burger-menu {
                display: flex;
            }
            
            .hero {
                height: 80vh;
            }
            
            .hero-content h1 {
                font-size: 2.5rem;
            }

            .about-content {
                flex-direction: column;
            }
            
            .product-card, .price-card {
                padding: 20px;
            }

            .footer .container {
                flex-direction: column;
            }
        }
        
        /* Animations on scroll */
        .fade-in {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

