        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Georgia', 'Times New Roman', serif;
            line-height: 1.6;
            color: #4D5347;
            background: linear-gradient(135deg, #F8F9F4 0%, #EAEDE2 100%);
            min-height: 100vh;
            position: relative;
            overflow-x: hidden;
        }

        .language-toggle {
            position: absolute;
            top: 20px;
            right: 20px;
            z-index: 1000;
            display: flex;
            gap: 10px;
            background: rgba(255, 255, 255, 0.9);
            padding: 8px 12px;
            border-radius: 20px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .lang-btn {
            background: none;
            border: none;
            padding: 5px 10px;
            cursor: pointer;
            border-radius: 15px;
            font-weight: 600;
            color: #8C9673;
            transition: all 0.3s ease;
        }

        .lang-btn.active {
            background: #8C9673;
            color: white;
        }

        .lang-btn:hover {
            background: #A3B18A;
            color: white;
        }

        .container {
            max-width: 800px;
            margin: 0 auto;
            padding: 60px 20px;
            text-align: center;
            position: relative;
            z-index: 10;
        }

        .background-icon {
            position: fixed;
            top: 30%;
            left: 50%;
            transform: translate(-50%, -50%);
            opacity: 0.7;
            z-index: 1;
            pointer-events: none;
            width: 400px;
            height: 400px;
        }

        .hero-emoji {
            font-size: 4rem;
            margin-bottom: 1rem;
            display: block;
        }

        .main-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #8C9673;
            margin-bottom: 0.5rem;
            line-height: 1.2;
        }

        .subtitle {
            font-size: 1.3rem;
            font-weight: 600;
            color: #A3B18A;
            margin-bottom: 2rem;
        }

        .welcome-text {
            font-size: 1.1rem;
            margin-bottom: 1.5rem;
            color: #4D5347;
        }

        .description {
            font-size: 1.15rem;
            line-height: 1.7;
            margin-bottom: 1rem;
            color: #4D5347;
            font-style: italic;
        }

        .values-section {
            background: rgba(199, 208, 182, 0.2);
            padding: 2rem;
            border-radius: 20px;
            margin: 2rem 0;
            border: 2px solid rgba(163, 177, 138, 0.3);
        }

        .values-text {
            font-size: 1.2rem;
            font-weight: 600;
            color: #3A3E34;
            margin-bottom: 1rem;
        }

        .cta-section {
            background: linear-gradient(135deg, #C7D0B6, #A3B18A);
            padding: 2.5rem 2rem;
            border-radius: 25px;
            margin: 3rem 0;
            color: white;
            box-shadow: 0 10px 30px rgba(140, 150, 115, 0.3);
        }

        .cta-text {
            font-size: 1.1rem;
            margin-bottom: 1.5rem;
        }

        .founder-section {
            margin-top: 3rem;
            padding: 2rem;
            background: rgba(255, 255, 255, 0.6);
            border-radius: 15px;
        }

        .founder-text {
            font-size: 1rem;
            font-style: italic;
            color: #4D5347;
        }

        .founder-signature {
            margin-top: 1rem;
            font-weight: 600;
            color: #8C9673;
        }

        .tagline {
            font-size: 1.1rem;
            margin: 2rem 0;
            color: #A3B18A;
            font-weight: 500;
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            flex-wrap: wrap;
        }

        .social-link {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.75rem 1.5rem;
            background: rgba(255, 255, 255, 0.9);
            color: #4D5347;
            text-decoration: none;
            border-radius: 25px;
            transition: all 0.3s ease;
            font-weight: 500;
        }

        .social-link:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .social-link.instagram:hover {
            background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
            color: white;
        }

        .social-link.facebook:hover {
            background: #1877f2;
            color: white;
        }

        .social-link.telegram:hover {
            background: #0088cc;
            color: white;
        }

        .social-link.threads:hover {
            background: linear-gradient(45deg, #000, #333);
            color: white;
        }

        .social-link svg {
            width: 20px;
            height: 20px;
        }

        .support-section {
            margin-top: 2rem;
            padding: 2rem;
            background: linear-gradient(135deg, rgba(255, 182, 193, 0.15), rgba(255, 192, 203, 0.2));
            border-radius: 20px;
            border: 2px solid rgba(255, 182, 193, 0.3);
            box-shadow: 0 8px 25px rgba(255, 182, 193, 0.2);
        }

        .support-text {
            font-size: 1rem;
            color: #5D4E5A;
            margin-bottom: 1.5rem;
            font-style: italic;
        }

        .support-btn {
            display: inline-block;
            padding: 1rem 2rem;
            background: linear-gradient(135deg, #E6A8C2, #D291B7);
            color: white;
            text-decoration: none;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(226, 168, 194, 0.4);
        }

        .support-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(226, 168, 194, 0.6);
            background: linear-gradient(135deg, #D291B7, #C287A8);
        }

                /* Cookie Consent */
        .cookie-consent {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
            border-top: 2px solid rgba(163, 177, 138, 0.3);
            padding: 1rem 2rem;
            z-index: 1001;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
            box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }

        .cookie-consent.show {
            transform: translateY(0);
        }

        .cookie-text {
            font-size: 0.9rem;
            color: #4D5347;
            flex-grow: 1;
        }

        .cookie-buttons {
            display: flex;
            gap: 0.5rem;
            flex-shrink: 0;
        }

        .cookie-btn {
            padding: 0.5rem 1rem;
            border: none;
            border-radius: 20px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .cookie-btn.accept {
            background: #8C9673;
            color: white;
        }

        .cookie-btn.accept:hover {
            background: #A3B18A;
        }

        .cookie-btn.decline {
            background: transparent;
            color: #8C9673;
            border: 1px solid #8C9673;
        }

        .cookie-btn.decline:hover {
            background: #8C9673;
            color: white;
        }

        .cookie-consent {
            flex-direction: column;
            text-align: center;
            padding: 1rem;
        }            
        .cookie-buttons {
            width: 100%;
            justify-content: center;
        }

        .coming-soon {
            font-size: 1.2rem;
            font-weight: 600;
            color: #8C9673;
            margin: 2rem 0;
        }
.about-me-btn {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.8rem 2rem;
    background: linear-gradient(135deg, #8C9673, #A3B18A);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(140, 150, 115, 0.3);
}

.about-me-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(140, 150, 115, 0.5);
    background: linear-gradient(135deg, #A3B18A, #C7D0B6);
}

.about-me-btn:active {
    transform: translateY(0);
}
        /* Скрыть неактивные языки */
        .lang-content {
            display: none;
        }

        .lang-content.active {
            display: block;
        }

        .support-section {
            background: linear-gradient(135deg, rgba(255, 182, 193, 0.15), rgba(255, 192, 203, 0.2));
            border-radius: 20px;
            padding: 2rem;
            margin: 2rem 0;
            border: 2px solid rgba(255, 182, 193, 0.3);
        }
        .support-btn {
            background: linear-gradient(135deg, #E6A8C2, #D291B7);
            color: white;
            padding: 1rem 2rem;
            border: none;
            border-radius: 30px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 1rem;
        }
        .support-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(226, 168, 194, 0.6);
        }
        .support-btn.hidden {
            display: none;
        }
        .support-options {
            display: block;
            margin-top: 1rem;
        }

        .support-category {
            background: rgba(255, 255, 255, 0.8);
            padding: 2rem;
            border-radius: 20px;
            border: 2px solid rgba(163, 177, 138, 0.3);
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .support-category:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(140, 150, 115, 0.3);
        }

        .gratitude-section {
            background: linear-gradient(135deg, rgba(255, 182, 193, 0.15), rgba(255, 192, 203, 0.2));
            padding: 2.5rem;
            border-radius: 20px;
            border: 2px solid rgba(255, 182, 193, 0.3);
            text-align: center;
            margin-bottom: 2rem;
        }

        .gratitude-text {
            font-size: 1.2rem;
            color: #5D4E5A;
            font-style: italic;
            line-height: 1.7;
        }

        .back-link {
            text-align: center;
            margin-top: 2rem;
        }

        .back-link a {
            color: #8C9673;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.8rem 1.5rem;
            border: 2px solid #8C9673;
            border-radius: 25px;
            transition: all 0.3s ease;
        }

        .back-link a:hover {
            background: #8C9673;
            color: white;
            transform: translateY(-2px);
        }

        .category-title {
            font-size: 1.3rem;
            font-weight: 600;
            color: #8C9673;
            margin-bottom: 1rem;
        }
        
        .category-description {
            font-size: 1rem;
            color: #4D5347;
            margin-bottom: 1.5rem;
            font-style: italic;
        }

        .support-category-title {
            font-weight: 600;
            margin-bottom: 1rem;
            color: #5D4E5A;
            text-align: center;
        }
        .support-links {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .support-link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.8rem;
            padding: 1rem 1.5rem;
            background: white;
            color: #4D5347;
            text-decoration: none;
            border-radius: 15px;
            font-weight: 500;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            border: 2px solid rgba(163, 177, 138, 0.3);
        }

        .support-link:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }

        .support-link.buymeacoffee:hover { 
            background: #FFDD00; 
            color: #000; 
            border-color: #FFDD00;
        }

        .support-link.paypal:hover { 
            background: #0070BA; 
            color: white; 
            border-color: #0070BA;
        }

        .support-link.kofi:hover { 
            background: #29ABE0; 
            color: white; 
            border-color: #29ABE0;
        }

        .support-link.patreon:hover { 
            background: #FF424D; 
            color: white; 
            border-color: #FF424D;
        }

        .free-support {
            background: linear-gradient(135deg, rgba(199, 208, 182, 0.3), rgba(163, 177, 138, 0.2));
            padding: 2rem;
            border-radius: 20px;
            border: 2px solid rgba(163, 177, 138, 0.3);
            margin-bottom: 2rem;
        }

        .free-support-title {
            font-size: 1.4rem;
            font-weight: 600;
            color: #8C9673;
            margin-bottom: 1rem;
            text-align: center;
        }

        .free-support-list {
            text-align: left;
            list-style: none;
            padding: 0;
        }

        .free-support-list li {
            font-size: 1.1rem;
            color: #4D5347;
            margin-bottom: 0.8rem;
            padding-left: 2rem;
            position: relative;
        }

        .free-support-list li:before {
            content: "✨";
            position: absolute;
            left: 0;
            top: 0;
        }

        .support-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }

        @media (max-width: 768px) {
            .language-toggle {
                top: 10px;
                right: 10px;
                padding: 6px 10px;
            }
            
            .container {
                padding: 40px 15px;
            }
            
            .main-title {
                font-size: 2rem;
            }
            
            .subtitle {
                font-size: 1.2rem;
                color: #A3B18A;
                margin-bottom: 2rem;
                font-style: italic;
            }
            
        .description {
            font-size: 1.1rem;
            line-height: 1.7;
            margin-bottom: 3rem;
            text-align: center;
            color: #4D5347;
        }
            
            .social-links {
                flex-direction: column;
                gap: 1rem;
            }
            
            .social-link {
                justify-content: center;
            }

            .background-icon {
                width: 250px;
                height: 250px;
            }
            
            .support-links {
                flex-direction: column;
                gap: 0.8rem;
            }
            .support-link {
                justify-content: center;
            }
        }
