
        :root {
            --space-blue: #0d1b2a;
            --violet-dream: #6a4c93;
            --sunset-orange: #ff6d00;
            --electric-yellow: #ffd166;
            --mint-fresh: #06d6a0;
            --text-light: #f8f9fa;
            --text-gray: #adb5bd;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Courier New', monospace;
        }
        
        body {
            background-color: var(--space-blue);
            color: var(--text-light);
            line-height: 1.6;
            padding-top: 80px;
            background-image: 
                linear-gradient(rgba(13, 27, 42, 0.9), rgba(13, 27, 42, 0.9)),
                url('https://images.unsplash.com/photo-1534796636912-3b95b3ab5986?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
            background-attachment: fixed;
            background-size: cover;
            background-position: center;
        }
        
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(13, 27, 42, 0.9);
            border-bottom: 1px solid var(--sunset-orange);
            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;
            color: var(--electric-yellow);
            font-size: 24px;
            font-weight: bold;
            text-decoration: none;
        }
        
        .logo span {
            color: var(--mint-fresh);
        }
        
        nav {
            display: flex;
            align-items: center;
        }
        
        .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: 16px;
            transition: color 0.3s;
            position: relative;
        }
        
        .nav-links a:hover {
            color: var(--sunset-orange);
        }
        
        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: var(--sunset-orange);
            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(--text-light);
            margin: 5px;
            transition: all 0.3s ease;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        section {
            padding: 80px 0;
            position: relative;
        }
        
        h1, h2, h3 {
            margin-bottom: 20px;
            line-height: 1.3;
        }
        
        h1 {
            font-size: 48px;
            color: var(--electric-yellow);
            text-shadow: 0 0 10px rgba(255, 209, 102, 0.5);
        }
        
        h2 {
            font-size: 36px;
            color: var(--mint-fresh);
            border-left: 4px solid var(--violet-dream);
            padding-left: 15px;
        }
        
        h3 {
            font-size: 24px;
            color: var(--text-light);
        }
        
        p {
            margin-bottom: 20px;
            color: var(--text-gray);
        }
        
        .btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: var(--violet-dream);
            color: var(--text-light);
            text-decoration: none;
            border-radius: 30px;
            font-weight: bold;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
            font-size: 16px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .btn:hover {
            background-color: var(--sunset-orange);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(255, 109, 0, 0.4);
        }
        
        .btn-secondary {
            background-color: transparent;
            border: 2px solid var(--sunset-orange);
            color: var(--sunset-orange);
        }
        
        .btn-secondary:hover {
            background-color: var(--sunset-orange);
            color: var(--space-blue);
        }
        
        .hero {
            text-align: center;
            padding: 120px 0;
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, rgba(106, 76, 147, 0.1) 0%, rgba(13, 27, 42, 0.9) 70%);
            z-index: -1;
        }
        
        .hero h1 {
            margin-bottom: 30px;
            animation: glow 2s infinite alternate;
        }
        
        @keyframes glow {
            from {
                text-shadow: 0 0 10px rgba(255, 209, 102, 0.5);
            }
            to {
                text-shadow: 0 0 20px rgba(255, 209, 102, 0.8), 0 0 30px rgba(255, 209, 102, 0.4);
            }
        }
        
        .hero p {
            max-width: 700px;
            margin: 0 auto 40px;
            font-size: 18px;
        }
        
        .book-cover {
            width: 300px;
            height: auto;
            margin: 40px auto;
            border: 5px solid var(--sunset-orange);
            box-shadow: 0 10px 30px rgba(255, 109, 0, 0.3);
            transition: transform 0.5s;
        }
        
        .book-cover:hover {
            transform: rotateY(20deg) scale(1.05);
        }
        
        .features {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin-top: 50px;
        }
        
        .feature-card {
            width: calc(33.333% - 20px);
            background-color: rgba(106, 76, 147, 0.3);
            border: 1px solid var(--violet-dream);
            border-radius: 10px;
            padding: 30px;
            margin-bottom: 30px;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }
        
        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(255, 109, 0, 0.1) 0%, rgba(6, 214, 160, 0.1) 100%);
            z-index: -1;
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(255, 109, 0, 0.2);
            border-color: var(--sunset-orange);
        }
        
        .feature-card h3 {
            color: var(--mint-fresh);
            margin-bottom: 15px;
        }
        
        .feature-card .icon {
            font-size: 40px;
            color: var(--sunset-orange);
            margin-bottom: 20px;
        }
        
        .quote {
            background-color: rgba(106, 76, 147, 0.3);
            border-left: 5px solid var(--violet-dream);
            padding: 40px;
            margin: 60px 0;
            position: relative;
        }
        
        .quote::before {
            content: '"';
            position: absolute;
            top: 10px;
            left: 10px;
            font-size: 80px;
            color: rgba(106, 76, 147, 0.2);
            font-family: serif;
        }
        
        .quote p {
            font-size: 20px;
            font-style: italic;
            color: var(--text-light);
            position: relative;
            z-index: 1;
        }
        
        .quote-author {
            text-align: right;
            font-weight: bold;
            color: var(--sunset-orange);
            margin-top: 20px;
        }
        
        .pricing {
            text-align: center;
        }
        
        .pricing-cards {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 50px;
            gap: 30px;
        }
        
        .pricing-card {
            width: 300px;
            background-color: rgba(106, 76, 147, 0.3);
            border: 1px solid var(--violet-dream);
            border-radius: 10px;
            padding: 40px 30px;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }
        
        .pricing-card.popular {
            border: 1px solid var(--sunset-orange);
            transform: scale(1.05);
        }
        
        .pricing-card.popular::before {
            content: 'ПОПУЛЯРНЫЙ';
            position: absolute;
            top: 0;
            right: 0;
            background-color: var(--violet-dream);
            color: var(--text-light);
            padding: 5px 15px;
            font-size: 12px;
            font-weight: bold;
            border-bottom-left-radius: 10px;
        }
        
        .pricing-card.free {
            border: 1px solid var(--mint-fresh);
        }
        
        .pricing-card.free .price {
            color: var(--mint-fresh);
        }
        
        .pricing-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(255, 109, 0, 0.2);
        }
        
        .pricing-card h3 {
            color: var(--sunset-orange);
            margin-bottom: 20px;
        }
        
        .price {
            font-size: 36px;
            font-weight: bold;
            color: var(--violet-dream);
            margin: 20px 0;
        }
        
        .price span {
            font-size: 16px;
            color: var(--text-gray);
        }
        
        .pricing-features {
            list-style: none;
            margin: 30px 0;
            text-align: left;
        }
        
        .pricing-features li {
            margin-bottom: 10px;
            padding-left: 25px;
            position: relative;
        }
        
        .pricing-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--mint-fresh);
        }
        
        .faq {
            background-color: rgba(106, 76, 147, 0.3);
            padding: 80px 0;
        }
        
        .faq-item {
            margin-bottom: 20px;
            border: 1px solid var(--violet-dream);
            border-radius: 5px;
            overflow: hidden;
        }
        
        .faq-question {
            background-color: rgba(106, 76, 147, 0.5);
            padding: 15px 20px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background-color 0.3s;
        }
        
        .faq-question:hover {
            background-color: rgba(106, 76, 147, 0.7);
        }
        
        .faq-question h3 {
            margin: 0;
            font-size: 18px;
        }
        
        .faq-question .toggle {
            font-size: 20px;
            transition: transform 0.3s;
        }
        
        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out, padding 0.3s ease;
            background-color: rgba(13, 27, 42, 0.5);
        }
        
        .faq-answer p {
            padding: 20px 0;
            margin: 0;
        }
        
        .faq-item.active .faq-question {
            background-color: rgba(106, 76, 147, 0.7);
        }
        
        .faq-item.active .faq-answer {
            max-height: 500px;
        }
        
        .faq-item.active .toggle {
            transform: rotate(45deg);
        }
        
        .contact-form {
            max-width: 600px;
            margin: 0 auto;
            background-color: rgba(106, 76, 147, 0.3);
            padding: 40px;
            border-radius: 10px;
            border: 1px solid var(--violet-dream);
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: var(--mint-fresh);
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px 15px;
            background-color: rgba(13, 27, 42, 0.7);
            border: 1px solid var(--violet-dream);
            border-radius: 5px;
            color: var(--text-light);
            font-size: 16px;
            transition: border-color 0.3s;
        }
        
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--sunset-orange);
        }
        
        .form-group textarea {
            min-height: 120px;
            resize: none;
        }
        
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(13, 27, 42, 0.9);
            z-index: 2000;
            justify-content: center;
            align-items: center;
        }
        
        .modal-content {
            background-color: var(--space-blue);
            padding: 40px;
            border-radius: 10px;
            text-align: center;
            max-width: 500px;
            width: 90%;
            border: 2px solid var(--sunset-orange);
            position: relative;
        }
        
        .close-modal {
            position: absolute;
            top: 10px;
            right: 10px;
            font-size: 24px;
            color: var(--text-gray);
            cursor: pointer;
            transition: color 0.3s;
        }
        
        .close-modal:hover {
            color: var(--violet-dream);
        }
        
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: var(--violet-dream);
            padding: 15px 0;
            z-index: 1000;
            display: flex;
            justify-content: center;
            align-items: center;
            border-top: 1px solid var(--sunset-orange);
        }
        
        .cookie-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            width: 90%;
        }
        
        .cookie-text {
            color: var(--text-light);
            font-size: 14px;
            margin-right: 20px;
        }
        
        .cookie-btn {
            background-color: var(--sunset-orange);
            color: var(--text-light);
            border: none;
            padding: 8px 20px;
            border-radius: 20px;
            cursor: pointer;
            font-size: 14px;
            transition: background-color 0.3s;
        }
        
        .cookie-btn:hover {
            background-color: var(--mint-fresh);
        }
        
        footer {
            background-color: var(--violet-dream);
            padding: 60px 0 30px;
            border-top: 1px solid var(--sunset-orange);
        }
        
        .footer-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .footer-col {
            width: calc(25% - 30px);
            margin-bottom: 30px;
        }
        
        .footer-col h3 {
            color: var(--mint-fresh);
            margin-bottom: 20px;
            font-size: 18px;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: var(--text-gray);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: var(--sunset-orange);
        }
        
        .contact-info {
            color: var(--text-gray);
            font-size: 14px;
            line-height: 1.8;
        }
        
        .copyright {
            text-align: center;
            padding-top: 30px;
            margin-top: 30px;
            border-top: 1px solid rgba(255, 109, 0, 0.2);
            color: var(--text-gray);
            font-size: 14px;
        }
        
        .disclaimer {
            font-size: 12px;
            color: var(--text-gray);
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 109, 0, 0.2);
        }
        
        @media (max-width: 992px) {
            .feature-card {
                width: calc(50% - 15px);
            }
            
            .footer-col {
                width: calc(50% - 20px);
            }
            
            h1 {
                font-size: 36px;
            }
            
            h2 {
                font-size: 30px;
            }
        }
        
        @media (max-width: 768px) {
            .nav-links {
                position: absolute;
                right: 0;
                top: 80px;
                background-color: var(--space-blue);
                width: 100%;
                flex-direction: column;
                align-items: center;
                padding: 20px 0;
                transform: translateY(-150%);
                transition: transform 0.5s ease-in;
                border-bottom: 1px solid var(--sunset-orange);
            }
            
            .nav-links.active {
                transform: translateY(0);
            }
            
            .nav-links li {
                margin: 15px 0;
            }
            
            .burger {
                display: block;
            }
            
            .burger.active .line1 {
                transform: rotate(-45deg) translate(-5px, 6px);
            }
            
            .burger.active .line2 {
                opacity: 0;
            }
            
            .burger.active .line3 {
                transform: rotate(45deg) translate(-5px, -6px);
            }
            
            .hero {
                padding: 80px 0;
            }
            
            section {
                padding: 60px 0;
            }
            
            .pricing-cards {
                flex-direction: column;
                align-items: center;
            }
            
            .pricing-card.popular {
                transform: scale(1);
            }
        }
        
        @media (max-width: 576px) {
            .feature-card {
                width: 100%;
            }
            
            .footer-col {
                width: 100%;
            }
            
            h1 {
                font-size: 30px;
            }
            
            h2 {
                font-size: 26px;
            }
            
            .contact-form {
                padding: 30px 20px;
            }
            
            .cookie-content {
                flex-direction: column;
                text-align: center;
            }
            
            .cookie-text {
                margin-right: 0;
                margin-bottom: 15px;
            }
        }
        
        /* Анимации */
        .fade-in {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
        }
        
        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .parallax {
            background-attachment: fixed;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
        }
