
        :root {
            --primary: #ff00aa;
            --secondary: #00f0ff;
            --dark: #0a0a20;
            --light: #e0e0ff;
            --accent: #ffcc00;
            --text: #ffffff;
            --bg: #121230;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Courier New', monospace;
        }

        body {
            background-color: var(--bg);
            color: var(--text);
            line-height: 1.6;
            padding-top: 80px;
            overflow-x: hidden;
        }

        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(10, 10, 32, 0.9);
            backdrop-filter: blur(10px);
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            border-bottom: 1px solid var(--primary);
        }

        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--primary);
            text-decoration: none;
            display: flex;
            align-items: center;
        }

        .logo span {
            color: var(--secondary);
        }

        .nav-links {
            display: flex;
            list-style: none;
        }

        .nav-links li {
            margin-left: 2rem;
        }

        .nav-links a {
            color: var(--light);
            text-decoration: none;
            font-weight: bold;
            transition: color 0.3s;
            position: relative;
        }

        .nav-links a:hover {
            color: var(--primary);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary);
            transition: width 0.3s;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .burger {
            display: none;
            cursor: pointer;
        }

        .burger div {
            width: 25px;
            height: 3px;
            background-color: var(--light);
            margin: 5px;
            transition: all 0.3s ease;
        }

        section {
            padding: 4rem 2rem;
            position: relative;
        }

        .hero {
            min-height: 80vh;
            display: flex;
            justify-content: center;
            align-items: center;
            background: linear-gradient(rgba(18, 18, 48, 0.9), rgba(18, 18, 48, 0.9)), 
                        url('https://images.unsplash.com/photo-1431608660976-4fe5bcc2112c?q=80&w=1170&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') no-repeat center center/cover;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, var(--primary), transparent, var(--secondary));
            opacity: 0.1;
            z-index: -1;
        }

        .hero-content {
            max-width: 600px;
            animation: fadeInUp 1s ease-out;
        }

        h1 {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            color: var(--primary);
            text-shadow: 0 0 10px rgba(255, 0, 170, 0.5);
        }

        h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            color: var(--secondary);
            position: relative;
            display: inline-block;
        }

        h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
        }

        h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
            color: var(--accent);
        }

        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }

        .btn {
            display: inline-block;
            padding: 0.8rem 2rem;
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            color: var(--dark);
            text-decoration: none;
            font-weight: bold;
            border-radius: 30px;
            margin-top: 1rem;
            transition: transform 0.3s, box-shadow 0.3s;
            border: none;
            cursor: pointer;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 240, 255, 0.3);
        }

        .btn-secondary {
            background: transparent;
            color: var(--primary);
            border: 2px solid var(--primary);
            margin-left: 1rem;
        }

        .btn-secondary:hover {
            background: var(--primary);
            color: var(--dark);
        }

        .about-book {
            display: flex;
            align-items: center;
            gap: 3rem;
            margin-top: 3rem;
        }

        .about-book img {
            width: 100%;
            max-width: 400px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 240, 255, 0.2);
            animation: float 6s ease-in-out infinite;
        }

        .book-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .feature-card {
            background: rgba(255, 255, 255, 0.05);
            padding: 2rem;
            border-radius: 10px;
            border-left: 3px solid var(--primary);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(255, 0, 170, 0.2);
        }

        .feature-card h3 {
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
        }

        .feature-card h3::before {
            content: '✦';
            margin-right: 10px;
            color: var(--secondary);
        }

        .quote-section {
            background: linear-gradient(rgba(10, 10, 32, 0.9), rgba(10, 10, 32, 0.9)), 
                        url('https://images.unsplash.com/photo-1519681393784-d120267933ba?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
            padding: 6rem 2rem;
            text-align: center;
            position: relative;
        }

        .quote {
            max-width: 800px;
            margin: 0 auto;
            font-size: 1.5rem;
            font-style: italic;
            color: var(--light);
            position: relative;
            padding: 2rem;
        }

        .quote::before, .quote::after {
            content: '"';
            font-size: 4rem;
            color: var(--primary);
            opacity: 0.5;
            position: absolute;
        }

        .quote::before {
            top: -20px;
            left: 0;
        }

        .quote::after {
            bottom: -40px;
            right: 0;
        }

        .author {
            margin-top: 2rem;
            font-weight: bold;
            color: var(--secondary);
        }

        .pricing {
            background-color: var(--dark);
        }

        .pricing-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .pricing-card {
            background: rgba(255, 255, 255, 0.05);
            padding: 2rem;
            border-radius: 10px;
            text-align: center;
            transition: transform 0.3s;
            position: relative;
            overflow: hidden;
        }

        .pricing-card:hover {
            transform: translateY(-10px);
        }

        .pricing-card.featured {
            border: 2px solid var(--primary);
            box-shadow: 0 0 20px rgba(255, 0, 170, 0.3);
        }

        .pricing-card h3 {
            margin-bottom: 1rem;
        }

        .price {
            font-size: 3rem;
            font-weight: bold;
            color: var(--primary);
            margin: 1rem 0;
        }

        .price span {
            font-size: 1rem;
            color: var(--light);
        }

        .pricing-card ul {
            list-style: none;
            margin: 2rem 0;
        }

        .pricing-card li {
            margin-bottom: 0.8rem;
            position: relative;
            padding-left: 1.5rem;
        }

        .pricing-card li::before {
            content: '✓';
            color: var(--secondary);
            position: absolute;
            left: 0;
        }

        .badge {
            position: absolute;
            top: 0;
            right: 0;
            background-color: var(--accent);
            color: var(--dark);
            padding: 0.5rem 1rem;
            font-weight: bold;
            transform: rotate(15deg) translate(25%, -50%);
        }

        .faq {
            background-color: var(--bg);
        }

        .faq-item {
            margin-bottom: 1rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            padding-bottom: 1rem;
        }

        .faq-question {
            font-weight: bold;
            color: var(--light);
            cursor: pointer;
            padding: 1rem 0;
            position: relative;
        }

        .faq-question::after {
            content: '+';
            position: absolute;
            right: 0;
            font-size: 1.5rem;
            color: var(--primary);
            transition: transform 0.3s;
        }

        .faq-question.active::after {
            content: '-';
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out;
        }

        .faq-answer.show {
            max-height: 500px;
        }

        .contact-form {
            max-width: 600px;
            margin: 0 auto;
            background: rgba(255, 255, 255, 0.05);
            padding: 2rem;
            border-radius: 10px;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        label {
            display: block;
            margin-bottom: 0.5rem;
            color: var(--light);
        }

        input, textarea {
            width: 100%;
            padding: 0.8rem;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 5px;
            color: var(--text);
            font-size: 1rem;
        }

        textarea {
            min-height: 150px;
            resize: none;
        }

        .legal-page{
            max-width: 1000px;
            margin: 0px auto;
            display: grid;
            gap: 32px;
        }

        .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);
            padding: 2rem;
            border-radius: 10px;
            max-width: 500px;
            text-align: center;
            position: relative;
            border: 2px solid var(--primary);
        }

        .close-modal {
            position: absolute;
            top: 10px;
            right: 10px;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--light);
        }

        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: var(--dark);
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            border-top: 1px solid var(--primary);
            transform: translateY(100%);
            transition: transform 0.3s ease-out;
        }

        .cookie-banner.show {
            transform: translateY(0);
        }

        .cookie-banner p {
            margin-bottom: 0;
            max-width: 80%;
        }

        footer {
            background-color: var(--dark);
            padding: 3rem 2rem;
            border-top: 1px solid var(--primary);
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-column h3 {
            margin-bottom: 1.5rem;
            color: var(--secondary);
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column li {
            margin-bottom: 0.8rem;
        }

        .footer-column a {
            color: var(--light);
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-column a:hover {
            color: var(--primary);
        }

        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes float {
            0% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-20px);
            }
            100% {
                transform: translateY(0px);
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                position: absolute;
                right: 0;
                top: 80px;
                background-color: var(--dark);
                width: 100%;
                flex-direction: column;
                align-items: center;
                padding: 2rem 0;
                clip-path: circle(0px at 90% -10%);
                transition: all 0.5s ease-out;
                pointer-events: none;
            }

            .nav-links.open {
                clip-path: circle(1000px at 90% -10%);
                pointer-events: all;
            }

            .nav-links li {
                margin: 1rem 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-content {
                text-align: center;
            }

            .about-book {
                flex-direction: column;
                text-align: center;
            }

            .btn {
                display: block;
                width: 100%;
                margin-bottom: 1rem;
            }

            .btn-secondary {
                margin-left: 0;
            }
        }
