﻿:root {
      --primary-color: rgb(17,24,39);
      --accent-color: rgb(245, 158, 11);
      --accent-hover: rgb(217, 119, 6);
      --bg-dark: rgb(17,24,39);
      --bg-light: #f3f4f6;
      --text-dark: #111827;
      --text-light: #f9fafb;
      --text-muted: #9ca3af;
      --border-color: rgba(255,255,255,0.1);
      --card-bg: #1f2937;
    }
    * { box-sizing: border-box; margin: 0; padding: 0; }
    body {
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
      background-color: #0b0f19;
      color: var(--text-light);
      line-height: 1.6;
      overflow-x: hidden;
    }
    a { color: inherit; text-decoration: none; transition: all 0.3s ease; }
    
    
    .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(--accent-color);
      white-space: nowrap;
      letter-spacing: 0.5px;
    }

    
    .header {
      background-color: var(--primary-color);
      border-bottom: 1px solid var(--border-color);
      position: sticky;
      top: 0;
      z-index: 100;
    }
    .header-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 15px 20px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .nav-desktop {
      display: flex;
      gap: 25px;
    }
    .nav-desktop a {
      font-size: 15px;
      font-weight: 500;
      color: #d1d5db;
      padding: 8px 0;
      position: relative;
    }
    .nav-desktop a:hover, .nav-desktop a.active {
      color: var(--accent-color);
    }
    .nav-desktop a::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 2px;
      background-color: var(--accent-color);
      transition: width 0.3s;
    }
    .nav-desktop a:hover::after { width: 100%; }
    
    .header-actions {
      display: flex;
      align-items: center;
      gap: 15px;
    }
    .btn-primary-sm {
      background-color: var(--accent-color);
      color: var(--primary-color);
      padding: 8px 20px;
      border-radius: 6px;
      font-weight: 600;
      font-size: 14px;
      border: 1px solid var(--accent-color);
    }
    .btn-primary-sm:hover {
      background-color: transparent;
      color: var(--accent-color);
    }
    .drawer-trigger {
      display: none;
      flex-direction: column;
      gap: 6px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 4px;
    }
    .drawer-trigger span {
      display: block;
      width: 24px;
      height: 2px;
      background-color: var(--text-light);
      transition: 0.3s;
    }

    
    .drawer-backdrop {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.7);
      z-index: 199;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease;
    }
    .drawer {
      position: fixed;
      top: 0;
      left: -280px;
      width: 280px;
      height: 100%;
      background-color: var(--primary-color);
      z-index: 200;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      display: flex;
      flex-direction: column;
      box-shadow: 4px 0 20px rgba(0,0,0,0.5);
    }
    .drawer.active { left: 0; }
    .drawer-backdrop.active { opacity: 1; visibility: visible; }
    .drawer-header {
      padding: 20px;
      border-bottom: 1px solid var(--border-color);
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .drawer-close {
      background: none;
      border: none;
      color: var(--text-light);
      font-size: 28px;
      cursor: pointer;
    }
    .drawer-nav {
      padding: 20px;
      display: flex;
      flex-direction: column;
      gap: 15px;
    }
    .drawer-nav a {
      font-size: 16px;
      padding: 10px 15px;
      border-radius: 6px;
      color: #d1d5db;
    }
    .drawer-nav a:hover {
      background-color: rgba(255,255,255,0.05);
      color: var(--accent-color);
    }

    
    .page-banner {
      background: linear-gradient(135deg, var(--primary-color), #0d131f);
      padding: 60px 20px;
      text-align: center;
      border-bottom: 1px solid var(--border-color);
    }
    .page-banner h1 { font-size: 36px; font-weight: 800; margin-bottom: 15px; color: #fff; }
    .breadcrumbs { font-size: 14px; color: var(--text-muted); }
    .breadcrumbs a:hover { color: var(--accent-color); }

    
    .main-container {
      max-width: 1200px;
      margin: 40px auto;
      padding: 0 20px;
      display: grid;
      grid-template-columns: 2.5fr 1fr;
      gap: 40px;
    }
    .article-list { display: flex; flex-direction: column; gap: 30px; }
    .list-card {
      background-color: var(--card-bg);
      border: 1px solid var(--border-color);
      border-radius: 12px;
      overflow: hidden;
      display: grid;
      grid-template-columns: 300px 1fr;
      transition: all 0.3s;
    }
    .list-card:hover { border-color: var(--accent-color); transform: translateY(-2px); }
    .list-img { background-size: cover; background-position: center; min-height: 220px; }
    .list-body { padding: 25px; display: flex; flex-direction: column; justify-content: space-between; }
    .list-meta { display: flex; gap: 15px; font-size: 12px; color: var(--text-muted); margin-bottom: 10px; }
    .list-title { font-size: 20px; font-weight: 700; margin-bottom: 12px; color: #fff; }
    .list-desc { font-size: 14px; color: var(--text-muted); margin-bottom: 15px; }
    .list-footer { display: flex; justify-content: space-between; align-items: center; }
    .list-tags { display: flex; gap: 6px; }
    .list-tag { font-size: 11px; background-color: rgba(255,255,255,0.05); padding: 2px 8px; border-radius: 4px; }
    .btn-read { color: var(--accent-color); font-weight: 600; font-size: 14px; }

    
    .sidebar { display: flex; flex-direction: column; gap: 30px; }
    .sidebar-widget {
      background-color: var(--card-bg);
      border: 1px solid var(--border-color);
      border-radius: 12px;
      padding: 25px;
    }
    .widget-title { font-size: 18px; font-weight: 700; margin-bottom: 20px; position: relative; padding-bottom: 10px; }
    .widget-title::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 40px;
      height: 2px;
      background-color: var(--accent-color);
    }
    .sidebar-link-list { list-style: none; }
    .sidebar-link-list li { margin-bottom: 15px; font-size: 14px; }
    .sidebar-link-list li a:hover { color: var(--accent-color); }
    .sidebar-tags { display: flex; gap: 8px; flex-wrap: wrap; }
    .sidebar-tag { background: rgba(255,255,255,0.05); padding: 6px 12px; border-radius: 6px; font-size: 12px; }
    .sidebar-tag:hover { background-color: var(--accent-color); color: var(--primary-color); }

    
    .pagination { display: flex; justify-content: center; gap: 8px; margin-top: 40px; }
    .pagination a, .pagination span {
      padding: 10px 18px;
      border: 1px solid var(--border-color);
      background-color: var(--card-bg);
      border-radius: 6px;
      font-size: 14px;
    }
    .pagination .is-current { background-color: var(--accent-color); color: var(--primary-color); border-color: var(--accent-color); }
    .pagination a:hover { border-color: var(--accent-color); color: var(--accent-color); }

    
    .footer {
      background-color: var(--primary-color);
      border-top: 1px solid var(--border-color);
      padding: 60px 20px 20px;
      font-size: 14px;
      color: #9ca3af;
    }
    .footer-grid {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1.5fr repeat(3, 1fr);
      gap: 40px;
      margin-bottom: 40px;
    }
    .footer-brand p { margin-top: 15px; margin-bottom: 20px; }
    .footer-links h4 { color: #fff; font-size: 16px; font-weight: 700; margin-bottom: 20px; }
    .footer-links ul { list-style: none; }
    .footer-links ul li { margin-bottom: 12px; }
    .footer-links ul li a:hover { color: var(--accent-color); }
    .footer-bottom {
      max-width: 1200px;
      margin: 0 auto;
      padding-top: 25px;
      border-top: 1px solid rgba(255,255,255,0.05);
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 15px;
    }

    @media (max-width: 992px) {
      .main-container { grid-template-columns: 1fr; }
      .nav-desktop { display: none; }
      .drawer-trigger { display: flex; }
    }
    @media (max-width: 768px) {
      .list-card { grid-template-columns: 1fr; }
      .list-img { min-height: 180px; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
    }