﻿:root {
      --primary: rgb(26, 115, 232);
      --primary-hover: #155cb0;
      --primary-light: rgba(26, 115, 232, 0.1);
      --bg-dark: #070b12;
      --bg-card: #111827;
      --border-color: rgba(255, 255, 255, 0.08);
      --text-main: #f3f4f6;
      --text-muted: #9ca3af;
      --accent: #00E5FF;
    }

    * { 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(--bg-dark);
      color: var(--text-main);
      line-height: 1.6;
    }

    a { color: inherit; text-decoration: none; transition: all 0.3s; }

    
    header {
      position: fixed; top: 0; left: 0; width: 100%; z-index: 100;
      background: rgba(7, 11, 18, 0.85); backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border-color);
    }
    .header-container {
      max-width: 1200px; margin: 0 auto; padding: 16px 20px;
      display: flex; align-items: center; justify-content: space-between;
    }
    .logo { display: inline-flex; align-items: center; gap: 12px; }
    .logo img { display: block; height: 36px; width: auto; max-width: 160px; object-fit: contain; }
    .logo span { font-size: 18px; font-weight: 800; color: #fff; }
    nav.nav-desktop { display: flex; align-items: center; gap: 28px; }
    nav.nav-desktop a { font-size: 15px; font-weight: 500; color: var(--text-muted); }
    nav.nav-desktop a:hover, nav.nav-desktop a.active { color: var(--accent); }
    .header-action { display: flex; align-items: center; gap: 15px; }
    .btn-action {
      background: var(--primary); color: #fff; padding: 8px 18px; border-radius: 6px;
      font-size: 14px; font-weight: 600; border: none; display: inline-flex; cursor: pointer;
    }
    .btn-action:hover { background: var(--primary-hover); }
    .menu-toggle { display: none; background: none; border: none; color: #fff; font-size: 24px; cursor: pointer; }

    
    .drawer-overlay { position: fixed; top:0; left:0; width:100%; height:100%; background:rgba(0,0,0,0.6); backdrop-filter:blur(4px); z-index:150; opacity:0; pointer-events:none; transition:opacity 0.3s; }
    .drawer { position: fixed; top:0; left:-280px; width:280px; height:100%; background:var(--bg-card); z-index:160; transition:left 0.3s; display:flex; flex-direction:column; padding:24px; }
    .drawer.active { left:0; }
    .drawer-overlay.active { opacity:1; pointer-events:auto; }
    .drawer-header { display:flex; align-items:center; justify-content:space-between; margin-bottom:30px; }
    .drawer-close { background:none; border:none; color:var(--text-muted); font-size:24px; cursor:pointer; }
    .drawer-nav { display:flex; flex-direction:column; gap:20px; }
    .drawer-nav a { font-size:16px; color:var(--text-main); padding:8px 0; border-bottom:1px solid rgba(255,255,255,0.05); }

    
    .breadcrumb-section {
      padding-top: 110px;
      padding-bottom: 20px;
      background: rgba(255, 255, 255, 0.01);
      border-bottom: 1px solid var(--border-color);
    }
    .breadcrumb-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
      font-size: 14px;
      color: var(--text-muted);
    }
    .breadcrumb-container a {
      color: var(--primary);
    }

    
    .list-wrapper {
      max-width: 1200px;
      margin: 40px auto 80px auto;
      padding: 0 20px;
      display: grid;
      grid-template-columns: 2.8fr 1.2fr;
      gap: 40px;
    }

    
    .list-main {
      display: flex;
      flex-direction: column;
      gap: 30px;
    }

    .list-header {
      border-bottom: 1px solid var(--border-color);
      padding-bottom: 20px;
      margin-bottom: 10px;
    }

    .list-header h1 {
      font-size: 26px;
      font-weight: 700;
      color: #fff;
    }

    
    .article-item {
      background: var(--bg-card);
      border: 1px solid var(--border-color);
      border-radius: 12px;
      overflow: hidden;
      display: flex;
      gap: 24px;
      padding: 20px;
      transition: all 0.3s;
    }

    .article-item:hover {
      border-color: rgba(26, 115, 232, 0.4);
      transform: translateY(-2px);
    }

    .item-img {
      width: 240px;
      height: 150px;
      border-radius: 8px;
      overflow: hidden;
      flex-shrink: 0;
      background: #1f2937;
    }

    .item-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .item-content {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      flex-grow: 1;
    }

    .item-title {
      font-size: 18px;
      font-weight: 700;
      color: #fff;
      line-height: 1.4;
      margin-bottom: 8px;
    }

    .item-summary {
      font-size: 14px;
      color: var(--text-muted);
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
      margin-bottom: 15px;
    }

    .item-meta {
      display: flex;
      align-items: center;
      gap: 15px;
      font-size: 12px;
      color: var(--text-muted);
    }

    .item-meta span {
      display: flex;
      align-items: center;
      gap: 5px;
    }

    
    .pagination {
      display: flex;
      justify-content: center;
      gap: 8px;
      margin-top: 40px;
    }

    .pagination a, .pagination span {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 40px;
      height: 40px;
      border-radius: 6px;
      border: 1px solid var(--border-color);
      background: var(--bg-card);
      font-size: 14px;
      font-weight: 600;
      color: var(--text-muted);
    }

    .pagination a:hover, .pagination .current {
      background: var(--primary);
      color: #fff;
      border-color: var(--primary);
    }

    
    .list-sidebar {
      display: flex;
      flex-direction: column;
      gap: 30px;
    }

    .sidebar-widget {
      background: var(--bg-card);
      border: 1px solid var(--border-color);
      border-radius: 12px;
      padding: 24px;
    }

    .widget-title {
      font-size: 16px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 18px;
      border-left: 3px solid var(--primary);
      padding-left: 10px;
    }

    .hot-list {
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    .hot-item {
      display: flex;
      gap: 12px;
    }

    .hot-num {
      width: 24px;
      height: 24px;
      border-radius: 4px;
      background: rgba(26, 115, 232, 0.1);
      color: var(--accent);
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 12px;
    }

    .hot-link {
      font-size: 14px;
      color: var(--text-main);
      font-weight: 500;
      line-height: 1.4;
    }

    .hot-link:hover {
      color: var(--accent);
    }

    
    footer {
      background: #03060a; border-top: 1px solid var(--border-color); padding: 60px 0 30px 0;
    }
    .footer-container {
      max-width: 1200px; margin: 0 auto; padding: 0 20px; display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: 40px; margin-bottom: 40px;
    }
    .footer-brand p { font-size: 14px; color: var(--text-muted); margin-top: 15px; max-width: 320px; }
    .footer-col h4 { color: #fff; font-size: 15px; font-weight: 700; margin-bottom: 20px; }
    .footer-col ul { list-style: none; }
    .footer-col ul li { margin-bottom: 12px; }
    .footer-col ul li a { font-size: 14px; color: var(--text-muted); }
    .footer-col ul li a:hover { color: var(--accent); }
    .footer-bottom {
      max-width: 1200px; margin: 0 auto; padding: 30px 20px 0 20px; border-top: 1px solid var(--border-color); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 20px; font-size: 13px; color: var(--text-muted);
    }

    @media (max-width: 992px) {
      .list-wrapper {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 768px) {
      nav.nav-desktop, .header-action .btn-action { display: none; }
      .menu-toggle { display: block; }
      .item-img { width: 100%; height: 160px; }
      .article-item { flex-direction: column; }
      .footer-container { grid-template-columns: 1fr; gap: 30px; }
    }