        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; background: #f5f7fa; color: #1a1a1a; line-height: 1.5; }
        .container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
        
        /* Header */
        .header { background: white; border-bottom: 1px solid #eaeef2; padding: 14px 0; position: sticky; top: 0; z-index: 100; }
        .header-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
        
        /* Логотип - телевизор 16:9 с антенной-галочкой и названием внутри */
        .logo-block {
            display: flex;
            align-items: center;
            text-decoration: none;
        }
        .logo-icon {
            width: 52px;
            height: 48px;
            position: relative;
        }
        .logo-tv {
            width: 52px;
            height: 32px;
            background: transparent;
            border-radius: 4px;
            position: relative;
            border: 1.8px solid #1a1c23;
        }
        .logo-tv .screen {
            position: absolute;
            width: 46px;
            height: 24px;
            background: transparent;
            border-radius: 2px;
            top: 4px;
            left: 3px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 8px;
            font-weight: 600;
            color: #1a1c23;
            letter-spacing: -0.2px;
            line-height: 1.1;
            text-align: center;
        }
        .logo-tv .stand {
            position: absolute;
            bottom: -6px;
            left: 18px;
            width: 16px;
            height: 3px;
            background: #1a1c23;
            border-radius: 1px;
        }
        /* Антенна-галочка: короткая левая, длинная правая */
        .logo-icon .antenna {
            position: absolute;
            top: -12px;
            left: 20px;
            width: 22px;
            height: 16px;
        }
        .logo-icon .antenna::before {
            content: '';
            position: absolute;
            width: 1.8px;
            height: 8px;
            background: #1a1c23;
            left: 0;
            top: 2px;
            transform: rotate(35deg);
        }
        .logo-icon .antenna::after {
            content: '';
            position: absolute;
            width: 1.8px;
            height: 14px;
            background: #1a1c23;
            left: 5px;
            top: 0;
            transform: rotate(55deg);
        }
        
        .nav { display: flex; gap: 24px; flex-wrap: wrap; align-items: center; }
        .nav a { color: #4a5568; text-decoration: none; font-size: 14px; font-weight: 500; }
        .nav a:hover { color: #1a1a1a; }
        
        /* Поиск в шапке */
        .header-search {
            display: flex;
            gap: 8px;
        }
        .header-search input {
            padding: 8px 12px;
            border: 1px solid #e0e6ec;
            border-radius: 8px;
            font-size: 14px;
            width: 200px;
        }
        .header-search button {
            padding: 8px 16px;
            background: #1a1a1a;
            color: white;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            font-size: 14px;
        }
        .header-search button:hover {
            background: #333;
        }
        
        /* Layout */
        .layout { display: flex; gap: 40px; flex-wrap: wrap; padding: 30px 0; }
        .main-content { flex: 2.5; min-width: 260px; }
        .sidebar { flex: 1.2; min-width: 260px; }
        
        /* Горизонтальные карточки */
        .ot-articles-material-blog-list,
        .posts-grid {
            display: flex;
            flex-direction: column;
            gap: 28px;
            margin-bottom: 40px;
        }
        
        .item-horizontal {
            display: flex;
            gap: 24px;
            background: white;
            border-radius: 16px;
            overflow: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 2px 4px rgba(0,0,0,0.04);
            padding: 20px;
            border: 1px solid #eef2f6;
        }
        
        .item-horizontal:hover {
            box-shadow: 0 12px 28px rgba(0,0,0,0.1);
            border-color: #e0e6ec;
            transform: translateY(-3px);
        }
        
        .item-horizontal__image {
            flex-shrink: 0;
            width: 240px;
        }
        
        .item-horizontal__image a {
            display: block;
            overflow: hidden;
            border-radius: 12px;
        }
        
        .item-horizontal__image img {
            width: 100%;
            height: 140px;
            object-fit: cover;
            transition: transform 0.3s ease;
        }
        
        .item-horizontal:hover .item-horizontal__image img {
            transform: scale(1.04);
        }
        
        .item-horizontal__content {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .item-horizontal__content h2 {
            font-size: 17px;
            font-weight: 600;
            margin: 0 0 10px 0;
            line-height: 1.4;
        }
        
        .item-horizontal__content h2 a {
            color: #1a1a1a;
            text-decoration: none;
        }
        
        .item-horizontal__content h2 a:hover {
            color: #E50914;
        }
        
        .item-horizontal__content p {
            font-size: 14px;
            color: #5a6e85;
            line-height: 1.5;
            margin: 0 0 12px 0;
        }
        
        .item-horizontal__meta {
            display: flex;
            gap: 16px;
            font-size: 12px;
            color: #8a9bb0;
        }
        
        /* Виджеты в сайдбаре */
        .sidebar .widget {
            background: white;
            border-radius: 14px;
            padding: 18px;
            margin-bottom: 24px;
            box-shadow: 0 1px 2px rgba(0,0,0,0.03);
        }
        
        .sidebar .widget .widget-title {
            font-size: 15px;
            font-weight: 600;
            margin-bottom: 14px;
            padding-bottom: 10px;
            border-bottom: 2px solid #eaeef2;
        }
        
        /* Облако тегов */
        .sidebar .tagcloud {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }
        .sidebar .tagcloud a {
            display: inline-block;
            background: #f0f4f8;
            color: #5a6e85;
            padding: 5px 14px;
            border-radius: 25px;
            font-size: 12px;
            text-decoration: none;
            transition: all 0.2s ease;
        }
        .sidebar .tagcloud a:hover {
            background: #e2e8f0;
            color: #1a1a1a;
        }
        
        /* Меню категорий (буквы бренда) */
        .sidebar .catmenu {
            background: white;
            width: 100%;
            display: block;
            border-radius: 12px;
            overflow: hidden;
            margin: 0;
            padding: 0;
            list-style: none;
        }
        .sidebar .catmenu li {
            list-style: none;
            margin: 0;
            padding: 0;
            border-bottom: 1px solid #eaeef2;
        }
        .sidebar .catmenu li:last-child {
            border-bottom: none;
        }
        .sidebar .catmenu li a {
            display: block;
            padding: 12px 16px;
            text-decoration: none;
            color: #4a5568;
            font-size: 14px;
            transition: all 0.2s;
        }
        .sidebar .catmenu li a:hover {
            background: #f0f4f8;
            color: #1a1a1a;
        }
        .sidebar .catmenu li.current a {
            background: #1a1a1a;
            color: white;
        }
        .sidebar .catmenu li ul {
            padding-left: 20px;
            background: #fafbfc;
        }
        .sidebar .catmenu li ul li a {
            font-size: 13px;
            padding: 10px 16px;
        }
        
        /* Пагинация */
        .pagination {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 5px;
            margin: 30px 0 20px;
        }
        
        .pagination a, .pagination span {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 32px;
            height: 32px;
            padding: 0 8px;
            background: white;
            border: 1px solid #e0e6ec;
            border-radius: 6px;
            text-decoration: none;
            color: #4a5568;
            font-size: 13px;
            font-weight: 500;
        }
        
        .pagination a:hover, .pagination span.current {
            background: #1a1a1a;
            border-color: #1a1a1a;
            color: white;
        }
        
        /* Стили тегов */
        .tags_list, .tag_list, [tags] {
            display: flex !important;
            flex-wrap: wrap !important;
            gap: 8px !important;
            margin: 0 !important;
            padding: 0 !important;
        }
        
        .tags_list a, .tag_list a, [tags] a {
            display: inline-block !important;
            background: #f0f4f8 !important;
            color: #5a6e85 !important;
            padding: 5px 14px !important;
            border-radius: 25px !important;
            font-size: 12px !important;
            text-decoration: none !important;
            border: none !important;
            transition: all 0.2s ease !important;
        }
        
        .tags_list a:hover, .tag_list a:hover, [tags] a:hover {
            background: #e2e8f0 !important;
            color: #1a1a1a !important;
            transform: translateY(-1px) !important;
        }
        
        /* Хлебные крошки */
        .speedbar, .speedbar a { color: #8a9bb0; font-size: 12px; text-decoration: none; margin-bottom: 20px; }
        .speedbar a:hover { color: #4a5568; }
        
        /* Текст статьи */
        .full-story, .full_story, .news-text {
            font-size: 16px; line-height: 1.7; color: #2d3748;
        }
        .full-story p, .full_story p, .news-text p { margin-bottom: 1.2em; }
        .full-story h2, .full_story h2 { font-size: 22px; margin: 1.5em 0 0.5em; font-weight: 600; }
        .full-story h3, .full_story h3 { font-size: 18px; margin: 1.2em 0 0.5em; font-weight: 600; }
        .full-story ul, .full_story ul { margin: 0 0 1em 1.5em; }
        
        /* CSS-плейсхолдеры */
        .no-image {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            width: 100%;
            height: 100%;
            min-height: 140px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 14px;
            font-weight: 500;
            text-align: center;
            border-radius: 12px;
        }
        .no-image span {
            background: rgba(0,0,0,0.2);
            padding: 8px 16px;
            border-radius: 30px;
        }
        
        .no-image-small {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            width: 80px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 8px;
            color: white;
            font-size: 24px;
        }
        
        /* Футер */
        .footer { background: #1a1c23; color: #8a9bb0; padding: 40px 0 20px; margin-top: 40px; }
        .footer-inner { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px; }
        .footer a { color: #a0aec0; text-decoration: none; font-size: 13px; }
        .footer a:hover { color: white; }
        .footer h3, .footer h4 { color: white; font-size: 15px; margin-bottom: 14px; }
        .footer p { font-size: 13px; }
        .copyright { text-align: center; padding-top: 24px; margin-top: 24px; border-top: 1px solid #2d2f36; font-size: 12px; }
        
        /* Модальное окно */
        .modal { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); z-index: 1000; align-items: center; justify-content: center; }
        .modal-content { background: white; border-radius: 16px; max-width: 400px; width: 90%; padding: 30px; position: relative; }
        .modal-close { position: absolute; top: 15px; right: 20px; font-size: 24px; cursor: pointer; background: none; border: none; }
        
        @media (max-width: 768px) {
            .container { padding: 0 16px; }
            .header-inner { flex-direction: column; text-align: center; }
            .nav { justify-content: center; flex-wrap: wrap; }
            .header-search { margin-top: 10px; width: 100%; }
            .header-search input { flex: 1; }
            .layout { gap: 24px; }
        }
        
        @media (max-width: 700px) {
            .item-horizontal { flex-direction: column; padding: 16px; gap: 16px; }
            .item-horizontal__image { width: 100%; }
            .item-horizontal__image img { height: auto; aspect-ratio: 16/9; }
            .no-image { min-height: auto; aspect-ratio: 16/9; }
        }

/* Социальные сети в футере */
.social-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 5px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.25s ease;
    color: #a0aec0;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.social-link svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.social-link span {
    font-size: 13px;
    font-weight: 500;
    line-height: 1.4;
}

.social-link:hover {
    transform: translateX(4px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
}

/* Цвета при наведении */
.social-telegram:hover {
    color: #26A5E4;
    border-color: #26A5E4;
}
.social-vk:hover {
    color: #4C75A3;
    border-color: #4C75A3;
}
.social-rutube:hover {
    color: #F93F1B;
    border-color: #F93F1B;
}
.social-max:hover {
    color: #E50914;
    border-color: #E50914;
}
.social-donate:hover {
    color: #FF5E3A;
    border-color: #FF5E3A;
}