@import url('menu.css');
        
        :root {
            --primary: #67c233;
            --hover:rgb(40, 128, 13);
            --textik :#000000;
        }
        :root {
            font-family: 'Inter', sans-serif;
        }

        body {
            font-family: 'Inter', sans-serif;
        }
        .copy-helper {
    position: fixed !important;
    left: -9999px !important;
    opacity: 0 !important;
    height: 0 !important;
    width: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
}
.logo-link img { border-radius: 0;}
#cats_here { margin-top: 20px; }
        /* Для совместимости с Safari */
        @supports (font-variation-settings: normal) {
            :root { 
                font-family: 'InterVariable', sans-serif;
                font-optical-sizing: auto;
            }
        }
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {

            line-height: 1.6;
            background: #f8f9fa;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }

        img {
            max-width: 100%;
            border-radius: 25px;
        }

        h1 {
            font-size: 2.5rem;
            color: var(--textik);
            text-align: center;
        }

        h2 {
            color: var(--textik);
            margin: 25px 0;
            font-size: 1.8rem;
        }

        .content-section {
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
            margin-bottom: 30px;
            transform: translateY(0);
            transition: transform 0.3s ease;
        }
        #randomQuote {
            -webkit-user-select: text;
            -moz-user-select: text;
            -ms-user-select: text;
            user-select: text;
            cursor: pointer;
        }
       

        .telegram-btn {
            display: block;
            width: 100%;
            padding: 20px;
            background: var(--primary);
            color: white!important;
            text-align: center;
            text-decoration: none;
            border-radius: 15px;
            font-weight: bold;
            font-size: 1.2rem;
            transition: all 0.3s ease;
            margin: 40px 0;
        }

        .telegram-btn:hover {
            background: var(--hover);
            transform: translateY(-5px);
        }

        .keywords {
            background: #e9ecef;
            padding: 20px;
            border-radius: 15px;
            margin-top: 30px;
        }

        @media (max-width: 768px) {
            h1 {
                font-size: 1.6rem;
            }
            
            .container {
                padding: 10px;
            }
        }

         /* Добавляем новые стили */
         .quote-block {
            position: relative;
            padding: 25px;
            margin: 20px 0;
            background: #fff;
            border-radius: 15px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            border-left: 4px solid var(--primary);
            transition: transform 0.3s ease;
        }

        .quote-block:hover {
            transform: translateX(10px);
        }

        .quote-text {
            font-size: 1.1em;
            line-height: 1.5;
            color: #333;
            padding-right: 40px;
            position: relative;
        }

        .copy-btn {
            position: absolute;
            right: 15px;
            top: 15px;
            cursor: pointer;
            padding: 8px;
            border-radius: 8px;
            background: rgba(35, 161, 220, 0.55);
            transition: all 0.3s ease;
        }

        .copy-btn:hover {
            background: var(--primary);
        }

        .copy-btn:hover .copy-icon {
            stroke: white;
        }

        .copy-icon {
            width: 30px;
            height: 20px;
            stroke: var(--primary);
            transition: stroke 0.3s ease;
        }

        .quote-block::before {
            content: "“";
            position: absolute;
            left: 10px;
            top: -15px;
            font-size: 80px;
            color: var(--primary);
            opacity: 0.1;
        }

        /* Адаптивность */
        @media (max-width: 768px) {
            .quote-text {
                font-size: 1em;
                padding-right: 35px;
            }
            
            .copy-btn {
                padding: 6px;
            }
            
            .copy-icon {
                width: 18px;
                height: 18px;
            }
        }





        .random-quote-section {
    padding: 20px 0;
}

.quote-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 20px;
    position: relative;
}

.statham-photo {
    flex-shrink: 0;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--primary);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    position: relative;
    z-index: 1;
}

.quote-content {
    flex-grow: 1;
    position: relative;
}

.quote-text2 {
    font-size: 1.4rem;
    line-height: 1.5;
    padding: 25px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
    opacity: 0;
    transform: translateX(-20px);
    animation: quoteAppear 0.8s forwards;
    min-height: 120px;
    cursor: pointer;
}

@keyframes quoteAppear {
    0% {
        opacity: 0;
        transform: translate(-50px, -30px) scale(0.8);
    }
    100% {
        opacity: 1;
        transform: translate(0) scale(1);
    }
}

.quote-text2::before {
    content: "“";
    position: absolute;
    left: 10px;
    top: -30px;
    font-size: 80px;
    color: var(--primary);
    opacity: 0.2;
}

.generate-btn {
    margin-top: 20px;
    background: var(--primary);
    color: white;
    border: none;
    padding: 12px 35px;
    border-radius: 30px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.generate-btn:hover {
    background: var(--hover);
    transform: translateY(-2px);
}

@media (max-width: 768px) {

    .telegram-btn { font-size: 1rem;  }
    .quote-container {
        flex-direction: column;
        text-align: center;
    }
    
    .statham-photo {
        width: 150px;
        height: 150px;
    }
    
    .quote-text {
        font-size: 1.1rem;
        animation: mobileAppear 0.8s forwards;
    }

    @keyframes mobileAppear {
        0% {
            opacity: 0;
            transform: translate(0, -30px) scale(0.8);
        }
        100% {
            opacity: 1;
            transform: translate(0) scale(1);
        }
    }
}
.quote-notification {
        position: fixed;
        top: 20px;
        left: 50%;
        transform: translateX(-50%);
        background: rgba(0, 0, 0, 0.8);
        color: white;
        padding: 12px 25px;
        border-radius: 25px;
        font-size: 18px;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease;
        z-index: 1000;
        box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        white-space: nowrap;
    }

    .quote-notification.show {
        opacity: 1;
        visibility: visible;
        top: 30px;
    }
    @media (max-width: 768px) {
    .quote-notification {
        width: 90%;
        text-align: center;
        white-space: normal;
        padding: 10px 15px;
        font-size: 14px;
    }
}
#memeModal {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.8);
        z-index: 9999;
        cursor: pointer; /* Добавляем курсор-указатель */
    }

    #memeModal > div {
        cursor: auto; /* Возвращаем стандартный курсор для контента */
        pointer-events: none; /* Блокируем события для внутреннего контейнера */
    }

    #memeModal > div > * {
        pointer-events: auto; /* Включаем события для дочерних элементов */
    }
    /* Добавить в стили */
.quote-content {
    min-height: 200px; /* Минимальная высота контейнера */
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); /* Плавная анимация */
}

.quote-text2 {
    transition: transform 0.3s ease, opacity 0.3s ease; /* Анимация для текста */
    transform-origin: top center;
}

.generate-btn {
    transition: transform 0.3s ease; /* Анимация для кнопок */
}

/* При появлении новой цитаты */
.quote-text2 {
    animation: quoteAppear 0.8s forwards, textScale 0.5s ease;
}

@keyframes textScale {
    0% {
        transform: scale(0.98);
    }
    100% {
        transform: scale(1);
    }
}

/* Стили для ссылок-цитат */
a.quote-block {
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

a.quote-block:hover {
    transform: translateX(10px);
    text-decoration: none;
}

/* Убрать стандартное подчеркивание */
.quote-text2 {
    text-decoration: none !important;
}

.generate-btn {
    display: block; /* Важное изменение */
    width: 100%; /* Занимает всю ширину */
    margin-top: 10px; /* Отступ сверху */
    text-align: center; 
}

#memeLink {
    margin-top: 10px !important; /* Принудительный отступ */
    display: block; /* Блочное отображение */
}

/* Для мобильной версии */
@media (max-width: 768px) {
    .generate-btn {
        width: 100%;
        margin-left: 0;
    }
}




/* Пагинация */
.pagination {
    margin: 30px 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.page-link {
    padding: 8px 15px;
    background: #f0f0f0;
    border-radius: 5px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s;
}

.page-link:hover {
    background: #007bff;
    color: white;
}

.page-link.active {
    background: #0056b3;
    color: white;
}


/* Стили категорий */
.category-nav {
    margin: 20px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.category-tag {
    display: inline-block;
    padding: 8px 20px;
    border: 2px solid var(--primary);
    border-radius: 25px;
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 16px;
    margin-bottom: 10px;;
}
@media (max-width: 768px) {
    .category-tag {
        padding: 5px 12px !important;
        font-size:14px !important;
        margin: 0 !important;
    }

}

.category-tag:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

.category-tag.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.quotes-list {
    margin-top: 30px;
}


/* СТИЛИ ДЛЯ ОСОБОЙ КАРТОЧКИ ОСНОВАТЕЛЯ */
.psychologist-card.founder-card {
    border: 3px solid #00b894;
    box-shadow: 0 0 30px rgba(0, 184, 148, 0.3);
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #f8fffe 100%);
    animation: founder-pulse 3s infinite;
}

@keyframes founder-pulse {
    0% { box-shadow: 0 0 0 0 rgba(0, 184, 148, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(0, 184, 148, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 184, 148, 0); }
}

.founder-card:hover {
    animation: founder-hover 0.5s forwards;
    border-color: #00a085;
}

@keyframes founder-hover {
    0% { transform: translateY(0) scale(1); }
    100% { transform: translateY(-15px) scale(1.02); }
}

/* БЕЙДЖ ОСНОВАТЕЛЯ */
.founder-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, #00b894, #00a085);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(0, 184, 148, 0.4);
    z-index: 10;
    animation: badge-shake 2s infinite;
}

@keyframes badge-shake {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(2deg); }
    75% { transform: rotate(-2deg); }
}

/* ОСОБЫЕ ФИЧИ ОСНОВАТЕЛЯ */
.founder-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.founder-feature {
    background: linear-gradient(135deg, #00b894, #00a085);
    color: white;
    padding: 10px 15px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 3px 10px rgba(0, 184, 148, 0.3);
    transition: all 0.3s ease;
}

.founder-feature:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 184, 148, 0.5);
}

/* ОСОБАЯ КНОПКА ДЛЯ ОСНОВАТЕЛЯ */
.founder-btn {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    border: none;
    padding: 15px 25px;
    border-radius: 25px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(255, 107, 107, 0.4);
    text-decoration: none;
    display: inline-block;
    text-align: center;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.founder-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.6);
}

.founder-btn::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: rotate(45deg);
    animation: founder-shine 3s infinite;
}

@keyframes founder-shine {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

/* АДАПТИВНОСТЬ */
@media (max-width: 768px) {
    .founder-badge {
        top: 5px;
        right: 5px;
        font-size: 0.7rem;
        padding: 6px 12px;
    }
    
    .founder-feature {
        padding: 8px 12px;
        font-size: 0.8rem;
    }
    
    .founder-card:hover {
        transform: translateY(-5px);
    }
}

/* СТИЛИ ДЛЯ ОСОБОЙ КАРТОЧКИ ОСНОВАТЕЛЯ */
.psychologist-card.founder-card {
    border: 3px solid #00b894;
    box-shadow: 0 0 30px rgba(0, 184, 148, 0.3);
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #f8fffe 100%);
    animation: founder-pulse 3s infinite;
}

@keyframes founder-pulse {
    0% { box-shadow: 0 0 0 0 rgba(0, 184, 148, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(0, 184, 148, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 184, 148, 0); }
}

.founder-card:hover {
    animation: founder-hover 0.5s forwards;
    border-color: #00a085;
}

@keyframes founder-hover {
    0% { transform: translateY(0) scale(1); }
    100% { transform: translateY(-15px) scale(1.02); }
}

/* БЕЙДЖ ОСНОВАТЕЛЯ */
.founder-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #00b894, #00a085);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(0, 184, 148, 0.4);
    z-index: 10;
    animation: badge-shake 2s infinite;
}

@keyframes badge-shake {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(2deg); }
    75% { transform: rotate(-2deg); }
}

/* ОСОБЫЕ ФИЧИ ОСНОВАТЕЛЯ */
.founder-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.founder-feature {
    background: linear-gradient(135deg, #00b894, #00a085);
    color: white;
    padding: 10px 15px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 3px 10px rgba(0, 184, 148, 0.3);
    transition: all 0.3s ease;
}

.founder-feature:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 184, 148, 0.5);
}

/* ЗЕЛЕНЫЕ КНОПКИ ДЛЯ VIP - 100% ШИРИНА */
.vip-contact-btn {
    background: linear-gradient(135deg, #00b894, #00a085);
    color: white;
    border: none;
    padding: 18px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(0, 184, 148, 0.4);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: block;
    text-align: center;
    margin: 10px 0;
    width: 100%;
}

.vip-contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 184, 148, 0.6);
}

.vip-contact-btn::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: rotate(45deg);
    animation: vip-shine 3s infinite;
}

@keyframes vip-shine {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

/* АНИМАЦИЯ ЗАГРУЗКИ */
.loading-dots {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

.loading-dots div {
    position: absolute;
    top: 33px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #00b894;
    animation-timing-function: cubic-bezier(0, 1, 1, 0);
}

.loading-dots div:nth-child(1) {
    left: 8px;
    animation: loading-dots1 0.6s infinite;
}

.loading-dots div:nth-child(2) {
    left: 8px;
    animation: loading-dots2 0.6s infinite;
}

.loading-dots div:nth-child(3) {
    left: 32px;
    animation: loading-dots2 0.6s infinite;
}

.loading-dots div:nth-child(4) {
    left: 56px;
    animation: loading-dots3 0.6s infinite;
}

@keyframes loading-dots1 {
    0% { transform: scale(0); }
    100% { transform: scale(1); }
}

@keyframes loading-dots3 {
    0% { transform: scale(1); }
    100% { transform: scale(0); }
}

@keyframes loading-dots2 {
    0% { transform: translate(0, 0); }
    100% { transform: translate(24px, 0); }
}

/* БЛОК КОНТАКТОВ ПОСЛЕ ОТПРАВКИ - 100% ШИРИНА */
.contacts-reveal {
    background: linear-gradient(135deg, #00b894, #00a085);
    color: white;
    padding: 30px 20px;
    border-radius: 20px;
    margin: 20px 0;
    text-align: center;
    animation: contacts-pulse 2s infinite;
    box-shadow: 0 10px 30px rgba(0, 184, 148, 0.4);
    width: 100%;
    box-sizing: border-box;
}

@keyframes contacts-pulse {
    0% { box-shadow: 0 0 0 0 rgba(0, 184, 148, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(0, 184, 148, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 184, 148, 0); }
}

.contact-item {
    margin: 15px 0;
    font-size: 1.1rem;
}

.contact-btn {
    background: white;
    color: #00b894;
    border: none;
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    margin: 5px;
    transition: all 0.3s ease;
    min-width: 180px;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,255,255,0.3);
}

/* ОСОБАЯ КНОПКА ДЛЯ ОСНОВАТЕЛЯ */
.founder-btn {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    border: none;
    padding: 15px 25px;
    border-radius: 25px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(255, 107, 107, 0.4);
    text-decoration: none;
    display: block;
    text-align: center;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    width: 100%;
    margin-top: 15px;
}

.founder-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.6);
}

.founder-btn::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: rotate(45deg);
    animation: founder-shine 3s infinite;
}

@keyframes founder-shine {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

/* АДАПТИВНОСТЬ */
@media (max-width: 768px) {
    .founder-badge {
        top: 10px;
        right: 10px;
        font-size: 0.7rem;
        padding: 6px 12px;
    }
    
    .founder-feature {
        padding: 8px 12px;
        font-size: 0.8rem;
    }
    
    .founder-card:hover {
        transform: translateY(-5px);
    }
    
    .vip-contact-btn {
        padding: 16px 15px;
        font-size: 1rem;
        border-radius: 20px;
    }
    
    .contacts-reveal {
        padding: 25px 15px;
    }
    
    .contact-btn {
        display: block;
        width: 100%;
        margin: 8px 0;
        padding: 14px 20px;
    }
    
    .founder-btn {
        padding: 14px 20px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .vip-contact-btn {
        padding: 14px 12px;
        font-size: 0.95rem;
    }
    
    .contacts-reveal {
        padding: 20px 12px;
    }
    
    .contact-item {
        font-size: 1rem;
    }
}

 
