
    /* ===== БАЗОВЫЕ СТИЛИ ===== */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: "Montserrat", sans-serif;
    }
    html, body {
      height: 100%;
    }
    body {
      color: #333;
      background: #fff;
      line-height: 1.6;
    }
    
    /* ===== HEADER STYLES ===== */
    
    /* Mobile menu button (hidden by default) */
    .menu-toggle {
      display: none;
      flex-direction: column;
      gap: 5px;
      background: none;
      border: none;
      cursor: pointer;
      z-index: 20;
    }
    
    .menu-toggle span {
      width: 25px;
      height: 3px;
      background: white;
      border-radius: 2px;
      transition: all 0.3s ease;
    }
    
    /* ===== ТИПОГРАФИЯ ===== */
    h1, h2, h3, h4 {
      font-weight: 800;
      line-height: 1.2;
    }
    h1 {
      font-size: 52px;
      margin-bottom: 24px;
    }
    h2 {
      font-size: 36px;
      margin-bottom: 40px;
      position: relative;
    }
    h2.section-title {
      color: #1a73e8;
      text-transform: uppercase;
      letter-spacing: 1px;
    }
    h2.section-title:after {
      content: "";
      display: block;
      width: 80px;
      height: 4px;
      background: linear-gradient(90deg, #1a73e8, #b833ff);
      margin-top: 16px;
    }
    h2.section-title.white {
      color: #fff;
    }
    h2.section-title.white:after {
      background: linear-gradient(90deg, #20c2ff, #b833ff);
    }
    p {
      font-size: 18px;
      margin-bottom: 20px;
    }
    
    /* ===== КНОПКИ ===== */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      border: none;
      padding: 14px 32px;
      font-weight: 500;
      border-radius: 4px;
      background: linear-gradient(90deg, #1a73e8 0%, #b833ff 100%);
      color: #fff;
      cursor: pointer;
      text-decoration: none;
      transition: all 0.3s ease;
      font-size: 16px;
    }
    .btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    }
    .btn-outline {
      background: transparent;
      border: 2px solid #1a73e8;
      color: #1a73e8;
    }
    .btn-outline:hover {
      background: #1a73e8;
      color: #fff;
    }
    
    /* ===== ОСНОВНОЙ КОНТЕНТ БЛОГА ===== */
    .blog-container {
      max-width: 1200px;
      margin: 150px auto 80px;
      padding: 0 20px;
    }
    
    .blog-header {
      text-align: center;
      margin-bottom: 60px;
      opacity: 0;
      transform: translateY(30px);
      animation: fadeInUp 1s forwards;
    }
    
    .blog-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
      gap: 40px;
      margin-bottom: 60px;
    }
    
    .blog-article {
      background: #fff;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      transition: all 0.4s ease;
      opacity: 0;
      transform: translateY(30px);
    }
    
    .blog-article.animated {
      opacity: 1;
      transform: translateY(0);
    }
    
    .blog-article:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    }
    
    .article-image {
      height: 220px;
      overflow: hidden;
      position: relative;
    }
    
    .article-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
    
    .blog-article:hover .article-image img {
      transform: scale(1.05);
    }
    
    .article-category {
      position: absolute;
      top: 20px;
      left: 20px;
      background: linear-gradient(90deg, #1a73e8, #b833ff);
      color: white;
      padding: 8px 16px;
      border-radius: 30px;
      font-size: 12px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1px;
    }
    
    .article-content {
      padding: 30px;
    }
    
    .article-date {
      color: #888;
      font-size: 14px;
      margin-bottom: 12px;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    
    .article-title {
      font-size: 22px;
      margin-bottom: 15px;
      color: #1a73e8;
    }
    
    .article-excerpt {
      color: #666;
      margin-bottom: 25px;
      line-height: 1.7;
    }
    
    .article-meta {
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-top: 1px solid #eee;
      padding-top: 20px;
    }
    
    .read-more {
      color: #1a73e8;
      font-weight: 600;
      font-size: 14px;
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 5px;
      transition: all 0.3s ease;
    }
    
    .read-more:hover {
      color: #b833ff;
      gap: 10px;
    }
    
    /* Пагинация */
    .blog-pagination {
      display: flex;
      justify-content: center;
      margin-top: 60px;
    }
    
    .pagination-list {
      display: flex;
      gap: 10px;
      list-style: none;
    }
    
    .pagination-item a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 45px;
      height: 45px;
      border-radius: 8px;
      background: #f8fafc;
      color: #444;
      text-decoration: none;
      font-weight: 600;
      transition: all 0.3s ease;
    }
    
    .pagination-item a:hover, .pagination-item a.active {
      background: linear-gradient(90deg, #1a73e8, #b833ff);
      color: white;
      transform: translateY(-3px);
      box-shadow: 0 5px 15px rgba(26, 115, 232, 0.3);
    }
    
    /* Сайдбар */
    .blog-sidebar {
      background: #f8fafc;
      border-radius: 12px;
      padding: 30px;
      margin-bottom: 40px;
    }
    
    .sidebar-widget {
      margin-bottom: 40px;
    }
    
    .sidebar-widget:last-child {
      margin-bottom: 0;
    }
    
    .widget-title {
      font-size: 20px;
      margin-bottom: 25px;
      color: #1a73e8;
      position: relative;
      padding-bottom: 15px;
    }
    
    .widget-title:after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 40px;
      height: 3px;
      background: linear-gradient(90deg, #1a73e8, #b833ff);
    }
    
    .categories-list {
      list-style: none;
    }
    
    .category-item {
      margin-bottom: 15px;
      padding-bottom: 15px;
      border-bottom: 1px solid #eee;
    }
    
    .category-item:last-child {
      margin-bottom: 0;
      padding-bottom: 0;
      border-bottom: none;
    }
    
    .category-link {
      display: flex;
      justify-content: space-between;
      color: #555;
      text-decoration: none;
      transition: all 0.3s ease;
    }
    
    .category-link:hover {
      color: #1a73e8;
    }
    
    .category-count {
      background: #eef2f7;
      padding: 2px 10px;
      border-radius: 20px;
      font-size: 12px;
      font-weight: 600;
    }
    
    .category-link:hover .category-count {
      background: linear-gradient(90deg, #1a73e8, #b833ff);
      color: white;
    }
    
    .recent-posts-list {
      list-style: none;
    }
    
    .recent-post {
      display: flex;
      gap: 15px;
      margin-bottom: 20px;
      padding-bottom: 20px;
      border-bottom: 1px solid #eee;
    }
    
    .recent-post:last-child {
      margin-bottom: 0;
      padding-bottom: 0;
      border-bottom: none;
    }
    
    .recent-post-thumb {
      width: 80px;
      height: 80px;
      border-radius: 8px;
      overflow: hidden;
    }
    
    .recent-post-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.3s ease;
    }
    
    .recent-post:hover .recent-post-thumb img {
      transform: scale(1.1);
    }
    
    .recent-post-content {
      flex: 1;
    }
    
    .recent-post-title {
      font-size: 16px;
      margin-bottom: 8px;
    }
    
    .recent-post-title a {
      color: #444;
      text-decoration: none;
      transition: all 0.3s ease;
    }
    
    .recent-post-title a:hover {
      color: #1a73e8;
    }
    
    .recent-post-date {
      font-size: 13px;
      color: #888;
    }
    
    .tags-cloud {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }
    
    .tag {
      padding: 8px 16px;
      background: #eef2f7;
      border-radius: 30px;
      font-size: 14px;
      color: #555;
      text-decoration: none;
      transition: all 0.3s ease;
    }
    
    .tag:hover {
      background: linear-gradient(90deg, #1a73e8, #b833ff);
      color: white;
      transform: translateY(-2px);
    }
    
    /* Форма поиска */
    .search-form {
      position: relative;
    }
    
    .search-input {
      width: 100%;
      padding: 15px 20px;
      border: 1px solid #ddd;
      border-radius: 8px;
      font-size: 15px;
      margin-bottom: 15px;
    }
    
    .search-btn {
      width: 100%;
      padding: 15px;
      background: linear-gradient(90deg, #1a73e8, #b833ff);
      color: white;
      border: none;
      border-radius: 8px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
    }
    
    .search-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 5px 15px rgba(26, 115, 232, 0.3);
    }
    
    /* Сообщение о результатах поиска */
    .search-results {
      margin-bottom: 30px;
      padding: 15px;
      background: #f8fafc;
      border-radius: 8px;
      border-left: 4px solid #1a73e8;
    }
    
    .no-results {
      text-align: center;
      padding: 40px;
      color: #666;
    }
    
    /* Футер */
    .blog-footer {
      background: linear-gradient(120deg, #0f172a, #1e3a8a);
      color: white;
      padding: 60px 0 30px;
    }
    
    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 40px;
    }
    
    .footer-widget h3 {
      font-size: 20px;
      margin-bottom: 25px;
      position: relative;
      padding-bottom: 15px;
    }
    
    .footer-widget h3:after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 40px;
      height: 3px;
      background: linear-gradient(90deg, #1a73e8, #b833ff);
    }
    
    .footer-about p {
      margin-bottom: 25px;
      opacity: 0.8;
    }
    
    .footer-social {
      display: flex;
      gap: 15px;
    }
    
    .social-link {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.1);
      color: white;
      text-decoration: none;
      transition: all 0.3s ease;
    }
    
    .social-link:hover {
      background: linear-gradient(90deg, #1a73e8, #b833ff);
      transform: translateY(-3px);
    }
    
    .footer-links {
      list-style: none;
    }
    
    .footer-links li {
      margin-bottom: 15px;
    }
    
    .footer-links a {
      color: rgba(255, 255, 255, 0.8);
      text-decoration: none;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    
    .footer-links a:hover {
      color: #b833ff;
      gap: 15px;
    }
    
    .footer-contact {
      list-style: none;
    }
    
    .footer-contact li {
      margin-bottom: 20px;
      display: flex;
      align-items: flex-start;
      gap: 15px;
    }
    
    .footer-contact i {
      color: #b833ff;
      font-size: 20px;
    }
    
    .footer-bottom {
      text-align: center;
      padding-top: 30px;
      margin-top: 40px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .footer-bottom p {
      opacity: 0.7;
      font-size: 14px;
    }
    
    /* Анимации */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    
    /* Адаптивность */
    @media (min-width: 992px) {
      .blog-with-sidebar {
        display: grid;
        grid-template-columns: 2fr 1fr;
        gap: 40px;
        align-items: start;
      }
    }
    
    @media (max-width: 768px) {
      .header-main {
        padding: 15px 20px;
      }
      
      .header-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(120deg, #0f172a, #1e3a8a);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
      }
      
      .header-nav.active {
        display: flex;
      }
      
      .menu-toggle {
        display: flex;
      }
      
      .blog-grid {
        grid-template-columns: 1fr;
      }
      
      .blog-container {
        margin-top: 120px;
      }
    }
