﻿:root {
      --primary-color: rgb(225, 112, 85);
      --primary-hover: rgb(200, 90, 65);
      --bg-dark: #0A1128;
      --ice-blue: #1D7BFF;
      --silver-white: #F8FAFC;
      --text-dark: #1E293B;
      --text-light: #64748B;
      --border-color: #E2E8F0;
      --white: #FFFFFF;
      --shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    }
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }
    body {
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
      color: var(--text-dark);
      background-color: #F8FAFC;
      line-height: 1.6;
    }
    a {
      color: inherit;
      text-decoration: none;
      transition: color 0.3s;
    }
    img {
      max-width: 100%;
      height: auto;
    }
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 12px 28px;
      border-radius: 8px;
      font-weight: 600;
      font-size: 15px;
      cursor: pointer;
      transition: all 0.3s;
      border: 1px solid transparent;
    }
    .btn-primary {
      background-color: var(--primary-color);
      color: var(--white);
    }
    .btn-primary:hover {
      background-color: var(--primary-hover);
      transform: translateY(-2px);
    }
    .btn-outline {
      border-color: var(--border-color);
      background: transparent;
      color: var(--text-dark);
    }
    .btn-outline:hover {
      background-color: var(--border-color);
    }

    
    .site-header {
      background-color: var(--white);
      border-bottom: 1px solid var(--border-color);
      position: sticky;
      top: 0;
      z-index: 100;
      box-shadow: 0 2px 10px rgba(0,0,0,0.02);
    }
    .header-container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 70px;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }
    .logo {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      text-decoration: none;
    }
    .logo img {
      display: block;
      height: 40px;
      width: auto;
      max-width: 160px;
      object-fit: contain;
      flex-shrink: 0;
    }
    .logo span {
      display: inline-block;
      font-size: 18px;
      font-weight: 800;
      line-height: 1;
      color: var(--text-dark);
      white-space: nowrap;
    }
    .desktop-nav {
      display: flex;
      gap: 28px;
    }
    .desktop-nav a {
      font-size: 15px;
      font-weight: 500;
      color: var(--text-dark);
    }
    .desktop-nav a:hover {
      color: var(--primary-color);
    }
    .header-actions {
      display: flex;
      align-items: center;
      gap: 16px;
    }
    .menu-toggle {
      display: none;
      flex-direction: column;
      justify-content: space-between;
      width: 24px;
      height: 18px;
      background: transparent;
      border: none;
      cursor: pointer;
    }
    .menu-toggle span {
      width: 100%;
      height: 2px;
      background-color: var(--text-dark);
      transition: all 0.3s;
    }

    
    .drawer-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0,0,0,0.5);
      z-index: 998;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s;
    }
    .drawer-overlay.active {
      opacity: 1;
      visibility: visible;
    }
    .drawer-nav {
      position: fixed;
      top: 0;
      left: -300px;
      width: 300px;
      height: 100%;
      background-color: var(--white);
      z-index: 999;
      box-shadow: 2px 0 10px rgba(0,0,0,0.1);
      transition: all 0.3s ease;
      display: flex;
      flex-direction: column;
    }
    .drawer-nav.active {
      left: 0;
    }
    .drawer-header {
      padding: 20px;
      border-bottom: 1px solid var(--border-color);
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .drawer-close {
      background: none;
      border: none;
      font-size: 28px;
      cursor: pointer;
      color: var(--text-dark);
    }
    .drawer-body {
      padding: 20px;
      flex-grow: 1;
      overflow-y: auto;
    }
    .drawer-menu {
      display: flex;
      flex-direction: column;
      gap: 20px;
      margin-bottom: 30px;
    }
    .drawer-menu a {
      font-size: 16px;
      font-weight: 500;
      color: var(--text-dark);
    }
    .drawer-menu a:hover {
      color: var(--primary-color);
    }

    
    .breadcrumbs-bar {
      background-color: var(--white);
      border-bottom: 1px solid var(--border-color);
      padding: 15px 0;
    }
    .breadcrumbs {
      font-size: 14px;
      color: var(--text-light);
    }
    .breadcrumbs a:hover {
      color: var(--primary-color);
    }

    
    .page-banner {
      background: linear-gradient(135deg, var(--bg-dark) 0%, #172449 100%);
      color: var(--silver-white);
      padding: 60px 0;
      text-align: center;
    }
    .page-banner h1 {
      font-size: 36px;
      font-weight: 700;
      margin-bottom: 12px;
    }
    .page-banner p {
      font-size: 16px;
      color: #94A3B8;
    }

    
    .layout-grid {
      display: grid;
      grid-template-columns: 8fr 4fr;
      gap: 40px;
      padding: 60px 0;
    }

    
    .articles-list {
      display: flex;
      flex-direction: column;
      gap: 30px;
    }
    .list-article-card {
      background-color: var(--white);
      border-radius: 12px;
      border: 1px solid var(--border-color);
      overflow: hidden;
      display: flex;
      transition: all 0.3s;
    }
    .list-article-card:hover {
      box-shadow: var(--shadow);
      transform: translateY(-2px);
    }
    .list-article-image {
      width: 260px;
      min-width: 260px;
      height: 200px;
      background-color: #E2E8F0;
      overflow: hidden;
    }
    .list-article-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .list-article-body {
      padding: 24px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      flex-grow: 1;
    }
    .list-article-meta {
      font-size: 13px;
      color: var(--text-light);
      display: flex;
      gap: 16px;
    }
    .list-article-title {
      font-size: 20px;
      font-weight: 700;
      line-height: 1.4;
      margin: 8px 0 12px;
    }
    .list-article-title a:hover {
      color: var(--primary-color);
    }
    .list-article-summary {
      color: var(--text-light);
      font-size: 14px;
      line-height: 1.6;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }
    .list-article-footer {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-top: 15px;
    }

    
    .pagination {
      display: flex;
      justify-content: center;
      gap: 8px;
      margin-top: 50px;
    }
    .pagination a, .pagination span {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      border-radius: 6px;
      border: 1px solid var(--border-color);
      background-color: var(--white);
      font-weight: 500;
      font-size: 14px;
    }
    .pagination a:hover {
      border-color: var(--primary-color);
      color: var(--primary-color);
    }
    .pagination .active {
      background-color: var(--primary-color);
      color: var(--white);
      border-color: var(--primary-color);
    }
    .pagination .disabled {
      opacity: 0.5;
      cursor: not-allowed;
    }

    
    .sidebar {
      display: flex;
      flex-direction: column;
      gap: 30px;
    }
    .sidebar-widget {
      background-color: var(--white);
      border-radius: 12px;
      border: 1px solid var(--border-color);
      padding: 24px;
    }
    .widget-title {
      font-size: 18px;
      font-weight: 700;
      margin-bottom: 20px;
      padding-bottom: 10px;
      border-bottom: 2px solid var(--primary-color);
      display: inline-block;
    }
    .widget-links {
      list-style: none;
    }
    .widget-links li {
      margin-bottom: 12px;
      font-size: 14px;
    }
    .widget-links a {
      display: flex;
      justify-content: space-between;
      color: var(--text-dark);
    }
    .widget-links a:hover {
      color: var(--primary-color);
    }
    .tag-cloud {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }
    .tag-cloud-item {
      background-color: #F1F5F9;
      color: var(--text-dark);
      padding: 6px 12px;
      border-radius: 6px;
      font-size: 13px;
      transition: all 0.3s;
    }
    .tag-cloud-item:hover {
      background-color: var(--primary-color);
      color: var(--white);
    }

    
    .site-footer {
      background-color: var(--bg-dark);
      color: #94A3B8;
      padding: 80px 0 40px;
      border-top: 1px solid rgba(255,255,255,0.05);
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 2fr repeat(3, 1fr);
      gap: 40px;
      margin-bottom: 60px;
    }
    .footer-brand {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }
    .footer-brand .logo span {
      color: var(--silver-white);
    }
    .footer-col h5 {
      color: var(--silver-white);
      font-size: 16px;
      font-weight: 600;
      margin-bottom: 20px;
    }
    .footer-links {
      list-style: none;
    }
    .footer-links li {
      margin-bottom: 12px;
    }
    .footer-links a:hover {
      color: var(--silver-white);
    }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.05);
      padding-top: 30px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 20px;
      font-size: 14px;
    }
    .footer-bottom-links {
      display: flex;
      gap: 20px;
    }

    
    @media (max-width: 992px) {
      .layout-grid {
        grid-template-columns: 1fr;
      }
      .footer-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }
    @media (max-width: 768px) {
      .desktop-nav, .header-actions .btn {
        display: none;
      }
      .menu-toggle {
        display: flex;
      }
      .list-article-card {
        flex-direction: column;
      }
      .list-article-image {
        width: 100%;
        height: 200px;
      }
    }
    @media (max-width: 640px) {
      .footer-grid {
        grid-template-columns: 1fr;
      }
      .footer-bottom {
        flex-direction: column;
        text-align: center;
      }
    }