:root {
            --neon-pink: #ff2a6d;
            --electric-blue: #05d9e8;
            --deep-purple: #8900f2;
            --cyber-yellow: #f9d423;
            --matrix-green: #00ff41;
            --dark-bg: #0d0221;
            --text-light: #ffffff;
            --text-dim: #b8b8b8;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Courier New', monospace;
        }

        body {
            background-color: var(--dark-bg);
            color: var(--text-light);
            line-height: 1.6;
            padding-top: 80px;
            overflow-x: hidden;
        }

        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(13, 2, 33, 0.9);
            backdrop-filter: blur(10px);
            z-index: 1000;
            border-bottom: 1px solid var(--electric-blue);
            box-shadow: 0 0 15px var(--electric-blue);
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 5%;
            max-width: 1400px;
            margin: 0 auto;
        }

        .logo {
            display: flex;
            align-items: center;
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--neon-pink);
            text-decoration: none;
        }

        .logo span {
            color: var(--electric-blue);
        }

        .nav-links {
            display: flex;
            list-style: none;
        }

        .nav-links li {
            margin-left: 30px;
        }

        .nav-links a {
            color: var(--text-light);
            text-decoration: none;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-links a:hover {
            color: var(--electric-blue);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: var(--electric-blue);
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .burger {
            display: none;
            cursor: pointer;
        }

        .burger div {
            width: 25px;
            height: 3px;
            background-color: var(--text-light);
            margin: 5px;
            transition: all 0.3s ease;
        }

        .hero {
            height: 90vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(rgba(13, 2, 33, 0.7), rgba(13, 2, 33, 0.7)), 
                        url('https://images.unsplash.com/photo-1571019613454-1cb2f99b2d8b?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: radial-gradient(circle, transparent 20%, var(--dark-bg) 70%);
            z-index: 1;
        }

        .hero-content {
            text-align: center;
            z-index: 2;
            padding: 0 20px;
            max-width: 800px;
            margin: 0 auto;
            animation: fadeIn 1.5s ease-in-out;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            background: linear-gradient(90deg, var(--neon-pink), var(--electric-blue));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 0 10px rgba(5, 217, 232, 0.3);
        }

        .hero p {
            font-size: 1.3rem;
            margin-bottom: 30px;
            color: var(--text-dim);
        }

        .cta-button {
            display: inline-block;
            padding: 15px 30px;
            background: linear-gradient(45deg, var(--neon-pink), var(--deep-purple));
            color: white;
            text-decoration: none;
            border-radius: 30px;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            box-shadow: 0 0 15px var(--neon-pink);
            border: none;
            cursor: pointer;
            font-size: 1.1rem;
        }

        .cta-button:hover {
            transform: translateY(-5px);
            box-shadow: 0 0 25px var(--neon-pink);
        }

        section {
            padding: 80px 5%;
            position: relative;
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
            font-size: 2.5rem;
            color: var(--electric-blue);
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background: linear-gradient(90deg, var(--neon-pink), var(--electric-blue));
        }

        .about {
            background-color: rgba(5, 217, 232, 0.05);
        }

        .about-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 40px;
        }

        .about-text {
            flex: 1;
            min-width: 300px;
        }

        .about-text h3 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: var(--cyber-yellow);
        }

        .about-text p {
            margin-bottom: 20px;
            color: var(--text-dim);
        }

        .about-image {
            flex: 1;
            min-width: 300px;
            height: 400px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 0 30px var(--electric-blue);
            position: relative;
        }

        .about-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .about-image:hover img {
            transform: scale(1.05);
        }

        .products {
            background-color: rgba(137, 0, 242, 0.05);
        }

        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .product-card {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            overflow: hidden;
            transition: all 0.3s ease;
            border: 1px solid var(--electric-blue);
            box-shadow: 0 0 15px rgba(5, 217, 232, 0.1);
        }

        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 0 30px var(--electric-blue);
        }

        .product-image {
            height: 200px;
            overflow: hidden;
        }

        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .product-card:hover .product-image img {
            transform: scale(1.1);
        }

        .product-info {
            padding: 20px;
        }

        .product-info h3 {
            font-size: 1.5rem;
            margin-bottom: 10px;
            color: var(--neon-pink);
        }

        .product-info p {
            color: var(--text-dim);
            margin-bottom: 15px;
        }

        .product-price {
            font-size: 1.3rem;
            font-weight: bold;
            color: var(--cyber-yellow);
            margin-bottom: 15px;
        }

        .prices {
            background-color: rgba(255, 42, 109, 0.05);
        }

        .price-cards {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
        }

        .price-card {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            padding: 30px;
            width: 300px;
            text-align: center;
            transition: all 0.3s ease;
            border: 1px solid var(--deep-purple);
            position: relative;
            overflow: hidden;
        }

        .price-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(137, 0, 242, 0.1), transparent);
            transform: rotate(45deg);
            transition: all 0.5s ease;
        }

        .price-card:hover::before {
            left: 100%;
        }

        .price-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 0 30px var(--deep-purple);
        }

        .price-card h3 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: var(--matrix-green);
        }

        .price-amount {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--electric-blue);
            margin-bottom: 20px;
        }

        .price-features {
            list-style: none;
            margin-bottom: 30px;
        }

        .price-features li {
            margin-bottom: 10px;
            color: var(--text-dim);
            position: relative;
            padding-left: 25px;
        }

        .price-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--matrix-green);
        }

        .gallery {
            background-color: rgba(0, 255, 65, 0.05);
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
        }

        .gallery-item {
            height: 250px;
            overflow: hidden;
            border-radius: 10px;
            position: relative;
            box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .gallery-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
            padding: 20px;
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }

        .gallery-item:hover .gallery-overlay {
            transform: translateY(0);
        }

        .gallery-overlay h3 {
            color: white;
            margin-bottom: 5px;
        }

        .gallery-overlay p {
            color: var(--text-dim);
            font-size: 0.9rem;
        }

        .feedback {
            background-color: rgba(249, 212, 35, 0.05);
        }

        .feedback-slider {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
            overflow: hidden;
        }

        .slides {
            display: flex;
            transition: transform 0.5s ease;
        }

        .slide {
            min-width: 100%;
            padding: 30px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
            text-align: center;
        }

        .slide-content {
            margin-bottom: 20px;
            font-style: italic;
            color: var(--text-dim);
        }

        .slide-author {
            font-weight: bold;
            color: var(--electric-blue);
        }

        .slide-rating {
            color: var(--cyber-yellow);
            font-size: 1.2rem;
            margin-top: 10px;
        }

        .slider-nav {
            display: flex;
            justify-content: center;
            margin-top: 30px;
        }

        .slider-dot {
            width: 12px;
            height: 12px;
            background-color: var(--text-dim);
            border-radius: 50%;
            margin: 0 5px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .slider-dot.active {
            background-color: var(--electric-blue);
            transform: scale(1.2);
        }

        .faq {
            background-color: rgba(255, 42, 109, 0.05);
        }

        .accordion {
            max-width: 800px;
            margin: 0 auto;
        }

        .accordion-item {
            margin-bottom: 15px;
            border: 1px solid var(--electric-blue);
            border-radius: 5px;
            overflow: hidden;
        }

        .accordion-header {
            padding: 15px 20px;
            background: rgba(5, 217, 232, 0.1);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }

        .accordion-header:hover {
            background: rgba(5, 217, 232, 0.2);
        }

        .accordion-header h3 {
            font-size: 1.2rem;
            color: var(--text-light);
        }

        .accordion-icon {
            font-size: 1.5rem;
            color: var(--electric-blue);
            transition: transform 0.3s ease;
        }

        .accordion-content {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
            background: rgba(255, 255, 255, 0.02);
        }

        .accordion-content p {
            padding: 15px 0;
            color: var(--text-dim);
        }

        .accordion-item.active .accordion-content {
            max-height: 500px;
            padding: 0 20px 20px;
        }

        .accordion-item.active .accordion-icon {
            transform: rotate(45deg);
        }

        .contact-form {
            max-width: 600px;
            margin: 0 auto;
            background: rgba(255, 255, 255, 0.05);
            padding: 30px;
            border-radius: 10px;
            border: 1px solid var(--electric-blue);
            box-shadow: 0 0 20px rgba(5, 217, 232, 0.1);
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: var(--electric-blue);
        }

        .form-control {
            width: 100%;
            padding: 12px 15px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid var(--electric-blue);
            border-radius: 5px;
            color: var(--text-light);
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .form-control:focus {
            outline: none;
            border-color: var(--neon-pink);
            box-shadow: 0 0 10px var(--neon-pink);
        }

        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }

        .submit-btn {
            background: linear-gradient(45deg, var(--neon-pink), var(--deep-purple));
            color: white;
            border: none;
            padding: 15px 30px;
            font-size: 1.1rem;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
            border-radius: 30px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: block;
            width: 100%;
            box-shadow: 0 0 15px var(--neon-pink);
        }

        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 0 25px var(--neon-pink);
        }

        .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-bg);
            padding: 40px;
            border-radius: 10px;
            text-align: center;
            max-width: 500px;
            width: 90%;
            border: 1px solid var(--electric-blue);
            box-shadow: 0 0 30px var(--electric-blue);
            position: relative;
            animation: modalFadeIn 0.5s ease;
        }

        .close-modal {
            position: absolute;
            top: 15px;
            right: 15px;
            font-size: 1.5rem;
            color: var(--text-dim);
            cursor: pointer;
            transition: color 0.3s ease;
        }

        .close-modal:hover {
            color: var(--neon-pink);
        }

        .modal h2 {
            color: var(--electric-blue);
            margin-bottom: 20px;
        }

        .modal p {
            color: var(--text-dim);
            margin-bottom: 30px;
        }

        .disclaimer {
            background-color: rgba(0, 0, 0, 0.5);
            padding: 20px;
            margin-top: 50px;
            font-size: 0.8rem;
            color: var(--text-dim);
            text-align: center;
            border-top: 1px solid var(--electric-blue);
        }

        footer {
            background-color: rgba(13, 2, 33, 0.9);
            padding: 50px 5% 30px;
            border-top: 1px solid var(--deep-purple);
        }

        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-logo {
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--neon-pink);
            margin-bottom: 20px;
            display: inline-block;
        }

        .footer-logo span {
            color: var(--electric-blue);
        }

        .footer-about p {
            color: var(--text-dim);
            margin-bottom: 20px;
        }

        .footer-links h3, .footer-contact h3 {
            color: var(--electric-blue);
            font-size: 1.2rem;
            margin-bottom: 20px;
            position: relative;
        }

        .footer-links h3::after, .footer-contact h3::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 50px;
            height: 2px;
            background: linear-gradient(90deg, var(--neon-pink), var(--electric-blue));
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: var(--text-dim);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--electric-blue);
        }

        .contact-info {
            list-style: none;
        }

        .contact-info li {
            margin-bottom: 15px;
            color: var(--text-dim);
            display: flex;
            align-items: flex-start;
        }

        .contact-info i {
            margin-right: 10px;
            color: var(--electric-blue);
        }

        .copyright {
            text-align: center;
            margin-top: 50px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--text-dim);
            font-size: 0.9rem;
        }

        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background-color: rgba(13, 2, 33, 0.95);
            padding: 20px;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            border-top: 1px solid var(--electric-blue);
            box-shadow: 0 -5px 20px rgba(5, 217, 232, 0.2);
            transform: translateY(100%);
            transition: transform 0.5s ease;
        }

        .cookie-banner.show {
            transform: translateY(0);
        }

        .cookie-text {
            flex: 1;
            min-width: 250px;
            color: var(--text-dim);
            margin-bottom: 15px;
        }

        .cookie-buttons {
            display: flex;
            gap: 15px;
        }

        .cookie-btn {
            padding: 10px 20px;
            border-radius: 30px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .cookie-accept {
            background: linear-gradient(45deg, var(--neon-pink), var(--deep-purple));
            color: white;
            border: none;
        }

        .cookie-accept:hover {
            box-shadow: 0 0 15px var(--neon-pink);
        }

        .cookie-decline {
            background: transparent;
            color: var(--text-dim);
            border: 1px solid var(--text-dim);
        }

        .cookie-decline:hover {
            color: var(--electric-blue);
            border-color: var(--electric-blue);
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes modalFadeIn {
            from { opacity: 0; transform: translateY(-50px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @media (max-width: 768px) {
            .nav-links {
                position: absolute;
                right: 0;
                top: 80px;
                background-color: rgba(13, 2, 33, 0.95);
                width: 100%;
                flex-direction: column;
                align-items: center;
                padding: 20px 0;
                clip-path: circle(0px at 90% -10%);
                transition: all 0.5s ease-out;
                pointer-events: none;
                border-bottom: 1px solid var(--electric-blue);
            }

            .nav-links.active {
                clip-path: circle(1000px at 90% -10%);
                pointer-events: all;
            }

            .nav-links 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);
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .hero p {
                font-size: 1.1rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .about-content {
                flex-direction: column;
            }

            .price-cards {
                flex-direction: column;
                align-items: center;
            }

            .footer-container {
                grid-template-columns: 1fr;
            }

            .cookie-banner {
                flex-direction: column;
                text-align: center;
            }

            .cookie-buttons {
                width: 100%;
                justify-content: center;
            }
        }

        @media (max-width: 480px) {
            .hero h1 {
                font-size: 2rem;
            }

            .section-title {
                font-size: 1.8rem;
            }

            .product-grid {
                grid-template-columns: 1fr;
            }
        }
        .terms-content {
            max-width: 800px;
            margin: 0 auto;
            background: rgba(255, 255, 255, 0.05);
            padding: 40px;
            border-radius: 10px;
            border: 1px solid var(--electric-blue);
        }
        
        .terms-section {
            margin-bottom: 30px;
        }
        
        .terms-section h2 {
            color: var(--electric-blue);
            margin-bottom: 15px;
            font-size: 1.5rem;
        }
        
        .terms-section h3 {
            color: var(--neon-pink);
            margin: 20px 0 10px;
            font-size: 1.2rem;
        }
        
        .terms-section p, .terms-section ul {
            margin-bottom: 15px;
            color: var(--text-dim);
            line-height: 1.7;
        }
        
        .terms-section ul {
            padding-left: 20px;
        }
        
        .terms-section li {
            margin-bottom: 8px;
        }
        
        .last-updated {
            text-align: center;
            margin-top: 40px;
            font-style: italic;
            color: var(--text-dim);
        }

