
        :root {
            --neon-pink: #ff2a6d;
            --electric-blue: #05d9e8;
            --cyber-purple: #d300c5;
            --dark-matrix: #0d0221;
            --hacker-green: #00ff41;
            --glow-yellow: #f9f002;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Courier New', monospace;
        }
        
        body {
            background-color: var(--dark-matrix);
            color: white;
            line-height: 1.6;
            overflow-x: hidden;
            padding-top: 80px;
            background-image: 
                linear-gradient(rgba(13, 2, 33, 0.9), rgba(13, 2, 33, 0.9)),
                url('https://images.unsplash.com/photo-1517430816045-df4b7de11d1d?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
            background-size: cover;
            background-attachment: fixed;
        }
        
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(13, 2, 33, 0.9);
            border-bottom: 1px solid var(--electric-blue);
            z-index: 1000;
            padding: 15px 0;
            backdrop-filter: blur(5px);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
        }
        
        .logo-text {
            font-size: 24px;
            font-weight: bold;
            background: linear-gradient(90deg, var(--neon-pink), var(--cyber-purple));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 0 10px rgba(255, 42, 109, 0.5);
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 30px;
        }
        
        nav ul li a {
            color: white;
            text-decoration: none;
            font-weight: bold;
            font-size: 16px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        nav ul li a:hover {
            color: var(--electric-blue);
        }
        
        nav ul li a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: var(--electric-blue);
            transition: width 0.3s ease;
        }
        
        nav ul li a:hover::after {
            width: 100%;
        }
        
        .burger {
            display: none;
            cursor: pointer;
        }
        
        .burger div {
            width: 25px;
            height: 3px;
            background-color: white;
            margin: 5px;
            transition: all 0.3s ease;
        }
        
        section {
            padding: 80px 20px;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .hero {
            min-height: 80vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 600px;
        }
        
        .hero h1 {
            font-size: 48px;
            margin-bottom: 20px;
            background: linear-gradient(90deg, var(--neon-pink), var(--electric-blue));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            line-height: 1.2;
        }
        
        .hero p {
            font-size: 18px;
            margin-bottom: 30px;
            color: rgba(255, 255, 255, 0.8);
        }
        
        .btn {
            display: inline-block;
            padding: 12px 30px;
            background: linear-gradient(90deg, var(--neon-pink), var(--cyber-purple));
            color: white;
            text-decoration: none;
            border-radius: 30px;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            box-shadow: 0 0 15px rgba(255, 42, 109, 0.5);
        }
        
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 0 20px rgba(255, 42, 109, 0.8);
        }
        
        .btn-secondary {
            background: transparent;
            border: 2px solid var(--electric-blue);
            box-shadow: 0 0 15px rgba(5, 217, 232, 0.5);
            margin-left: 15px;
        }
        
        .btn-secondary:hover {
            box-shadow: 0 0 20px rgba(5, 217, 232, 0.8);
        }
        
        .about {
            background-color: rgba(13, 2, 33, 0.7);
            border-radius: 10px;
            padding: 40px;
            margin-bottom: 40px;
            border: 1px solid var(--cyber-purple);
            box-shadow: 0 0 30px rgba(211, 0, 197, 0.2);
        }
        
        .section-title {
            font-size: 36px;
            margin-bottom: 30px;
            color: var(--electric-blue);
            text-align: center;
            position: relative;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            width: 100px;
            height: 3px;
            background: linear-gradient(90deg, var(--neon-pink), var(--electric-blue));
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .about-content {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 40px;
        }
        
        .about-text {
            flex: 1;
            min-width: 300px;
        }
        
        .about-image {
            flex: 1;
            min-width: 300px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 0 20px rgba(5, 217, 232, 0.3);
        }
        
        .about-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }
        
        .about-image:hover img {
            transform: scale(1.05);
        }
        
        .features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .feature-card {
            background-color: rgba(5, 217, 232, 0.1);
            border: 1px solid var(--electric-blue);
            border-radius: 10px;
            padding: 30px;
            transition: all 0.3s ease;
            text-align: center;
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 20px rgba(5, 217, 232, 0.2);
        }
        
        .feature-icon {
            font-size: 40px;
            margin-bottom: 20px;
            color: var(--electric-blue);
        }
        
        .feature-card h3 {
            font-size: 22px;
            margin-bottom: 15px;
            color: var(--neon-pink);
        }
        
        .pricing {
            background-color: rgba(13, 2, 33, 0.7);
            border-radius: 10px;
            padding: 40px;
            margin-bottom: 40px;
            border: 1px solid var(--neon-pink);
            box-shadow: 0 0 30px rgba(255, 42, 109, 0.2);
        }
        
        .pricing-plans {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .pricing-card {
            background-color: rgba(255, 42, 109, 0.1);
            border: 1px solid var(--neon-pink);
            border-radius: 10px;
            padding: 30px;
            transition: all 0.3s ease;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .pricing-card.popular {
            border: 1px solid var(--glow-yellow);
            box-shadow: 0 0 20px rgba(249, 240, 2, 0.3);
        }
        
        .popular-badge {
            position: absolute;
            top: 10px;
            right: 10px;
            background-color: var(--glow-yellow);
            color: var(--dark-matrix);
            padding: 5px 10px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: bold;
        }
        
        .pricing-card h3 {
            font-size: 24px;
            margin-bottom: 20px;
            color: white;
        }
        
        .price {
            font-size: 48px;
            font-weight: bold;
            margin-bottom: 20px;
            color: var(--electric-blue);
        }
        
        .price span {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.7);
        }
        
        .pricing-features {
            list-style: none;
            margin-bottom: 30px;
        }
        
        .pricing-features li {
            padding: 10px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .gallery {
            margin-bottom: 80px;
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 50px;
        }
        
        .gallery-item {
            border-radius: 10px;
            overflow: hidden;
            position: relative;
            height: 250px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease;
        }
        
        .gallery-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        
        .gallery-item-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
            padding: 20px;
            color: white;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .gallery-item:hover .gallery-item-overlay {
            opacity: 1;
        }
        
        .testimonials {
            background-color: rgba(13, 2, 33, 0.7);
            border-radius: 10px;
            padding: 40px;
            margin-bottom: 40px;
            border: 1px solid var(--hacker-green);
            box-shadow: 0 0 30px rgba(0, 255, 65, 0.2);
        }
        
        .testimonials-slider {
            position: relative;
            max-width: 800px;
            margin: 50px auto 0;
            overflow: hidden;
        }
        
        .testimonials-track {
            display: flex;
            transition: transform 0.5s ease;
        }
        
        .testimonial {
            min-width: 100%;
            padding: 30px;
            background-color: rgba(0, 255, 65, 0.05);
            border: 1px solid var(--hacker-green);
            border-radius: 10px;
        }
        
        .testimonial-content {
            margin-bottom: 20px;
            font-style: italic;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
        }
        
        .testimonial-author img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            margin-right: 15px;
            object-fit: cover;
            border: 2px solid var(--hacker-green);
        }
        
        .author-info h4 {
            color: var(--hacker-green);
            margin-bottom: 5px;
        }
        
        .author-info p {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.7);
        }
        
        .slider-nav {
            display: flex;
            justify-content: center;
            margin-top: 30px;
        }
        
        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.3);
            margin: 0 5px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .slider-dot.active {
            background-color: var(--hacker-green);
        }
        
        .faq {
            margin-bottom: 80px;
        }
        
        .accordion {
            max-width: 800px;
            margin: 50px auto 0;
        }
        
        .accordion-item {
            margin-bottom: 15px;
            border: 1px solid var(--cyber-purple);
            border-radius: 5px;
            overflow: hidden;
        }
        
        .accordion-header {
            padding: 15px 20px;
            background-color: rgba(211, 0, 197, 0.1);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }
        
        .accordion-header:hover {
            background-color: rgba(211, 0, 197, 0.2);
        }
        
        .accordion-header h3 {
            color: white;
            font-size: 18px;
        }
        
        .accordion-icon {
            color: var(--cyber-purple);
            font-size: 20px;
            transition: transform 0.3s ease;
        }
        
        .accordion-content {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            background-color: rgba(13, 2, 33, 0.5);
        }
        
        .accordion-content-inner {
            padding: 20px 0;
        }
        
        .accordion-item.active .accordion-icon {
            transform: rotate(45deg);
        }
        
        .contact {
            background-color: rgba(13, 2, 33, 0.7);
            border-radius: 10px;
            padding: 40px;
            margin-bottom: 40px;
            border: 1px solid var(--glow-yellow);
            box-shadow: 0 0 30px rgba(249, 240, 2, 0.2);
        }
        
        .contact-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-top: 50px;
        }
        
        .contact-info {
            display: flex;
            flex-direction: column;
        }
        
        .contact-details {
            margin-bottom: 30px;
        }
        
        .contact-details h3 {
            color: var(--glow-yellow);
            margin-bottom: 20px;
            font-size: 22px;
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }
        
        .contact-icon {
            margin-right: 15px;
            color: var(--glow-yellow);
            font-size: 20px;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
        }
        
        .social-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: rgba(249, 240, 2, 0.1);
            color: var(--glow-yellow);
            font-size: 20px;
            transition: all 0.3s ease;
            text-decoration: none;
        }
        
        .social-link:hover {
            background-color: var(--glow-yellow);
            color: var(--dark-matrix);
        }
        
        .contact-form {
            background-color: rgba(13, 2, 33, 0.5);
            padding: 30px;
            border-radius: 10px;
            border: 1px solid var(--glow-yellow);
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: var(--glow-yellow);
        }
        
        .form-control {
            width: 100%;
            padding: 12px 15px;
            background-color: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 5px;
            color: white;
            font-size: 16px;
            transition: all 0.3s ease;
        }
        
        .form-control:focus {
            outline: none;
            border-color: var(--glow-yellow);
            box-shadow: 0 0 10px rgba(249, 240, 2, 0.3);
        }
        
        textarea.form-control {
            min-height: 120px;
            resize: none;
        }
        
        .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-matrix);
            padding: 40px;
            border-radius: 10px;
            max-width: 500px;
            width: 90%;
            text-align: center;
            position: relative;
            border: 1px solid var(--electric-blue);
            box-shadow: 0 0 30px rgba(5, 217, 232, 0.5);
            animation: modalFadeIn 0.5s ease;
        }
        
        @keyframes modalFadeIn {
            from {
                opacity: 0;
                transform: translateY(-50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .modal h2 {
            color: var(--electric-blue);
            margin-bottom: 20px;
        }
        
        .modal p {
            margin-bottom: 30px;
            font-size: 18px;
        }
        
        .close-modal {
            position: absolute;
            top: 15px;
            right: 15px;
            font-size: 24px;
            color: white;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .close-modal:hover {
            color: var(--neon-pink);
            transform: rotate(90deg);
        }
        
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: var(--dark-matrix);
            padding: 20px;
            border-top: 1px solid var(--electric-blue);
            z-index: 1000;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            transform: translateY(100%);
            transition: transform 0.5s ease;
        }
        
        .cookie-banner.show {
            transform: translateY(0);
        }
        
        .cookie-text {
            flex: 1;
            min-width: 250px;
            margin-right: 20px;
            margin-bottom: 15px;
        }
        
        .cookie-actions {
            display: flex;
            gap: 15px;
        }
        
        .cookie-btn {
            padding: 8px 20px;
            border-radius: 30px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .cookie-accept {
            background-color: var(--electric-blue);
            color: var(--dark-matrix);
            border: none;
        }
        
        .cookie-decline {
            background-color: transparent;
            color: var(--electric-blue);
            border: 1px solid var(--electric-blue);
        }
        
        footer {
            background-color: rgba(13, 2, 33, 0.9);
            padding: 50px 0 20px;
            border-top: 1px solid var(--cyber-purple);
        }
        
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
        }
        
        .footer-logo {
            font-size: 24px;
            font-weight: bold;
            color: var(--neon-pink);
            margin-bottom: 20px;
            display: inline-block;
        }
        
        .footer-about p {
            margin-bottom: 20px;
            color: rgba(255, 255, 255, 0.7);
        }
        
        .footer-links h3 {
            color: var(--electric-blue);
            margin-bottom: 20px;
            font-size: 18px;
        }
        
        .footer-links ul {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .footer-links a:hover {
            color: var(--electric-blue);
            padding-left: 5px;
        }
        
        .footer-contact h3 {
            color: var(--electric-blue);
            margin-bottom: 20px;
            font-size: 18px;
        }
        
        .footer-contact p {
            margin-bottom: 15px;
            color: rgba(255, 255, 255, 0.7);
            display: flex;
            align-items: center;
        }
        
        .footer-contact i {
            margin-right: 10px;
            color: var(--electric-blue);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            margin-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.5);
            font-size: 14px;
        }
        
        .footer-bottom a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .footer-bottom a:hover {
            color: var(--neon-pink);
        }
        
        .disclaimer {
            background-color: rgba(255, 42, 109, 0.1);
            padding: 20px;
            border-radius: 5px;
            margin-top: 50px;
            border-left: 3px solid var(--neon-pink);
        }
        
        .disclaimer p {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.6;
        }
        
        @media (max-width: 768px) {
            nav ul {
                position: fixed;
                top: 80px;
                left: 0;
                width: 100%;
                background-color: rgba(13, 2, 33, 0.95);
                flex-direction: column;
                align-items: center;
                padding: 20px 0;
                transform: translateY(-150%);
                transition: transform 0.5s ease;
                border-bottom: 1px solid var(--electric-blue);
            }
            
            nav ul.active {
                transform: translateY(0);
            }
            
            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);
            }
            
            .hero h1 {
                font-size: 36px;
            }
            
            .hero p {
                font-size: 16px;
            }
            
            .btn {
                padding: 10px 20px;
                font-size: 14px;
            }
            
            .section-title {
                font-size: 30px;
            }
            
            .pricing-plans, .features {
                grid-template-columns: 1fr;
            }
            
            .contact-container {
                grid-template-columns: 1fr;
            }
            
            .cookie-actions {
                width: 100%;
                justify-content: center;
            }
        }
        
        /* Animations */
        @keyframes float {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-20px);
            }
        }
        
        .floating {
            animation: float 6s ease-in-out infinite;
        }
        
        .fade-in {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }
        
        .fade-in.active {
            opacity: 1;
            transform: translateY(0);
        }
        
        .parallax {
            background-attachment: fixed;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
        }
