
        :root {
            --neon-pink: #ff2a6d;
            --electric-blue: #05d9e8;
            --deep-purple: #4e2a84;
            --cyber-yellow: #f9f002;
            --matrix-green: #0f0;
            --dark-bg: #0d0221;
            --darker-bg: #05010d;
            --text-light: #d1f7ff;
            --text-dim: #a3b8bf;
        }

        * {
            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;
            background-image: 
                linear-gradient(rgba(13, 2, 33, 0.9), rgba(13, 2, 33, 0.9)),
                url('https://images.unsplash.com/photo-1524995997946-a1c2e315a42f?q=80&w=1170&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
            background-size: cover;
            background-attachment: fixed;
        }

        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: var(--darker-bg);
            padding: 15px 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            border-bottom: 1px solid var(--neon-pink);
            box-shadow: 0 0 15px var(--neon-pink);
        }

        .logo {
            color: var(--electric-blue);
            font-size: 1.8rem;
            font-weight: bold;
            text-decoration: none;
            text-shadow: 0 0 10px var(--electric-blue);
            letter-spacing: 2px;
        }

        .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(--cyber-yellow);
            text-shadow: 0 0 5px var(--cyber-yellow);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: var(--neon-pink);
            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;
        }

        section {
            padding: 80px 5%;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .hero {
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,42,109,0.1) 0%, rgba(5,217,232,0.05) 50%, rgba(13,2,33,0) 70%);
            animation: pulse 15s infinite alternate;
            z-index: -1;
        }

        @keyframes pulse {
            0% {
                transform: translate(0, 0);
            }
            50% {
                transform: translate(50px, 50px);
            }
            100% {
                transform: translate(-50px, -50px);
            }
        }

        h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            color: var(--electric-blue);
            text-shadow: 0 0 10px var(--electric-blue);
            line-height: 1.2;
        }

        h2 {
            font-size: 2.5rem;
            margin-bottom: 30px;
            color: var(--neon-pink);
            text-shadow: 0 0 5px var(--neon-pink);
        }

        h3 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: var(--cyber-yellow);
        }

        p {
            font-size: 1.1rem;
            margin-bottom: 20px;
            color: var(--text-dim);
        }

        .btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: transparent;
            color: var(--electric-blue);
            border: 2px solid var(--electric-blue);
            border-radius: 0;
            text-decoration: none;
            font-size: 1.1rem;
            margin-top: 20px;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            box-shadow: 0 0 10px var(--electric-blue);
        }

        .btn:hover {
            color: var(--dark-bg);
            background-color: var(--electric-blue);
            box-shadow: 0 0 20px var(--electric-blue);
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(5, 217, 232, 0.4), transparent);
            transition: all 0.5s ease;
        }

        .btn:hover::before {
            left: 100%;
        }

        .book-cover {
            max-width: 300px;
            margin: 40px auto;
            border: 3px solid var(--neon-pink);
            box-shadow: 0 0 20px var(--neon-pink), 0 0 40px rgba(255, 42, 109, 0.3);
            transform: perspective(1000px) rotateY(10deg);
            transition: transform 0.5s ease;
        }

        .book-cover:hover {
            transform: perspective(1000px) rotateY(0deg);
        }

        .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.05);
            border: 1px solid var(--electric-blue);
            padding: 30px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background-color: var(--neon-pink);
            transition: all 0.3s ease;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 20px rgba(5, 217, 232, 0.2);
        }

        .feature-card:hover::before {
            width: 100%;
            opacity: 0.1;
        }

        .quote {
            font-style: italic;
            font-size: 1.3rem;
            color: var(--text-light);
            padding: 40px;
            border-left: 3px solid var(--neon-pink);
            margin: 50px 0;
            position: relative;
        }

        .quote::before, .quote::after {
            content: '"';
            font-size: 2rem;
            color: var(--neon-pink);
        }

        .quote::before {
            position: absolute;
            top: 10px;
            left: 10px;
        }

        .quote::after {
            position: absolute;
            bottom: 10px;
            right: 10px;
        }

        .pricing {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .price-card {
            background-color: rgba(78, 42, 132, 0.1);
            border: 1px solid var(--deep-purple);
            padding: 30px;
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
        }

        .price-card.featured {
            border-color: var(--cyber-yellow);
            box-shadow: 0 0 20px rgba(249, 240, 2, 0.3);
        }

        .price-card h3 {
            color: var(--text-light);
        }

        .price {
            font-size: 2.5rem;
            color: var(--electric-blue);
            margin: 20px 0;
        }

        .price span {
            font-size: 1rem;
            color: var(--text-dim);
        }

        .price-card.featured .price {
            color: var(--cyber-yellow);
        }

        .price-card ul {
            list-style: none;
            margin-bottom: 30px;
        }

        .price-card li {
            margin-bottom: 10px;
            color: var(--text-dim);
        }

        .price-card.featured li {
            color: var(--text-light);
        }

        .faq-item {
            margin-bottom: 20px;
            border-bottom: 1px solid rgba(255, 42, 109, 0.3);
            padding-bottom: 20px;
        }

        .faq-question {
            font-size: 1.2rem;
            color: var(--electric-blue);
            margin-bottom: 10px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease;
            color: var(--text-dim);
        }

        .faq-answer.active {
            max-height: 500px;
        }

        .contact-form {
            width: 100%;
            max-width: 600px;
            margin: 0 auto;
            background-color: rgba(5, 217, 232, 0.05);
            padding: 40px;
            border: 1px solid var(--electric-blue);
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: var(--text-light);
        }

        .form-group input, .form-group textarea {
            width: 100%;
            padding: 12px;
            background-color: rgba(255, 255, 255, 0.1);
            border: 1px solid var(--electric-blue);
            color: var(--text-light);
            font-size: 1rem;
        }

        .form-group textarea {
            min-height: 150px;
            resize: none;
        }

        footer {
            background-color: var(--darker-bg);
            padding: 50px 5%;
            text-align: center;
            border-top: 1px solid var(--neon-pink);
        }

        .footer-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 30px;
        }

         .privacy{
            max-width: 1000px;
            margin: 0px auto;
        }

        .footer-links a {
            color: var(--text-dim);
            text-decoration: none;
            margin: 0 15px;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--electric-blue);
        }

        .contact-info {
            margin-bottom: 30px;
        }

        .contact-info p {
            margin-bottom: 10px;
            color: var(--text-dim);
        }

        .copyright {
            color: var(--text-dim);
            font-size: 0.9rem;
        }

        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(13, 2, 33, 0.9);
            z-index: 2000;
            justify-content: center;
            align-items: center;
        }

        .modal-content {
            background-color: var(--darker-bg);
            padding: 40px;
            max-width: 500px;
            text-align: center;
            border: 2px solid var(--neon-pink);
            position: relative;
        }

        .close-modal {
            position: absolute;
            top: 10px;
            right: 10px;
            font-size: 1.5rem;
            color: var(--text-light);
            cursor: pointer;
            transition: color 0.3s ease;
        }

        .close-modal:hover {
            color: var(--neon-pink);
        }

        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: var(--deep-purple);
            padding: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            transform: translateY(100%);
            transition: transform 0.5s ease;
        }

        .cookie-banner.show {
            transform: translateY(0);
        }

        .cookie-banner p {
            color: var(--text-light);
            margin-right: 20px;
        }

       

        .cookie-btn {
            background-color: var(--neon-pink);
            color: var(--text-light);
            border: none;
            padding: 10px 20px;
            cursor: pointer;
            white-space: nowrap;
        }

        .cookie-btn:hover {
            background-color: var(--electric-blue);
        }

        @media (max-width: 768px) {
            .nav-links {
                position: absolute;
                right: 0;
                top: 80px;
                background-color: var(--darker-bg);
                width: 100%;
                flex-direction: column;
                align-items: center;
                padding: 20px 0;
                transform: translateY(-150%);
                transition: transform 0.5s ease;
                border-bottom: 1px solid var(--neon-pink);
            }

            .nav-links.active {
                transform: translateY(0);
            }

            .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);
            }

            h1 {
                font-size: 2.5rem;
            }

            h2 {
                font-size: 2rem;
            }

            section {
                padding: 60px 5%;
            }

            .features, .pricing {
                grid-template-columns: 1fr;
            }

            .cookie-banner {
                flex-direction: column;
                text-align: center;
            }

            .cookie-banner p {
                margin-right: 0;
                margin-bottom: 15px;
            }
        }

        /* Parallax effect */
        .parallax {
            background-attachment: fixed;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
        }

        /* Fade-in animations */
        .fade-in {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .fade-in.active {
            opacity: 1;
            transform: translateY(0);
        }
