/*
Theme Name: MoneySocial
Theme URI: https://example.com/moneysocial
Author: Ваше имя
Author URI: https://example.com
Description: Тема для сайта обзора систем заработка в соцсетях и других способах онлайн-заработка
Version: 1.0.0
License: GPL v2 or later
Text Domain: moneysocial
Tags: двухколоночный, кастомное меню, виджеты, адаптивный, социальные сети
*/

/* ============================================
   RESET AND BASE STYLES
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f7f9fc;
    color: #333;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

#page {
    flex: 1;
}

.container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    flex: 1;
}

/* ============================================
   HEADER STYLES
   ============================================ */

.site-header {
    background: linear-gradient(135deg, #2c3e50, #4a6491);
    color: white;
    padding: 20px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Логотип */
.logo a {
    font-size: 28px;
    font-weight: 700;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: opacity 0.3s;
}

.logo a:hover {
    opacity: 0.9;
}

.logo i {
    color: #4CAF50;
    margin-right: 10px;
    font-size: 32px;
}

/* Навигация */
.main-navigation {
    display: flex;
    align-items: center;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
    margin-left: 15px;
}

.menu-toggle i {
    font-size: 28px;
}

#primary-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

#primary-menu li {
    margin-left: 25px;
    position: relative;
}

#primary-menu li:first-child {
    margin-left: 0;
}

#primary-menu li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s;
    padding: 8px 0;
    display: block;
}

#primary-menu li a:hover {
    color: #4CAF50;
}

/* ============================================
   MAIN CONTENT AREA
   ============================================ */

.site-main {
    flex: 1;
    padding: 30px 20px 30px 0;
    width: calc(100% - 320px);
}

.content-wrapper {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

/* Заголовки */
.page-title,
h1.entry-title,
h1.page-title {
    color: #2c3e50;
    margin-bottom: 25px;
    font-size: 32px;
    border-bottom: 2px solid #4CAF50;
    padding-bottom: 15px;
    font-weight: 700;
}

/* Вступление */
.intro {
    margin-bottom: 35px;
    font-size: 17px;
    color: #555;
    line-height: 1.7;
}

/* ============================================
   REVIEW CARDS GRID
   ============================================ */

.review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.review-card {
    border: 1px solid #eaeaea;
    border-radius: 10px;
    padding: 25px;
    transition: all 0.3s ease;
    background-color: #fdfdfd;
    position: relative;
    overflow: hidden;
}

.review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
    border-color: #4CAF50;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.review-title {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
    flex: 1;
}

.review-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}

.review-title a:hover {
    color: #4CAF50;
}

.rating {
    color: #FFC107;
    font-size: 16px;
    margin-left: 10px;
    white-space: nowrap;
}

.review-description {
    color: #666;
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.6;
}

/* Теги */
.platform-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.tag {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    transition: transform 0.2s;
}

.tag:hover {
    transform: scale(1.05);
}

.tag i {
    margin-right: 5px;
    font-size: 12px;
}

.earn-tag {
    background-color: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #c8e6c9;
}

.payment-tag {
    background-color: #f3e5f5;
    color: #7b1fa2;
    border: 1px solid #e1bee7;
}

.social-tag {
    background-color: #e3f2fd;
    color: #1565c0;
    border: 1px solid #bbdefb;
}

/* Кнопка */
.visit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    padding: 10px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    text-align: center;
    min-width: 140px;
}

.visit-btn:hover {
    background: linear-gradient(135deg, #45a049, #3d8b40);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(76, 175, 80, 0.3);
}

/* ============================================
   SIDEBAR STYLES
   ============================================ */

.widget-area {
    width: 320px;
    padding: 30px 0 30px 20px;
}

.sidebar-widget {
    background: white;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.sidebar-widget:hover {
    transform: translateY(-3px);
}

.widget-title,
.wp-block-heading {
    font-size: 18px;
    margin-bottom: 20px;
    color: #2c3e50;
    border-bottom: 1px solid #eee;
    padding-bottom: 12px;
    font-weight: 600;
}

/* Популярные записи */
.popular-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.popular-list li {
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px dashed #eee;
    transition: padding-left 0.3s;
}

.popular-list li:hover {
    padding-left: 5px;
}

.popular-list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.popular-list a {
    color: #444;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: color 0.3s;
    font-size: 15px;
}

.popular-list a:hover {
    color: #4CAF50;
}

.popular-list i {
    margin-right: 10px;
    color: #4CAF50;
    font-size: 14px;
}

/* Социальные иконки */
.social-icons {
    display: flex;
    justify-content: space-around;
    margin-top: 10px;
    flex-wrap: wrap;
    gap: 10px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    color: white;
    font-size: 20px;
    transition: all 0.3s;
    text-decoration: none;
}

.social-icons a:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.facebook { background-color: #3b5998; }
.telegram { background-color: #0088cc; }
.youtube { background-color: #ff0000; }
.vk { background-color: #4a76a8; }

/* Платежные системы */
.payment-systems {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.payment-tag {
    padding: 8px 12px;
    background: #f0f7ff;
    border-radius: 6px;
    display: flex;
    align-items: center;
    font-size: 13px;
    font-weight: 500;
    color: #003087;
    border: 1px solid #d1e3ff;
}

.payment-tag i {
    margin-right: 6px;
    font-size: 14px;
}

/* Форма подписки */
.wp-block-search {
    margin-bottom: 0;
}

.wp-block-search__inside-wrapper {
    display: flex;
    flex-wrap: nowrap;
}

.wp-block-search__input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px 0 0 6px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s;
}

.wp-block-search__input:focus {
    border-color: #4CAF50;
}

.wp-block-search__button {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 0 6px 6px 0;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.wp-block-search__button:hover {
    background: linear-gradient(135deg, #45a049, #3d8b40);
}

/* Стили для виджетов WordPress */
.wp-block-latest-posts__list,
.wp-block-categories-list,
.wp-block-archives-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.wp-block-latest-posts__list li,
.wp-block-categories-list li,
.wp-block-archives-list li {
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px dashed #eee;
}

.wp-block-latest-posts__list li:last-child,
.wp-block-categories-list li:last-child,
.wp-block-archives-list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.wp-block-latest-posts__post-title,
.wp-block-categories-list a,
.wp-block-archives-list a {
    color: #444;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 15px;
    display: block;
}

.wp-block-latest-posts__post-title:hover,
.wp-block-categories-list a:hover,
.wp-block-archives-list a:hover {
    color: #4CAF50;
}

/* Комментарии */
.wp-block-latest-comments {
    list-style: none;
    margin: 0;
    padding: 0;
}

.wp-block-latest-comments__comment {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px dashed #eee;
}

.wp-block-latest-comments__comment:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.wp-block-latest-comments__comment-meta a {
    color: #4CAF50;
    text-decoration: none;
    font-size: 14px;
}

.wp-block-latest-comments__comment-meta a:hover {
    text-decoration: underline;
}

/* ============================================
   FOOTER STYLES
   ============================================ */

.site-footer {
    background-color: #2c3e50;
    color: #ddd;
    padding: 50px 0 20px;
    margin-top: 50px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
    min-width: 250px;
    margin-bottom: 30px;
    padding-right: 30px;
}

.footer-title {
    font-size: 18px;
    margin-bottom: 25px;
    color: white;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: #4CAF50;
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #bbb;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 15px;
    display: inline-block;
    padding: 2px 0;
}

.footer-links a:hover {
    color: #4CAF50;
    transform: translateX(5px);
}

.copyright {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid #3a4d66;
    color: #aaa;
    font-size: 14px;
    line-height: 1.5;
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */

@media (max-width: 1100px) {
    .site-main {
        width: calc(100% - 300px);
    }
    
    .widget-area {
        width: 300px;
    }
}

@media (max-width: 992px) {
    .container {
        flex-direction: column;
    }
    
    .site-main {
        width: 100%;
        padding-right: 0;
    }
    
    .widget-area {
        width: 100%;
        padding-left: 0;
        padding-top: 0;
    }
    
    .review-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .main-navigation {
        width: 100%;
        margin-top: 15px;
        justify-content: space-between;
    }
    
    .menu-toggle {
        display: block;
    }
    
    #primary-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        margin-top: 15px;
        background-color: rgba(0, 0, 0, 0.1);
        padding: 15px;
        border-radius: 8px;
    }
    
    #primary-menu.active {
        display: flex;
    }
    
    #primary-menu li {
        margin: 0;
        width: 100%;
    }
    
    #primary-menu li a {
        padding: 12px 15px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    #primary-menu li:last-child a {
        border-bottom: none;
    }
    
    .review-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .content-wrapper {
        padding: 20px;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .footer-column {
        padding-right: 0;
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .header-container,
    .container,
    .footer-container {
        padding: 0 10px;
    }
    
    .site-main {
        padding: 20px 0;
    }
    
    .content-wrapper {
        padding: 15px;
    }
    
    .review-card {
        padding: 20px;
    }
    
    .page-title,
    h1.entry-title,
    h1.page-title {
        font-size: 26px;
    }
    
    .site-footer {
        padding: 40px 0 20px;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.text-center {
    text-align: center;
}

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

.p-20 {
    padding: 20px;
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.review-card {
    animation: fadeInUp 0.5s ease-out;
}

.review-card:nth-child(2) {
    animation-delay: 0.1s;
}

.review-card:nth-child(3) {
    animation-delay: 0.2s;
}

/* ============================================
   FIX FOR WORDPRESS DEFAULT STYLES
   ============================================ */

/* Сброс стилей для контейнеров WordPress */
.wp-block-group__inner-container,
.wp-block-group {
    margin: 0 !important;
    padding: 0 !important;
}

/* Убираем стандартные отступы WordPress */
.aligncenter,
.alignleft,
.alignright {
    margin: 0;
}

/* Фикс для стандартных виджетов */
.widget_block {
    margin-bottom: 10px;
}

/* Убираем лишние стили для ссылок */
a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}


/* ============================================
   SINGLE POST STYLES
   ============================================ */

.review-single {
    max-width: 100%;
}

.entry-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #eaeaea;
}

.entry-title {
    color: #2c3e50;
    font-size: 32px;
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.3;
}

.entry-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 14px;
    color: #666;
    margin-top: 15px;
}

.entry-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.entry-meta i {
    color: #4CAF50;
    font-size: 16px;
}

.post-thumbnail {
    margin: 25px 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.post-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s;
}

.post-thumbnail:hover img {
    transform: scale(1.02);
}

.entry-content {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 40px;
}

.entry-content p {
    margin-bottom: 20px;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
    color: #2c3e50;
    margin: 30px 0 20px;
    font-weight: 600;
}

.entry-content h2 {
    font-size: 26px;
    border-left: 4px solid #4CAF50;
    padding-left: 15px;
}

.entry-content h3 {
    font-size: 22px;
}

.entry-content ul,
.entry-content ol {
    margin: 20px 0;
    padding-left: 25px;
}

.entry-content li {
    margin-bottom: 10px;
}

.entry-content blockquote {
    border-left: 4px solid #4CAF50;
    padding: 20px 30px;
    margin: 30px 0;
    background-color: #f9f9f9;
    font-style: italic;
    color: #555;
    font-size: 18px;
    line-height: 1.6;
}

.post-tags {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    margin-top: 40px;
    border: 1px solid #eaeaea;
}

.post-categories,
.post-tags-list {
    margin-bottom: 15px;
}

.post-categories:last-child,
.post-tags-list:last-child {
    margin-bottom: 0;
}

.post-categories strong,
.post-tags-list strong {
    color: #2c3e50;
    margin-right: 10px;
    font-weight: 600;
}

.post-categories a,
.post-tags-list a {
    display: inline-block;
    background-color: #e8f5e9;
    color: #2e7d32;
    padding: 5px 12px;
    border-radius: 20px;
    margin: 0 5px 5px 0;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s;
}

.post-categories a:hover,
.post-tags-list a:hover {
    background-color: #4CAF50;
    color: white;
    transform: translateY(-2px);
}

/* Навигация по постам */
.post-navigation {
    display: flex;
    justify-content: space-between;
    margin: 40px 0;
    padding: 25px;
    background-color: #f8f9fa;
    border-radius: 10px;
    border: 1px solid #eaeaea;
}

.nav-previous,
.nav-next {
    flex: 1;
}

.nav-previous {
    text-align: left;
}

.nav-next {
    text-align: right;
}

.nav-subtitle {
    display: block;
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

.nav-title {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    transition: color 0.3s;
}

.nav-title:hover {
    color: #4CAF50;
}

/* Комментарии */
.comments-area {
    margin-top: 50px;
    padding: 30px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.comments-title,
.comment-reply-title {
    color: #2c3e50;
    font-size: 24px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #4CAF50;
}

.comment-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.comment {
    margin-bottom: 30px;
    padding: 25px;
    background-color: #f8f9fa;
    border-radius: 10px;
    border: 1px solid #eaeaea;
}

.comment-author {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.avatar {
    border-radius: 50%;
    margin-right: 15px;
    width: 60px;
    height: 60px;
}

.comment-meta {
    flex: 1;
}

.comment-metadata {
    font-size: 14px;
    color: #666;
    margin-top: 5px;
}

.comment-content {
    line-height: 1.7;
    color: #444;
}

.reply {
    margin-top: 15px;
}

.comment-reply-link {
    display: inline-block;
    background-color: #4CAF50;
    color: white;
    padding: 8px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.comment-reply-link:hover {
    background-color: #45a049;
    transform: translateY(-2px);
}

/* Форма комментариев */
.comment-form {
    margin-top: 30px;
}

.comment-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    margin-bottom: 20px;
    transition: border-color 0.3s;
}

.comment-form input:focus,
.comment-form textarea:focus {
    border-color: #4CAF50;
    outline: none;
}

.comment-form .submit {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.comment-form .submit:hover {
    background: linear-gradient(135deg, #45a049, #3d8b40);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(76, 175, 80, 0.3);
}
/* ============================================
   REVIEW CARD ENHANCEMENTS
   ============================================ */

.review-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
}

.review-thumbnail {
    position: relative;
    height: 200px;
    overflow: hidden;
    border-radius: 10px 10px 0 0;
}

.review-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.review-card:hover .review-image {
    transform: scale(1.05);
}

.difficulty-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: white;
    z-index: 2;
}

.difficulty-badge.beginner {
    background-color: #4CAF50;
}

.difficulty-badge.intermediate {
    background-color: #FF9800;
}

.difficulty-badge.advanced {
    background-color: #F44336;
}

.review-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.review-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 15px 0;
    padding: 15px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
 
}

.meta-item i {
    color: #4CAF50;
    font-size: 16px;
}

.rating-value {
    margin-left: 8px;
    font-weight: 600;
    color: #FF9800;
    font-size: 16px;
}

.review-footer {
    display: block;
    gap: 10px;
    margin-top: auto;
    padding-top: 20px;
}

.external-btn {
    display: block;
    align-items: center;
    justify-content: center;
    background: #f0f7ff;
    color: #1565c0;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
    border: 1px solid #d1e3ff;
    gap: 8px;
    flex: 1;
	width: 100%;
	margin-bottom: 5px;
}

.external-btn:hover {
    background: #1565c0;
    color: white;
    transform: translateY(-2px);
}

.visit-btn {
    display: block;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    gap: 8px;
    flex: 2;
	text-align: left;
}

.visit-btn:hover {
    background: linear-gradient(135deg, #45a049, #3d8b40);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(76, 175, 80, 0.3);
}

/* ============================================
   REVIEW FILTERS
   ============================================ */

.review-filters {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    margin: 25px 0;
    border: 1px solid #eaeaea;
}

.filter-section h3 {
    color: #2c3e50;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.filter-group {
    margin-bottom: 20px;
}

.filter-group:last-child {
    margin-bottom: 0;
}

.filter-group strong {
    display: block;
    margin-bottom: 10px;
    color: #555;
    font-size: 16px;
}

.filter-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-tag {
    display: inline-flex;
    align-items: center;
    background: white;
    color: #444;
    padding: 8px 15px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
    border: 1px solid #ddd;
    gap: 8px;
}

.filter-tag:hover {
    background: #4CAF50;
    color: white;
    border-color: #4CAF50;
    transform: translateY(-2px);
}

.filter-tag i {
    font-size: 16px;
}

/* ============================================
   SINGLE REVIEW PAGE
   ============================================ */

.review-details {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    margin: 30px 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
    gap: 20px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.detail-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e8f5e9;
    border-radius: 10px;
    color: #4CAF50;
    font-size: 24px;
}

.detail-content h4 {
    margin: 0 0 5px 0;
    color: #2c3e50;
    font-size: 16px;
    font-weight: 600;
}

.detail-content p {
    margin: 0;
    color: #666;
    font-size: 18px;
    font-weight: 700;
}

/* ============================================
   RESPONSIVE ENHANCEMENTS
   ============================================ */

@media (max-width: 768px) {
    .review-footer {
        flex-direction: column;
    }
    
    .external-btn,
    .visit-btn {
        width: 100%;
        text-align: center;
    }
    
    .review-filters {
        padding: 20px;
    }
    
    .filter-tag {
        padding: 6px 12px;
        font-size: 13px;
    }
    
    .detail-item {
        padding: 12px;
    }
    
    .detail-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .review-grid {
        grid-template-columns: 1fr;
    }
    
    .review-meta {
        flex-direction: column;
        gap: 10px;
    }
}

/* ============================================
   SINGLE REVIEW PAGE - COMPACT DETAILS
   ============================================ */

.review-details {
    background: linear-gradient(135deg, #f8f9fa 0%, #f0f7ff 100%);
    padding: 20px;
    border-radius: 12px;
    margin: 25px 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100%, 1fr)); 
    gap: 15px;
    border: 1px solid #e3f2fd;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.detail-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-color: #4CAF50;
}

.detail-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #4CAF50, #2196F3);
}

.detail-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
    border-radius: 12px;
    color: #2e7d32;
    font-size: 20px;
    transition: all 0.3s;
}

.detail-item:hover .detail-icon {
    transform: scale(1.1) rotate(5deg);
}

.detail-content {
    flex: 1;
    min-width: 0;
}

.detail-content h4 {
    margin: 0 0 5px 0;
    color: #2c3e50;
    font-size: 14px;
    font-weight: 600;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.detail-content p {
    margin: 0;
    color: #1565c0;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    overflow-wrap: break-word;
}

.detail-content a {
    color: #1565c0;
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 10px;
    background: #e3f2fd;
    border-radius: 6px;
    transition: all 0.3s;
}

.detail-content a:hover {
    color: white;
    background: #2196F3;
    transform: translateY(-2px);
}

/* Специальные стили для разных типов иконок */
.detail-item:nth-child(1) .detail-icon {
    background: linear-gradient(135deg, #fce4ec, #f8bbd9);
    color: #c2185b;
}

.detail-item:nth-child(2) .detail-icon {
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    color: #1565c0;
}

.detail-item:nth-child(3) .detail-icon {
    background: linear-gradient(135deg, #f3e5f5, #e1bee7);
    color: #7b1fa2;
}

.detail-item:nth-child(4) .detail-icon {
    background: linear-gradient(135deg, #fff8e1, #ffecb3);
    color: #ff8f00;
}

.detail-item:nth-child(5) .detail-icon {
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
    color: #2e7d32;
}

/* Стили для конкретных иконок */
.detail-icon .fa-hashtag {
    color: #E1306C; /* Instagram цвет */
}

.detail-icon .fa-wallet {
    color: #FF6B00; /* WebMoney цвет */
}

.detail-icon .fa-money-bill-wave {
    color: #4CAF50; /* Деньги */
}

.detail-icon .fa-external-link-alt {
    color: #2196F3; /* Ссылка */
}

.detail-icon .fa-chart-line {
    color: #FF9800; /* Доход */
}

.detail-icon .fa-tasks {
    color: #9C27B0; /* Сложность */
}

/* ============================================
   BEAUTIFUL FILTERS
   ============================================ */

.review-filters {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 25px;
    border-radius: 15px;
    margin: 30px 0;
    border: 1px solid #eaeaea;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.review-filters::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, #4CAF50, #2196F3);
}

.filter-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #eaeaea;
}

.filter-header h3 {
    margin: 0;
    color: #2c3e50;
    font-size: 20px;
    font-weight: 700;
}

.filter-header i {
    color: #4CAF50;
    font-size: 24px;
    background: #e8f5e9;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.filter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.filter-group {
    background: white;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #eaeaea;
    transition: all 0.3s;
}

.filter-group:hover {
    border-color: #4CAF50;
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.1);
    transform: translateY(-3px);
}

.filter-group-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    padding-bottom: 12px;
    border-bottom: 1px solid #eee;
}

.filter-group-header strong {
    color: #2c3e50;
    font-size: 16px;
    font-weight: 600;
    flex: 1;
}

.filter-group-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    border-radius: 10px;
    color: #1565c0;
    font-size: 18px;
}

.filter-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-tag {
    display: inline-flex;
    align-items: center;
    background: white;
    color: #444;
    padding: 10px 18px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
    border: 2px solid #eaeaea;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.filter-tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #4CAF50, #2196F3);
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 1;
}

.filter-tag i,
.filter-tag span {
    position: relative;
    z-index: 2;
}

.filter-tag:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.2);
    border-color: transparent;
    color: white;
}

.filter-tag:hover::before {
    opacity: 1;
}

.filter-tag i {
    font-size: 16px;
    transition: transform 0.3s;
}

.filter-tag:hover i {
    transform: scale(1.2);
}

/* Активный фильтр */
.filter-tag.active {
    background: linear-gradient(135deg, #4CAF50, #2196F3);
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 10px rgba(76, 175, 80, 0.3);
}

/* Цвета для разных фильтров */
.filter-tag.social-filter:hover,
.filter-tag.social-filter.active {
    background: linear-gradient(135deg, #E1306C, #833AB4); /* Instagram градиент */
}

.filter-tag.payment-filter:hover,
.filter-tag.payment-filter.active {
    background: linear-gradient(135deg, #FF6B00, #FF9800); /* WebMoney градиент */
}

.filter-tag.earning-filter:hover,
.filter-tag.earning-filter.active {
    background: linear-gradient(135deg, #4CAF50, #2e7d32); /* Заработок градиент */
}

/* ============================================
   COMPACT VERSION ДЛЯ МОБИЛЬНЫХ
   ============================================ */

@media (max-width: 768px) {
    .review-details {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 15px;
    }
    
    .detail-item {
        padding: 12px;
        gap: 12px;
    }
    
    .detail-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 18px;
        border-radius: 10px;
    }
    
    .detail-content h4 {
        font-size: 13px;
    }
    
    .detail-content p {
        font-size: 15px;
    }
    
    .review-filters {
        padding: 20px;
    }
    
    .filter-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .filter-tag {
        padding: 8px 15px;
        font-size: 13px;
    }
    
    .filter-group {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .review-details {
        padding: 12px;
    }
    
    .detail-item {
        padding: 10px;
    }
    
    .filter-tag {
        padding: 6px 12px;
        font-size: 12px;
    }
    
    .filter-tag i {
        font-size: 14px;
    }
}
/* Стили для текста внутри деталей */
.social-name {
    display: inline-block;
    padding: 2px 8px;
    margin: 2px;
    background: #fce4ec;
    color: #c2185b;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
}

.payment-name {
    display: inline-block;
    padding: 2px 8px;
    margin: 2px;
    background: #e3f2fd;
    color: #1565c0;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
}

.withdrawal-amount {
    color: #4CAF50;
    font-weight: 700;
    font-size: 18px;
}

.income-amount {
    color: #FF9800;
    font-weight: 700;
    font-size: 18px;
}

.difficulty-text .difficulty-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: white;
}

.difficulty-text .beginner {
    background: linear-gradient(135deg, #4CAF50, #81c784);
}

.difficulty-text .intermediate {
    background: linear-gradient(135deg, #FF9800, #ffb74d);
}

.difficulty-text .advanced {
    background: linear-gradient(135deg, #f44336, #e57373);
}

.site-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 15px;
    background: linear-gradient(135deg, #2196F3, #1976D2);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
}

.site-link:hover {
    background: linear-gradient(135deg, #1976D2, #0d47a1);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(33, 150, 243, 0.3);
}

/* Счетчики в фильтрах */
.filter-count {
    font-size: 12px;
    opacity: 0.8;
    margin-left: 3px;
}

/* Анимация для карточек */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.review-card {
    animation: fadeIn 0.6s ease-out;
}

/* Тени и градиенты */
.filter-tag {
    background: white;
    box-shadow: 0 3px 6px rgba(0,0,0,0.08);
}

.filter-tag:hover {
    box-shadow: 0 8px 16px rgba(76, 175, 80, 0.2);
}

/* Цветные тени для разных типов фильтров */
.social-filter:hover {
    box-shadow: 0 8px 16px rgba(225, 48, 108, 0.2);
}

.payment-filter:hover {
    box-shadow: 0 8px 16px rgba(255, 107, 0, 0.2);
}

.earning-filter:hover {
    box-shadow: 0 8px 16px rgba(76, 175, 80, 0.2);
}

/* Плавные переходы */
.review-details,
.filter-grid,
.review-filters {
    transition: all 0.3s ease;
}

/* Стили для активного состояния */
.detail-item:active {
    transform: scale(0.98);
}

.filter-tag:active {
    transform: scale(0.95);
}
/* ============================================
   CATEGORY HERO BLOCK
   ============================================ */

.category-hero {
    display: flex;
    align-items: center;
    gap: 30px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    border: 1px solid #eaeaea;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.category-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, #4CAF50, #2196F3, #9C27B0);
}

.category-icon {
    flex-shrink: 0;
}

.icon-wrapper {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    font-size: 40px;
    color: white;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.icon-wrapper.social-bg {
    background: linear-gradient(135deg, #E1306C, #833AB4);
}

.icon-wrapper.payment-bg {
    background: linear-gradient(135deg, #FF6B00, #FF9800);
}

.icon-wrapper.earning-bg {
    background: linear-gradient(135deg, #4CAF50, #2e7d32);
}

.icon-wrapper.default-bg {
    background: linear-gradient(135deg, #607D8B, #455A64);
}

.category-info {
    flex: 1;
}

.category-title {
    color: #2c3e50;
    font-size: 32px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.category-count {
    font-size: 20px;
    color: #666;
    font-weight: 400;
    background: #e8f5e9;
    padding: 5px 15px;
    border-radius: 20px;
}

.category-description {
    color: #555;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    padding: 15px;
    background: white;
    border-radius: 10px;
    border-left: 4px solid #4CAF50;
}

.category-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
}

.category-meta .meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: white;
    border-radius: 8px;
    border: 1px solid #eaeaea;
    color: #666;
    font-size: 14px;
}

.related-categories {
    flex: 1;
    min-width: 100%;
}

.related-categories strong {
    display: block;
    margin-bottom: 10px;
    color: #2c3e50;
    font-size: 14px;
}

.related-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.related-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 15px;
    background: white;
    color: #444;
    text-decoration: none;
    border-radius: 20px;
    font-size: 14px;
    transition: all 0.3s;
    border: 1px solid #eaeaea;
    position: relative;
    overflow: hidden;
}

.related-tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #4CAF50, #2196F3);
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 1;
}

.related-tag i,
.related-tag span {
    position: relative;
    z-index: 2;
}

.related-tag:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.2);
    border-color: transparent;
    color: white;
}

.related-tag:hover::before {
    opacity: 1;
}

.tag-count {
    font-size: 12px;
    background: #f0f0f0;
    padding: 2px 8px;
    border-radius: 10px;
    color: #666;
    transition: all 0.3s;
}

.related-tag:hover .tag-count {
    background: rgba(255, 255, 255, 0.3);
    color: white;
}

/* ============================================
   INTERACTIVE DETAILS
   ============================================ */

.interactive-details .detail-item {
    cursor: default;
}

.interactive-details .clickable-item {
    cursor: pointer;
    transition: all 0.3s;
}

.interactive-details .clickable-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.clickable-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 5px;
}

.clickable-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 15px;
    text-decoration: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.clickable-tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
    transition: opacity 0.3s;
}

.clickable-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.clickable-tag.social-tag {
    background: #fce4ec;
    color: #c2185b;
    border: 1px solid #f8bbd9;
}

.clickable-tag.social-tag::before {
    background: #c2185b;
}

.clickable-tag.social-tag:hover {
    background: #c2185b;
    color: white;
    border-color: #c2185b;
}

.clickable-tag.payment-tag {
    background: #e3f2fd;
    color: #1565c0;
    border: 1px solid #bbdefb;
}

.clickable-tag.payment-tag::before {
    background: #1565c0;
}

.clickable-tag.payment-tag:hover {
    background: #1565c0;
    color: white;
    border-color: #1565c0;
}

.cta-item {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, #4CAF50, #2e7d32);
    border: none;
    color: white;
}

.cta-item::before {
    background: white;
}

.cta-item .detail-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.cta-item h4 {
    color: white;
    opacity: 0.9;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 25px;
    background: white;
    color: #2e7d32;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    /* background: #f8f9fa; */
}

.register-btn {
    min-width: 200px;
    margin-top: 10px;
}

/* ============================================
   ANIMATED CALL TO ACTION
   ============================================ */

.action-cta {
    background: linear-gradient(135deg, #1a237e, #283593, #3949ab);
    color: white;
    padding: 40px;
    border-radius: 15px;
    margin: 40px 0;
    position: relative;
    overflow: hidden;
    animation: ctaFloat 6s ease-in-out infinite;
    box-shadow: 0 10px 30px rgba(26, 35, 126, 0.3);
}

@keyframes ctaFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.action-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    right: -50%;
    bottom: -50%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    animation: ctaShine 3s infinite;
}

@keyframes ctaShine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.cta-content {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.cta-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    font-size: 40px;
    flex-shrink: 0;
    animation: ctaPulse 2s infinite;
}

@keyframes ctaPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.cta-text {
    flex: 1;
}

.cta-text h3 {
    font-size: 28px;
    margin-bottom: 10px;
    color: white;
}

.cta-text p {
    font-size: 16px;
    opacity: 0.9;
    margin: 0;
}

.main-cta-btn {
    background: linear-gradient(135deg, #FF9800, #FF5722);
    color: white;
    padding: 16px 35px;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    transition: all 0.3s;
    min-width: 200px;
    position: relative;
    overflow: hidden;
}

.main-cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.main-cta-btn:hover::before {
    left: 100%;
}

.main-cta-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 30px rgba(255, 87, 34, 0.4);
}

.btn-subtext {
    font-size: 12px;
    opacity: 0.8;
    font-weight: 400;
}

.cta-features {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
    min-width: 120px;
}

.feature i {
    font-size: 24px;
    color: #FFD740;
    margin-bottom: 5px;
}

.feature span {
    font-size: 14px;
    opacity: 0.9;
}

/* ============================================
   CLICKABLE TAXONOMIES
   ============================================ */

.clickable-taxonomies {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    margin-top: 40px;
    border: 1px solid #eaeaea;
}

.taxonomy-section {
    margin-bottom: 25px;
}

.taxonomy-section h4 {
    color: #2c3e50;
    font-size: 18px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.taxonomy-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.taxonomy-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: white;
    color: #444;
    text-decoration: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s;
    border: 1px solid #eaeaea;
    position: relative;
    overflow: hidden;
}

.taxonomy-tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #4CAF50, #2196F3);
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 1;
}

.taxonomy-tag i,
.taxonomy-tag span {
    position: relative;
    z-index: 2;
    transition: all 0.3s;
}

.taxonomy-tag .tag-arrow {
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s;
}

.taxonomy-tag:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(76, 175, 80, 0.2);
    border-color: transparent;
    color: white;
}

.taxonomy-tag:hover::before {
    opacity: 1;
}

.taxonomy-tag:hover .tag-arrow {
    opacity: 1;
    transform: translateX(0);
}

.earning-tag:hover::before {
    background: linear-gradient(135deg, #4CAF50, #2e7d32);
}

/* Похожие обзоры */
.similar-posts {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #eaeaea;
}

.similar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.similar-post {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: white;
    border-radius: 8px;
    text-decoration: none;
    color: #444;
    transition: all 0.3s;
    border: 1px solid #eaeaea;
}

.similar-post:hover {
    transform: translateX(5px);
    border-color: #4CAF50;
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.1);
}

.similar-title {
    font-weight: 500;
    flex: 1;
    margin-right: 10px;
}

.similar-rating {
    background: #FFD740;
    color: #333;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 700;
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */

@media (max-width: 768px) {
    .category-hero {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 20px;
    }
    
    .icon-wrapper {
        width: 80px;
        height: 80px;
        font-size: 32px;
    }
    
    .category-title {
        font-size: 24px;
        justify-content: center;
    }
    
    .category-meta {
        flex-direction: column;
        align-items: center;
    }
    
    .related-categories {
        min-width: 100%;
    }
    
    .cta-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .action-cta {
        padding: 25px;
    }
    
    .cta-icon {
        width: 60px;
        height: 60px;
        font-size: 30px;
    }
    
    .cta-text h3 {
        font-size: 22px;
    }
    
    .main-cta-btn {
        width: 100%;
        padding: 14px 25px;
    }
    
    .cta-features {
        gap: 15px;
    }
    
    .feature {
        min-width: 100px;
    }
}

@media (max-width: 480px) {
    .category-title {
        font-size: 20px;
    }
    
    .action-cta {
        padding: 20px;
    }
    
    .taxonomy-tag {
        width: 100%;
        justify-content: space-between;
    }
    
    .similar-grid {
        grid-template-columns: 1fr;
    }
}
.related-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: white;
    color: #444;
    text-decoration: none;
    border-radius: 20px;
    font-size: 14px;
    transition: all 0.3s;
    border: 1px solid #eaeaea;
    position: relative;
    overflow: hidden;
}

.related-tag-text {
    position: relative;
    z-index: 2;
}

.related-tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #4CAF50, #2196F3);
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 1;
}

.related-tag:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.2);
    border-color: transparent;
    color: white !important;
}

.related-tag:hover::before {
    opacity: 1;
}

.related-tag:hover .tag-count {
    background: rgba(255, 255, 255, 0.3);
    color: white;
}

/* ============================================
   FIX PLATFORM TAGS (делаем кликабельными)
   ============================================ */

.platform-tags .tag {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
    border: 1px solid;
}

.platform-tags .tag i {
    margin-right: 5px;
    font-size: 12px;
}

.platform-tags .social-tag {
    background-color: #e3f2fd;
    color: #1565c0;
    border-color: #bbdefb;
}

.platform-tags .social-tag:hover {
    background-color: #1565c0;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(21, 101, 192, 0.3);
}

.platform-tags .payment-tag {
    background-color: #f3e5f5;
    color: #7b1fa2;
    border-color: #e1bee7;
}

.platform-tags .payment-tag:hover {
    background-color: #7b1fa2;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(123, 31, 162, 0.3);
}

.platform-tags .earn-tag {
    background-color: #e8f5e9;
    color: #2e7d32;
    border-color: #c8e6c9;
}

.platform-tags .earn-tag:hover {
    background-color: #2e7d32;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(46, 125, 50, 0.3);
}

/* ============================================
   FIX CTA BUTTON (Начать сейчас - цвет текста)
   ============================================ */

.main-cta-btn {
    background: linear-gradient(135deg, #FF9800, #FF5722);
    color: white;
    padding: 16px 35px;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    transition: all 0.3s;
    min-width: 200px;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.main-cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.main-cta-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 30px rgba(255, 87, 34, 0.4);
    color: white !important;
    border-color: rgba(255, 255, 255, 0.3);
}

.main-cta-btn:hover::before {
    left: 100%;
}

.main-cta-btn .btn-subtext {
    font-size: 12px;
    opacity: 0.8;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    transition: opacity 0.3s;
}

.main-cta-btn:hover .btn-subtext {
    opacity: 1;
}

/* ============================================
   FIX CATEGORY HERO (ширина и отступы)
   ============================================ */

.category-hero {
    display: flex;
    align-items: center;
    gap: 30px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 30px;
    border-radius: 15px;
    margin: 0 0 30px 0;
    border: 1px solid #eaeaea;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    width: 100%;
}

/* Убираем отступы по бокам */
.content-wrapper {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

/* ============================================
   ADDITIONAL FIXES
   ============================================ */

/* Фикс для hover состояний */
.filter-tag:hover,
.filter-tag:active,
.filter-tag:focus {
    color: white !important;
    text-decoration: none;
}

/* Фикс для иконок в тегах */
.tag i,
.related-tag i,
.filter-tag i {
    position: relative;
    z-index: 2;
}

/* Фикс для счетчиков */
.tag-count {
    font-size: 12px;
    background: #f0f0f0;
    padding: 2px 8px;
    border-radius: 10px;
    color: #666;
    transition: all 0.3s;
    position: relative;
    z-index: 2;
}

/* Фикс для активного состояния фильтров */
.filter-tag.active {
    background: linear-gradient(135deg, #4CAF50, #2196F3);
    color: white !important;
    border-color: transparent;
    box-shadow: 0 4px 10px rgba(76, 175, 80, 0.3);
}

.filter-tag.active .filter-count {
    background: rgba(255, 255, 255, 0.3);
    color: white;
}

/* Фикс для текста в деталях обзора */
.detail-content p a {
    color: white !important;
    text-decoration: none;
}

.detail-content p a:hover {
    color: white !important;
    text-decoration: underline;
}

/* ============================================
   RESPONSIVE FIXES
   ============================================ */

@media (max-width: 768px) {
    .category-hero {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 20px;
        margin: 0 0 20px 0;
    }
    
    .platform-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin-bottom: 20px;
    }
    
    .platform-tags .tag {
        padding: 5px 12px;
        font-size: 12px;
    }
    
    .main-cta-btn {
        width: 100%;
        padding: 14px 25px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .category-hero {
        padding: 15px;
    }
    
    .platform-tags {
        gap: 6px;
    }
    
    .platform-tags .tag {
        padding: 4px 10px;
        font-size: 11px;
    }
    
    .main-cta-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
}
/* Фикс для текста в CTA кнопке */
.main-cta-btn .btn-text {
    color: white;
    font-weight: 700;
    transition: color 0.3s;
}

.main-cta-btn:hover .btn-text {
    color: white !important;
}
.taxonomy-tag:hover p {
    color: #fff;
    z-index: 10;
}
/* ============================================
   VERIFICATION BADGES
   ============================================ */

.verification-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-left: 10px;
}

.verification-badge.admin-verified {
    background: linear-gradient(135deg, #4CAF50, #2e7d32);
    color: white;
    border: 1px solid #2e7d32;
}

.verification-badge.user-verified {
    background: linear-gradient(135deg, #FF9800, #F57C00);
    color: white;
    border: 1px solid #F57C00;
}

.verification-badge.unverified {
    background: linear-gradient(135deg, #9E9E9E, #616161);
    color: white;
    border: 1px solid #616161;
}

.verification-badge i {
    font-size: 14px;
}

/* ============================================
   USER VERIFICATION WIDGET
   ============================================ */

.user-verification-widget {
    background: linear-gradient(135deg, #f8f9fa 0%, #e3f2fd 100%);
    padding: 25px;
    border-radius: 15px;
    margin: 25px 0;
    border: 1px solid #bbdefb;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.verification-header h4 {
    color: #1565c0;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.verification-header p {
    color: #666;
    font-size: 14px;
    margin: 0;
}

.verification-stats {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: #4CAF50;
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 14px;
    color: #666;
    margin-top: 5px;
}

.verify-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px 30px;
    background: linear-gradient(135deg, #4CAF50, #2e7d32);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    gap: 5px;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.verify-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.4);
    background: linear-gradient(135deg, #2e7d32, #1b5e20);
}

.verify-btn i {
    font-size: 24px;
}

.verify-btn .btn-subtext {
    font-size: 12px;
    opacity: 0.9;
    font-weight: 400;
}

.verification-result {
    margin-top: 15px;
    padding: 10px;
    border-radius: 8px;
    font-size: 14px;
    text-align: center;
    display: none;
}

.verification-result.success {
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #c8e6c9;
    display: block;
}

.verification-result.error {
    background: #ffebee;
    color: #c62828;
    border: 1px solid #ffcdd2;
    display: block;
}

/* ============================================
   MODAL WINDOW FOR TAXONOMY DETAILS
   ============================================ */

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    padding: 20px;
}

.modal-content {
    background: white;
    border-radius: 15px;
    max-width: 500px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    color: #666;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
}

.modal-close:hover {
    background: #f5f5f5;
    color: #333;
}

.modal-header {
    padding: 30px 30px 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 15px;
}

.modal-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 24px;
    color: white;
}

.modal-icon.social {
    background: linear-gradient(135deg, #E1306C, #833AB4);
}

.modal-icon.payment {
    background: linear-gradient(135deg, #FF6B00, #FF9800);
}

.modal-title {
    margin: 0;
    color: #2c3e50;
    font-size: 24px;
}

.modal-body {
    padding: 20px 30px;
}

.modal-description {
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 15px;
}

.modal-links {
    margin-bottom: 20px;
}

.modal-link-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 3px solid #4CAF50;
}

.modal-link-item i {
    color: #4CAF50;
    font-size: 16px;
    width: 20px;
}

.modal-link-item a {
    color: #1565c0;
    text-decoration: none;
    font-weight: 500;
    flex: 1;
}

.modal-link-item a:hover {
    text-decoration: underline;
}

.modal-link-item .link-type {
    font-size: 12px;
    color: #666;
    background: #e8f5e9;
    padding: 2px 8px;
    border-radius: 10px;
}

.modal-fees {
    padding: 15px;
    background: #fff3e0;
    border-radius: 8px;
    border-left: 3px solid #FF9800;
}

.modal-fees h4 {
    margin: 0 0 8px 0;
    color: #EF6C00;
    font-size: 16px;
}

.modal-fees p {
    margin: 0;
    color: #666;
    font-size: 14px;
}

.modal-footer {
    padding: 20px 30px;
    border-top: 1px solid #eee;
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.btn-secondary {
    padding: 10px 20px;
    background: #f5f5f5;
    color: #666;
    border: 1px solid #ddd;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: #e0e0e0;
}

.btn-primary {
    padding: 10px 20px;
    background: linear-gradient(135deg, #4CAF50, #2e7d32);
    color: white;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #2e7d32, #1b5e20);
    color: white;
    transform: translateY(-2px);
}

.btn-outline {
    padding: 10px 20px;
    background: white;
    color: #1565c0;
    border: 1px solid #1565c0;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-outline:hover {
    background: #1565c0;
    color: white;
}

/* ============================================
   TAG REF INDICATOR
   ============================================ */

.tag-ref {
    margin-left: 5px;
    color: #4CAF50;
    font-size: 10px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* ============================================
   COMMENTS SECTION
   ============================================ */

.comments-section {
    margin-top: 50px;
}

.comments-closed {
    text-align: center;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 10px;
    color: #666;
}

.comments-closed i {
    font-size: 48px;
    color: #ccc;
    margin-bottom: 20px;
}

.comments-closed h3 {
    color: #666;
    margin-bottom: 10px;
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */

@media (max-width: 768px) {
    .verification-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .verify-btn {
        width: 100%;
        padding: 12px 20px;
    }
    
    .modal-content {
        max-width: 90%;
    }
    
    .modal-footer {
        flex-direction: column;
    }
    
    .modal-footer button,
    .modal-footer a {
        width: 100%;
        text-align: center;
    }
}
.comment-awaiting-moderation {
    line-height: 41px;
}
.reply a {
    color: #fff !important;
}
.sidebar-widget {
            background: white;
            border-radius: 10px;
            padding: 20px;
            margin-bottom: 25px;
            box-shadow: 0 3px 15px rgba(0,0,0,0.05);
            border: 1px solid #f0f0f0;
        }
        
        .sidebar-widget .widget-title {
            font-size: 18px;
            margin: 0 0 20px 0;
            padding-bottom: 15px;
            border-bottom: 2px solid #4CAF50;
            color: #333;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .sidebar-widget .widget-title i {
            color: #4CAF50;
        }
        
        .terms-list {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        
        .term-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 15px;
            background: #f8f9fa;
            border-radius: 8px;
            text-decoration: none;
            color: #555;
            transition: all 0.3s ease;
            border-left: 3px solid transparent;
        }
        
        .term-item:hover {
            background: #e8f5e9;
            transform: translateX(5px);
            color: #2e7d32;
            border-left-color: #4CAF50;
        }
        
        .term-icon {
            width: 20px;
            text-align: center;
            font-size: 16px;
            color: #4CAF50;
        }
        
        .term-name {
            flex: 1;
            font-weight: 500;
            font-size: 14px;
        }
        
        .term-count {
            float: right;
            background: #e0e0e0;
            color: #666;
            font-size: 11px;
            padding: 2px 8px;
            border-radius: 10px;
            font-weight: 600;
        }
        
        /* Стили для платежных систем */
        .payment-systems-widget .term-item:hover {
            background: #e3f2fd;
            color: #1565c0;
            border-left-color: #2196F3;
        }
        
        .payment-systems-widget .term-icon {
            color: #2196F3;
        }
        
        /* Стили для типов заработка */
        .earning-types-widget .term-item:hover {
            background: #fff3e0;
            color: #ef6c00;
            border-left-color: #FF9800;
        }
        
        .earning-types-widget .term-icon {
            color: #FF9800;
        }
        
        /* Стили для социальных сетей */
        .social-networks-widget .term-item:hover {
            background: #f3e5f5;
            color: #7b1fa2;
            border-left-color: #9C27B0;
        }
        
        .social-networks-widget .term-icon {
            color: #9C27B0;
        }
        
        /* Стили для популярных обзоров */
        .reviews-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        
        .review-item {
            border-bottom: 1px solid #f0f0f0;
            padding-bottom: 12px;
        }
        
        .review-item:last-child {
            border-bottom: none;
            padding-bottom: 0;
        }
        
        .review-link {
            display: flex;
            gap: 15px;
            text-decoration: none;
            color: inherit;
            transition: opacity 0.3s;
        }
        
        .review-link:hover {
            opacity: 0.9;
        }
        
        .review-thumbnail {
            flex-shrink: 0;
            width: 60px;
            height: 60px;
            border-radius: 6px;
            overflow: hidden;
        }
        
        .review-thumbnail img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .review-content {
            flex: 1;
        }
        
        .review-title {
            font-size: 14px;
            margin: 0 0 8px 0;
            line-height: 1.4;
            color: #333;
            font-weight: 600;
        }
        
        .review-rating-small {
            font-size: 12px;
            color: #ffc107;
            margin-bottom: 5px;
        }
        
        .review-rating-small .fas.fa-star,
        .review-rating-small .fas.fa-star-half-alt {
            font-size: 11px;
        }
        
        .verification-badge {
            display: inline-block;
            font-size: 10px;
            padding: 2px 6px;
            border-radius: 3px;
        }
        
        .verification-badge.admin-verified {
            background: #e8f5e9;
            color: #2e7d32;
        }
        
        /* Сообщения об отсутствии данных */
        .no-terms,
        .no-posts {
            text-align: center;
            padding: 20px;
            color: #999;
            font-style: italic;
            background: #f9f9f9;
            border-radius: 6px;
        }
        
        /* Адаптивность */
        @media (max-width: 768px) {
            .sidebar-widget {
                padding: 15px;
                margin-bottom: 20px;
            }
            
            .term-item {
                padding: 10px 12px;
            }
            
            .review-thumbnail {
                width: 50px;
                height: 50px;
            }
        }
		
.single-review .entry-content h2 {
    color: #fff;
}