
        :root {
            --neon-pink: #ff2a6d;
            --electric-blue: #05d9e8;
            --dark-purple: #2e2157;
            --neon-green: #0afc06;
            --deep-space: #0d0221;
            --cyber-yellow: #f2f52a;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Courier New', monospace;
        }
        
        body {
            background-color: var(--deep-space);
            color: #fff;
            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);
            border-bottom: 1px solid var(--neon-pink);
            z-index: 1000;
            backdrop-filter: blur(5px);
            padding: 15px 0;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .logo {
            color: var(--neon-green);
            font-size: 24px;
            font-weight: bold;
            text-decoration: none;
            letter-spacing: 2px;
            text-shadow: 0 0 10px var(--neon-green);
        }
        
        .nav-links {
            display: flex;
            list-style: none;
        }
        
        .nav-links li {
            margin-left: 30px;
        }
        
        .nav-links a {
            color: var(--electric-blue);
            text-decoration: none;
            font-size: 16px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .nav-links a:hover {
            color: var(--neon-pink);
            text-shadow: 0 0 5px var(--neon-pink);
        }
        
        .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(--electric-blue);
            margin: 5px;
            transition: all 0.3s ease;
        }
        
        section {
            padding: 80px 20px;
            position: relative;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        h1, h2, h3 {
            margin-bottom: 20px;
            color: var(--cyber-yellow);
        }
        
        h1 {
            font-size: 48px;
            line-height: 1.2;
            text-shadow: 0 0 15px var(--cyber-yellow);
            margin-bottom: 30px;
        }
        
        h2 {
            font-size: 36px;
            border-bottom: 2px solid var(--neon-pink);
            padding-bottom: 10px;
            display: inline-block;
        }
        
        h3 {
            font-size: 24px;
            color: var(--neon-green);
        }
        
        p {
            margin-bottom: 20px;
            font-size: 16px;
            color: #ccc;
        }
        
        .btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: var(--neon-pink);
            color: var(--deep-space);
            text-decoration: none;
            border-radius: 0;
            font-weight: bold;
            font-size: 16px;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-top: 20px;
            box-shadow: 0 0 15px var(--neon-pink);
        }
        
        .btn:hover {
            background-color: var(--electric-blue);
            color: var(--deep-space);
            box-shadow: 0 0 20px var(--electric-blue);
            transform: translateY(-3px);
        }
        
        .hero {
            background: linear-gradient(rgba(13, 2, 33, 0.8), rgba(13, 2, 33, 0.8)), url('https://images.unsplash.com/photo-1513185041617-8ab03f83d6c5?q=80&w=1170&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
            background-size: cover;
            background-position: center;
            min-height: 80vh;
            display: flex;
            align-items: center;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, transparent 20%, var(--deep-space) 70%);
            z-index: 1;
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            margin: 0 auto;
            padding: 20px;
        }
        
        .hero p {
            font-size: 18px;
            margin-bottom: 30px;
            color: #fff;
        }
        
        .book-cover {
            width: 300px;
            height: 450px;
            object-fit: cover;
            border: 3px solid var(--neon-pink);
            box-shadow: 0 0 30px var(--neon-pink);
            margin-bottom: 30px;
            transition: transform 0.5s ease;
        }
        
        .book-cover:hover {
            transform: rotateY(20deg) scale(1.05);
        }
        
        .about {
            background-color: var(--dark-purple);
            position: relative;
        }
        
        .about::after {
            content: '';
            position: absolute;
            bottom: -50px;
            left: 0;
            width: 100%;
            height: 100px;
            background: linear-gradient(to bottom, var(--dark-purple), transparent);
            z-index: 1;
        }
        
        .about-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }
        
        .about-text {
            flex: 1;
        }
        
        .about-image {
            flex: 1;
            text-align: center;
        }
        
        .for-whom {
            background-color: var(--deep-space);
            padding-bottom: 150px;
        }
        
        .features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .feature-card {
            background: rgba(46, 33, 87, 0.5);
            padding: 30px;
            border-left: 3px solid var(--neon-green);
            transition: all 0.3s ease;
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 20px rgba(255, 42, 109, 0.2);
            border-left: 3px solid var(--neon-pink);
        }
        
        .quote {
            background: linear-gradient(135deg, var(--dark-purple), var(--deep-space));
            text-align: center;
            padding: 100px 20px;
            position: relative;
        }
        
        .quote::before, .quote::after {
            content: '"';
            font-size: 100px;
            color: var(--neon-pink);
            opacity: 0.3;
            position: absolute;
        }
        
        .quote::before {
            top: 20px;
            left: 20px;
        }
        
        .quote::after {
            bottom: 20px;
            right: 20px;
        }
        
        .quote-text {
            font-size: 24px;
            font-style: italic;
            max-width: 800px;
            margin: 0 auto 30px;
            color: var(--electric-blue);
            position: relative;
        }
        
        .quote-author {
            font-size: 18px;
            color: var(--neon-green);
        }
        
        .pricing {
            background-color: var(--deep-space);
            padding: 100px 20px;
        }
        
        .pricing-cards {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 30px;
            margin-top: 50px;
        }
        
        .pricing-card {
            background: rgba(5, 217, 232, 0.1);
            border: 1px solid var(--electric-blue);
            padding: 40px 30px;
            width: 300px;
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .pricing-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--neon-pink), var(--electric-blue));
        }
        
        .pricing-card.featured {
            transform: scale(1.05);
            border: 1px solid var(--neon-pink);
            box-shadow: 0 0 30px rgba(255, 42, 109, 0.3);
        }
        
        .pricing-card.featured::before {
            background: linear-gradient(90deg, var(--electric-blue), var(--neon-green));
            height: 8px;
        }
        
        .pricing-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(5, 217, 232, 0.2);
        }
        
        .price {
            font-size: 36px;
            font-weight: bold;
            color: var(--neon-green);
            margin: 20px 0;
        }
        
        .price span {
            font-size: 16px;
            color: #ccc;
        }
        
        .pricing-features {
            list-style: none;
            margin-bottom: 30px;
        }
        
        .pricing-features li {
            margin-bottom: 10px;
            position: relative;
            padding-left: 20px;
        }
        
        .pricing-features li::before {
            content: '✓';
            color: var(--neon-green);
            position: absolute;
            left: 0;
        }
        
        .faq {
            background-color: var(--dark-purple);
            padding: 100px 20px;
        }
        
        .faq-item {
            margin-bottom: 20px;
            border-bottom: 1px solid rgba(255, 42, 109, 0.3);
            padding-bottom: 20px;
        }
        
        .faq-question {
            background: none;
            border: none;
            color: var(--electric-blue);
            font-size: 18px;
            text-align: left;
            width: 100%;
            padding: 15px 0;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .faq-question::after {
            content: '+';
            font-size: 24px;
            color: var(--neon-pink);
        }
        
        .faq-question.active::after {
            content: '-';
        }
        
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            color: #ccc;
        }
        
        .faq-answer.show {
            max-height: 500px;
        }
        
        .contact {
            background: linear-gradient(var(--deep-space), #000);
            padding: 100px 20px;
        }
        
        .contact-form {
            max-width: 600px;
            margin: 0 auto;
            background: rgba(46, 33, 87, 0.5);
            padding: 40px;
            border: 1px solid var(--neon-pink);
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: var(--electric-blue);
        }
        
        .form-group input, 
        .form-group textarea {
            width: 100%;
            padding: 12px;
            background-color: rgba(13, 2, 33, 0.8);
            border: 1px solid var(--electric-blue);
            color: #fff;
            font-size: 16px;
        }
        
        .form-group textarea {
            min-height: 150px;
            resize: none;
        }
        
        footer {
            background-color: #000;
            padding: 50px 20px 20px;
            text-align: center;
        }
        
        .footer-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
            margin-bottom: 30px;
        }
        
        .footer-links a {
            color: var(--electric-blue);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-links a:hover {
            color: var(--neon-pink);
        }
        
        .footer-contact {
            margin-bottom: 30px;
        }
        
        .copyright {
            color: #666;
            font-size: 14px;
        }
        
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            z-index: 1001;
            justify-content: center;
            align-items: center;
        }
        
        .modal-content {
            background-color: var(--dark-purple);
            padding: 40px;
            max-width: 500px;
            text-align: center;
            border: 2px solid var(--neon-pink);
            position: relative;
        }
        
        .close-modal {
            position: absolute;
            top: 10px;
            right: 10px;
            background: none;
            border: none;
            color: var(--electric-blue);
            font-size: 24px;
            cursor: pointer;
        }
        
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: var(--dark-purple);
            padding: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            z-index: 1000;
            border-top: 1px solid var(--neon-pink);
        }
        
        .cookie-banner p {
            margin-bottom: 0;
            flex: 1;
            min-width: 300px;
        }
        
        .cookie-banner-buttons {
            display: flex;
            gap: 10px;
        }
        
        .cookie-btn {
            padding: 8px 20px;
            border: none;
            cursor: pointer;
            font-weight: bold;
        }
        
        .accept-cookies {
            background-color: var(--neon-green);
            color: var(--deep-space);
        }
        
        .decline-cookies {
            background-color: transparent;
            color: var(--electric-blue);
            border: 1px solid var(--electric-blue);
        }
        
        @media (max-width: 768px) {
            .nav-links {
                position: absolute;
                top: 80px;
                left: 0;
                width: 100%;
                background-color: var(--deep-space);
                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;
            }
            
            .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);
            }
            
            .about-content {
                flex-direction: column;
            }
            
            .hero h1 {
                font-size: 36px;
            }
            
            h2 {
                font-size: 30px;
            }
        }
        
        /* 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.visible {
            opacity: 1;
            transform: translateY(0);
        }
