@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&family=Roboto:wght@400;700&display=swap');

        :root {
            --primary-color: #00FFFF;
            --secondary-color: #FF00FF;
            --background-color: #1a1a2e;
            --text-color: #ffffff;
            --accent-color: #00FF7F;
            --footer-bg: #161628;
            --header-bg: rgba(26, 26, 46, 0.9);
            --form-bg: #2a2a3e;
            --border-color: #4a4a5e;
        }

        * {
            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);
            line-height: 1.6;
            position: relative;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        h1, h2, h3 {
            font-family: 'Orbitron', sans-serif;
            color: var(--primary-color);
            text-align: center;
            text-transform: uppercase;
        }

        h1 {
            font-size: 3rem;
            margin-bottom: 20px;
        }

        h2 {
            font-size: 2.5rem;
            margin-bottom: 40px;
            position: relative;
        }
        
        h2::after {
            content: '';
            display: block;
            width: 80px;
            height: 3px;
            background: var(--secondary-color);
            margin: 10px auto 0;
        }
        
        p {
            font-size: 1.1rem;
            margin-bottom: 20px;
        }

        a {
            color: var(--primary-color);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        a:hover {
            color: var(--secondary-color);
        }

        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: var(--header-bg);
            backdrop-filter: blur(5px);
            z-index: 1000;
            padding: 15px 0;
            border-bottom: 2px solid var(--border-color);
            transition: all 0.3s ease;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--accent-color);
            text-transform: uppercase;
        }

        nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li {
            margin-left: 30px;
        }

        nav ul a {
            font-size: 1.1rem;
            font-weight: 700;
            transition: color 0.3s ease, text-shadow 0.3s ease;
        }

        nav ul a:hover {
            color: var(--secondary-color);
            text-shadow: 0 0 10px var(--secondary-color);
        }

        .burger-menu {
            display: none;
            cursor: pointer;
            flex-direction: column;
            justify-content: space-around;
            width: 30px;
            height: 25px;
            transition: all 0.3s ease;
        }

        .burger-menu div {
            width: 30px;
            height: 3px;
            background-color: var(--text-color);
            transition: all 0.3s ease;
        }

        .nav-links.active {
            transform: translateX(0);
        }

        .burger-menu.active .line1 {
            transform: rotate(-45deg) translate(-5px, 6px);
        }

        .burger-menu.active .line2 {
            opacity: 0;
        }

        .burger-menu.active .line3 {
            transform: rotate(45deg) translate(-5px, -6px);
        }

        main {
            padding-top: 100px;
        }

        section {
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }

        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;
            background: linear-gradient(rgba(26, 26, 46, 0.7), rgba(26, 26, 46, 0.7)), url('../img/05.webp') center/cover no-repeat fixed;
            z-index: 1;
        }
        
        .hero-content h1 {
            font-size: 4.5rem;
            text-shadow: 0 0 20px var(--primary-color), 0 0 40px var(--primary-color);
            animation: pulse 2s infinite ease-in-out;
        }
        
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        
        .hero-content p {
            font-size: 1.5rem;
            color: var(--accent-color);
            margin-top: 20px;
            text-shadow: 0 0 10px var(--accent-color);
        }

        .about {
            background-color: var(--background-color);
        }

        .about-content {
            display: flex;
            align-items: center;
            gap: 40px;
        }

        .about-text {
            flex: 1;
        }

        .about-image {
            flex: 1;
            text-align: center;
            position: relative;
            transform: translateY(20px);
            opacity: 0;
            transition: all 1s ease-out;
        }
        
        .about-image.fade-in {
            transform: translateY(0);
            opacity: 1;
        }
        
        .about-image img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
            animation: glow 3s infinite alternate;
        }
        
        @keyframes glow {
            from { box-shadow: 0 0 10px rgba(0, 255, 255, 0.5); }
            to { box-shadow: 0 0 25px rgba(0, 255, 255, 0.8); }
        }

        .products {
            background-color: #101020;
        }

        .product-item {
            display: flex;
            align-items: center;
            gap: 40px;
            margin-bottom: 60px;
            opacity: 0;
            transform: translateX(-50px);
            transition: all 1s ease-out;
        }

        .product-item.fade-in {
            opacity: 1;
            transform: translateX(0);
        }

        .product-item:nth-child(even) {
            flex-direction: row-reverse;
            transform: translateX(50px);
        }

        .product-item:nth-child(even).fade-in {
            transform: translateX(0);
        }

        .product-image {
            flex: 1;
            max-width: 50%;
        }

        .product-image img {
            width: 100%;
            border-radius: 10px;
            box-shadow: 0 0 20px var(--secondary-color);
        }
        
        .product-info {
            flex: 1;
            max-width: 50%;
        }
        
        .product-info h3 {
            text-align: left;
            margin-bottom: 20px;
            color: var(--secondary-color);
        }

        .prices {
            background-color: var(--background-color);
        }

        .price-cards {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
        }

        .price-card {
            background-color: var(--form-bg);
            border: 2px solid var(--primary-color);
            border-radius: 10px;
            padding: 30px;
            text-align: center;
            width: 300px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            opacity: 0;
            transform: translateY(50px);
        }
        
        .price-card.fade-in {
            opacity: 1;
            transform: translateY(0);
        }
        
        .price-card:hover {
            transform: translateY(-10px) scale(1.05);
            box-shadow: 0 0 25px rgba(0, 255, 255, 0.7);
        }

        .price-card h3 {
            margin-bottom: 10px;
            color: var(--accent-color);
        }

        .price-card .price {
            font-family: 'Orbitron', sans-serif;
            font-size: 3rem;
            font-weight: 700;
            color: var(--primary-color);
            margin: 15px 0;
        }

        .price-card .price small {
            font-size: 1rem;
            color: var(--text-color);
        }

        .price-card ul {
            list-style: none;
            text-align: left;
            margin-top: 20px;
        }

        .price-card ul li {
            padding: 10px 0;
            border-bottom: 1px solid var(--border-color);
        }

        .price-card ul li:last-child {
            border-bottom: none;
        }

        .price-card .cta-button {
            display: inline-block;
            background-color: var(--secondary-color);
            color: var(--text-color);
            font-family: 'Orbitron', sans-serif;
            padding: 12px 25px;
            border-radius: 5px;
            margin-top: 20px;
            transition: background-color 0.3s ease;
        }

        .price-card .cta-button:hover {
            background-color: var(--primary-color);
            color: var(--background-color);
        }

        .gallery {
            background-color: #101020;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }

        .gallery-item {
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 0 15px var(--border-color);
            transition: transform 0.3s ease;
            position: relative;
        }
        
        .gallery-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(0, 255, 255, 0.3), rgba(255, 0, 255, 0.3));
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .gallery-item:hover::before {
            opacity: 1;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.5s ease;
        }
        
        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .feedback {
            background-color: var(--background-color);
        }

        .feedback-slider {
            position: relative;
            overflow: hidden;
            height: 400px;
        }
        
        .feedback-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 0 20%;
            opacity: 0;
            transition: opacity 1s ease-in-out;
        }

        .feedback-slide.active {
            opacity: 1;
        }
        
        .feedback-text {
            font-size: 1.4rem;
            font-style: italic;
            color: var(--accent-color);
            margin-bottom: 20px;
        }
        
        .feedback-author {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--primary-color);
        }

        .slider-controls {
            display: flex;
            justify-content: center;
            margin-top: 20px;
        }
        
        .slider-control-btn {
            background: var(--border-color);
            border: none;
            color: var(--text-color);
            font-size: 1.5rem;
            padding: 5px 15px;
            cursor: pointer;
            transition: background 0.3s ease;
        }
        
        .slider-control-btn:hover {
            background: var(--primary-color);
            color: var(--background-color);
        }
        
        .faq {
            background-color: #101020;
        }

        .faq-item {
            border: 1px solid var(--border-color);
            border-radius: 5px;
            margin-bottom: 15px;
            overflow: hidden;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.5s ease-out;
        }
        
        .faq-item.fade-in {
            opacity: 1;
            transform: translateY(0);
        }

        .faq-question {
            padding: 20px;
            background-color: var(--form-bg);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 700;
            font-size: 1.2rem;
            color: var(--primary-color);
            transition: background-color 0.3s ease;
        }
        
        .faq-question:hover {
            background-color: #3a3a5e;
        }
        
        .faq-question::after {
            content: '+';
            font-size: 1.5rem;
            transition: transform 0.3s ease;
        }
        
        .faq-item.active .faq-question::after {
            transform: rotate(45deg);
        }

        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease-out;
        }

        .faq-answer p {
            padding: 20px 0;
            margin-bottom: 0;
            border-top: 1px solid var(--border-color);
        }
        
        .contact-form {
            background-color: var(--form-bg);
            padding: 40px;
            border-radius: 10px;
            border: 2px solid var(--secondary-color);
            max-width: 600px;
            margin: 0 auto;
        }
        
        .contact-form h3 {
            color: var(--secondary-color);
            margin-bottom: 25px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: var(--accent-color);
        }

        .form-group input {
            width: 100%;
            padding: 12px;
            background-color: #1a1a2e;
            border: 1px solid var(--border-color);
            border-radius: 5px;
            color: var(--text-color);
            font-size: 1rem;
        }
        
        .form-group input:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 10px var(--primary-color);
        }
        
        .form-group button {
            width: 100%;
            padding: 15px;
            background-color: var(--primary-color);
            color: var(--background-color);
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-family: 'Orbitron', sans-serif;
            font-size: 1.2rem;
            transition: background-color 0.3s ease, transform 0.3s ease;
        }

        .form-group button:hover {
            background-color: var(--secondary-color);
            transform: scale(1.02);
        }

        #disclaimer {
            background-color: #0d0d1a;
            color: #888;
            padding: 20px 0;
            font-size: 0.9rem;
            text-align: center;
        }
        
        .disclaimer-content {
            max-width: 800px;
            margin: 0 auto;
        }

        footer {
            background-color: var(--footer-bg);
            padding: 40px 0;
            border-top: 2px solid var(--border-color);
            text-align: center;
            font-size: 0.9rem;
        }
        
        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        
        .footer-nav ul, .footer-contact {
            list-style: none;
        }
        
        .footer-nav {
            flex-grow: 1;
            text-align: left;
        }
        
        .footer-nav li {
            margin-bottom: 10px;
        }
        
        .footer-nav a {
            color: #ccc;
            transition: color 0.3s ease;
        }
        
        .footer-nav a:hover {
            color: var(--primary-color);
        }
        
        .footer-contact {
            flex-grow: 1;
            text-align: right;
        }
        
        .footer-contact p {
            margin-bottom: 5px;
        }

        .cookie-banner {
            position: fixed;
            bottom: 20px;
            left: 20px;
            right: 20px;
            background-color: #333;
            color: #fff;
            padding: 15px 25px;
            border-radius: 8px;
            box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 2000;
            font-size: 0.9rem;
            transform: translateY(150%);
            transition: transform 0.5s ease-in-out;
        }
        
        .cookie-banner.show {
            transform: translateY(0);
        }

        .cookie-banner a {
            color: var(--primary-color);
            text-decoration: underline;
        }

        .cookie-banner .cookie-button {
            background-color: var(--accent-color);
            color: #1a1a2e;
            border: none;
            padding: 8px 15px;
            border-radius: 5px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }
        
        .cookie-banner .cookie-button:hover {
            background-color: var(--primary-color);
        }

        .popup {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 3000;
            visibility: hidden;
            opacity: 0;
            transition: visibility 0s, opacity 0.5s ease;
        }

        .popup.show {
            visibility: visible;
            opacity: 1;
        }

        .popup-content {
            background-color: var(--form-bg);
            padding: 40px;
            border-radius: 10px;
            text-align: center;
            position: relative;
            box-shadow: 0 0 25px var(--secondary-color);
            max-width: 400px;
            width: 90%;
        }

        .popup-content h3 {
            color: var(--accent-color);
            margin-bottom: 20px;
        }
        
        .close-popup {
            position: absolute;
            top: 10px;
            right: 15px;
            font-size: 2rem;
            color: var(--text-color);
            cursor: pointer;
        }

        @media (max-width: 768px) {
            h1 {
                font-size: 2.5rem;
            }
            
            .header-content {
                flex-wrap: wrap;
            }
            
            .logo {
                font-size: 1.5rem;
            }
            
            nav {
                width: 100%;
            }
            
            .nav-links {
                display: flex;
                flex-direction: column;
                position: fixed;
                right: 0;
                top: 70px;
                background: rgba(26, 26, 46, 0.95);
                backdrop-filter: blur(10px);
                width: 70%;
                height: calc(100vh - 70px);
                padding: 40px 0;
                transform: translateX(100%);
                transition: transform 0.5s ease-in-out;
                border-left: 2px solid var(--border-color);
            }
            
            .nav-links li {
                margin: 20px 0;
                text-align: center;
            }
            
            .burger-menu {
                display: flex;
            }
            
            .hero-content h1 {
                font-size: 3rem;
            }
            
            .about-content, .product-item {
                flex-direction: column;
                text-align: center;
            }
            
            .product-item:nth-child(even) {
                flex-direction: column;
            }
            
            .product-image, .product-info {
                max-width: 100%;
            }
            
            .product-info h3 {
                text-align: center;
            }
            
            .price-cards {
                flex-direction: column;
                align-items: center;
            }
            
            .footer-content {
                flex-direction: column;
                text-align: center;
            }
            
            .footer-nav, .footer-contact {
                text-align: center;
                margin-bottom: 20px;
            }
        }

