﻿:root {
      --primary: rgb(99,102,241);
      --primary-hover: #4f46e5;
      --primary-light: rgba(99, 102, 241, 0.1);
      --dark-bg: #0b0f19;
      --card-bg: #1e293b;
      --text-main: #f8fafc;
      --text-muted: #94a3b8;
      --light-bg: #f8fafc;
      --border-color: rgba(255,255,255,0.08);
    }
    * { box-sizing: border-box; margin: 0; padding: 0; }
    body {
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
      background-color: var(--dark-bg);
      color: var(--text-main);
      line-height: 1.6;
      overflow-x: hidden;
    }
    a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
    ul { list-style: none; }
    .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }

    
    .logo {
      display: inline-flex;
      align-items: center;
      gap: 12px;
    }
    .logo img {
      display: block;
      height: 40px;
      width: auto;
      max-width: 160px;
      object-fit: contain;
      flex-shrink: 0;
    }
    .logo span {
      display: inline-block;
      font-size: 20px;
      font-weight: 800;
      line-height: 1;
      color: var(--text-main);
      white-space: nowrap;
    }

    
    .header {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(11, 15, 25, 0.85);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border-color);
    }
    .header-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      height: 80px;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }
    .nav-desktop { display: flex; gap: 32px; align-items: center; }
    .nav-desktop a { font-size: 15px; font-weight: 500; color: var(--text-muted); }
    .nav-desktop a:hover, .nav-desktop a.active { color: var(--primary); }
    .header-actions { display: flex; align-items: center; gap: 16px; }
    .btn-primary-sm {
      background-color: var(--primary);
      color: #fff;
      padding: 8px 20px;
      border-radius: 6px;
      font-size: 14px;
      font-weight: 600;
      border: none;
      cursor: pointer;
    }
    .btn-primary-sm:hover { background-color: var(--primary-hover); transform: translateY(-1px); }
    .menu-toggle { display: none; background: none; border: none; flex-direction: column; gap: 6px; cursor: pointer; padding: 4px; }
    .menu-toggle span { display: block; width: 24px; height: 2px; background-color: var(--text-main); transition: all 0.3s ease; }

    
    .drawer-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.6); z-index: 998; opacity: 0; visibility: hidden; transition: all 0.3s ease; }
    .drawer-overlay.active { opacity: 1; visibility: visible; }
    .drawer { position: fixed; top: 0; left: -300px; width: 300px; height: 100%; background-color: var(--dark-bg); border-right: 1px solid var(--border-color); z-index: 999; padding: 30px 24px; display: flex; flex-direction: column; gap: 40px; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); }
    .drawer.active { left: 0; }
    .drawer-header { display: flex; justify-content: space-between; align-items: center; }
    .drawer-close { background: none; border: none; color: var(--text-muted); font-size: 28px; cursor: pointer; }
    .drawer-nav { display: flex; flex-direction: column; gap: 20px; }
    .drawer-nav a { font-size: 16px; font-weight: 500; color: var(--text-muted); padding: 8px 0; border-bottom: 1px solid var(--border-color); }
    .drawer-nav a:hover { color: var(--primary); }

    
    .archive-header {
      padding: 60px 0;
      background: radial-gradient(circle at 10% 20%, rgba(99, 102, 241, 0.08), transparent 40%);
      border-bottom: 1px solid var(--border-color);
    }
    .breadcrumbs {
      font-size: 13px;
      color: var(--text-muted);
      margin-bottom: 16px;
    }
    .breadcrumbs a:hover {
      color: var(--primary);
    }
    .breadcrumbs span {
      margin: 0 8px;
    }
    .archive-title {
      font-size: 32px;
      font-weight: 800;
      color: #fff;
      margin-bottom: 12px;
    }
    .archive-desc {
      color: var(--text-muted);
      max-width: 600px;
    }

    
    .main-layout {
      padding: 80px 0;
      display: grid;
      grid-template-columns: 8fr 4fr;
      gap: 40px;
    }
    @media (max-width: 992px) {
      .main-layout { grid-template-columns: 1fr; }
    }

    
    .list-grid {
      display: flex;
      flex-direction: column;
      gap: 30px;
    }
    .article-item {
      background: #111827;
      border: 1px solid var(--border-color);
      border-radius: 12px;
      overflow: hidden;
      display: flex;
      transition: all 0.3s ease;
    }
    @media (max-width: 576px) {
      .article-item { flex-direction: column; }
    }
    .article-item:hover {
      border-color: rgba(99, 102, 241, 0.3);
      transform: translateY(-2px);
    }
    .article-thumb {
      width: 240px;
      height: 180px;
      flex-shrink: 0;
      position: relative;
    }
    @media (max-width: 576px) {
      .article-thumb { width: 100%; height: 200px; }
    }
    .article-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .article-info {
      padding: 24px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      flex-grow: 1;
    }
    .article-title-link {
      font-size: 18px;
      font-weight: 700;
      color: #fff;
      line-height: 1.4;
      margin-bottom: 10px;
    }
    .article-title-link:hover {
      color: var(--primary);
    }
    .article-summary {
      font-size: 14px;
      color: var(--text-muted);
      margin-bottom: 16px;
      line-height: 1.5;
    }
    .article-meta-line {
      display: flex;
      align-items: center;
      gap: 16px;
      font-size: 12px;
      color: var(--text-muted);
    }

    
    .sidebar {
      display: flex;
      flex-direction: column;
      gap: 40px;
    }
    .widget {
      background: #111827;
      border: 1px solid var(--border-color);
      border-radius: 12px;
      padding: 24px;
    }
    .widget-title {
      font-size: 16px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 20px;
      position: relative;
      padding-left: 12px;
    }
    .widget-title::before {
      content: '';
      position: absolute;
      left: 0;
      top: 3px;
      width: 4px;
      height: 14px;
      background-color: var(--primary);
      border-radius: 2px;
    }
    .hot-list {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }
    .hot-item {
      display: flex;
      gap: 12px;
      align-items: center;
    }
    .hot-num {
      font-size: 16px;
      font-weight: 800;
      color: var(--primary);
      width: 24px;
      text-align: center;
    }
    .hot-link {
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.4;
    }
    .hot-link:hover { color: #fff; }

    
    .pagination-wrapper {
      margin-top: 50px;
      display: flex;
      justify-content: center;
      gap: 8px;
    }
    .page-btn {
      padding: 8px 16px;
      border-radius: 6px;
      font-size: 14px;
      background: rgba(255,255,255,0.05);
      border: 1px solid var(--border-color);
      color: var(--text-muted);
    }
    .page-btn.current {
      background: var(--primary);
      color: #fff;
      border-color: var(--primary);
    }
    .page-btn:hover:not(.current) {
      background: rgba(255,255,255,0.1);
      color: #fff;
    }

    
    .footer {
      background: #06080e;
      border-top: 1px solid var(--border-color);
      padding: 80px 0 40px 0;
      font-size: 14px;
      color: var(--text-muted);
    }
    .footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 40px; margin-bottom: 60px; }
    .footer-brand { grid-column: span 2; }
    @media (max-width: 992px) { .footer-brand { grid-column: span 1; } }
    .footer-desc { margin-top: 20px; margin-bottom: 20px; line-height: 1.7; }
    .footer-contact { font-size: 13px; color: var(--text-main); }
    .footer-links h4, .footer-risk h4 { color: var(--text-main); font-size: 16px; font-weight: 700; margin-bottom: 24px; }
    .footer-links ul { display: flex; flex-direction: column; gap: 12px; }
    .footer-links a:hover { color: var(--primary); }
    .footer-risk p { line-height: 1.7; font-size: 12px; }
    .footer-bottom { border-top: 1px solid var(--border-color); padding-top: 40px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 20px; }

    @media (max-width: 768px) {
      .nav-desktop { display: none; }
      .menu-toggle { display: flex; }
    }