﻿:root {
      --primary-color: #1D7BFF;
      --bg-dark: #0B192C;
      --bg-deep: #030811;
      --bg-light: #F8FAFC;
      --text-dark: #0F172A;
      --text-light: #F8FAFC;
      --text-muted: #94A3B8;
      --ice-blue: #E0F2FE;
      --silver-white: #E2E8F0;
      --theme-accent: rgb(241,250,140);
      --border-color: rgba(255, 255, 255, 0.1);
      --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    * { box-sizing: border-box; margin: 0; padding: 0; }
    body {
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
      background-color: var(--bg-light);
      color: var(--text-dark);
      line-height: 1.6;
    }
    a { color: inherit; text-decoration: none; transition: var(--transition); }

    
    header { background-color: var(--bg-dark); border-bottom: 1px solid var(--border-color); position: sticky; top: 0; z-index: 100; }
    .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: 40px; width: auto; max-width: 160px; object-fit: contain; }
    .logo span { font-size: 20px; font-weight: 800; color: var(--text-light); white-space: nowrap; }
    .desktop-nav { display: flex; align-items: center; gap: 24px; }
    .desktop-nav a { color: var(--text-muted); font-weight: 500; font-size: 15px; }
    .desktop-nav a:hover { color: var(--theme-accent); }
    .nav-btn { background-color: var(--primary-color); color: var(--text-light); padding: 10px 20px; border-radius: 8px; font-weight: 600; }
    .nav-btn:hover { background-color: transparent; border: 1px solid var(--theme-accent); color: var(--theme-accent); }
    .mobile-menu-toggle { display: none; background: none; border: none; color: var(--text-light); font-size: 24px; cursor: pointer; }

    
    .drawer-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.6); backdrop-filter: blur(4px); z-index: 998; opacity: 0; visibility: hidden; transition: var(--transition); }
    .drawer-overlay.active { opacity: 1; visibility: visible; }
    .mobile-drawer { position: fixed; top: 0; left: -280px; width: 280px; height: 100%; background-color: var(--bg-dark); z-index: 999; padding: 30px 20px; display: flex; flex-direction: column; gap: 30px; transition: var(--transition); }
    .mobile-drawer.active { left: 0; }
    .drawer-header { display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--border-color); padding-bottom: 20px; }
    .drawer-close { background: none; border: none; color: var(--text-light); font-size: 24px; cursor: pointer; }
    .drawer-nav { display: flex; flex-direction: column; gap: 16px; }
    .drawer-nav a { color: var(--text-muted); font-size: 16px; font-weight: 500; padding: 10px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.05); }
    .drawer-nav a:hover { color: var(--theme-accent); }

    
    .list-hero {
      background: radial-gradient(circle at top, #1e293b 0%, var(--bg-dark) 100%);
      color: var(--text-light);
      padding: 60px 20px;
      text-align: center;
    }
    .list-hero h1 { font-size: 36px; font-weight: 800; margin-bottom: 12px; color: var(--theme-accent); }
    .breadcrumbs { font-size: 14px; color: var(--text-muted); }
    .breadcrumbs a { color: var(--ice-blue); }
    .breadcrumbs a:hover { text-decoration: underline; }

    
    .list-content-section { padding: 60px 20px; }
    .list-main-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2.5fr 1fr; gap: 40px; }

    
    .article-grid-layout { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .article-card-box { background: #ffffff; border: 1px solid #E2E8F0; border-radius: 12px; overflow: hidden; display: flex; flex-direction: column; transition: var(--transition); }
    .article-card-box:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.05); border-color: var(--primary-color); }
    .card-img-wrapper { height: 180px; overflow: hidden; background: #e2e8f0; }
    .card-img-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
    .article-card-box:hover .card-img-wrapper img { transform: scale(1.05); }
    .card-body { padding: 20px; display: flex; flex-direction: column; justify-content: space-between; flex-grow: 1; }
    .card-meta { font-size: 12px; color: #64748B; margin-bottom: 10px; display: flex; justify-content: space-between; }
    .card-title { font-size: 18px; font-weight: 700; margin-bottom: 8px; line-height: 1.4; }
    .card-title a:hover { color: var(--primary-color); }
    .card-desc { font-size: 14px; color: #64748B; margin-bottom: 16px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
    .card-footer { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid #F1F5F9; padding-top: 12px; font-size: 12px; color: #94A3B8; }

    
    .sidebar-widget { background: #ffffff; border: 1px solid #E2E8F0; border-radius: 12px; padding: 24px; margin-bottom: 24px; }
    .widget-title { font-size: 18px; font-weight: 700; margin-bottom: 16px; border-left: 4px solid var(--primary-color); padding-left: 10px; }
    .hot-list { display: flex; flex-direction: column; gap: 16px; }
    .hot-item { display: flex; gap: 12px; align-items: center; }
    .hot-num { width: 24px; height: 24px; border-radius: 4px; background: #F1F5F9; color: #64748B; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 12px; }
    .hot-item:nth-child(1) .hot-num { background: #EF4444; color: #fff; }
    .hot-info h5 { font-size: 14px; font-weight: 600; }
    .hot-info p { font-size: 11px; color: #94A3B8; }

    
    .pagination-wrapper { margin-top: 40px; display: flex; justify-content: center; gap: 8px; }
    .page-link { display: inline-flex; align-items: center; justify-content: center; min-width: 40px; height: 40px; padding: 0 14px; border-radius: 8px; border: 1px solid #E2E8F0; font-weight: 600; background: #ffffff; }
    .page-link:hover, .page-link.is-current { background-color: var(--primary-color); border-color: var(--primary-color); color: #fff; }
    .page-link.is-disabled { opacity: 0.5; pointer-events: none; }

    
    footer { background-color: var(--bg-deep); color: var(--text-muted); border-top: 1px solid var(--border-color); padding: 60px 20px 30px; }
    .footer-container { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; margin-bottom: 40px; }
    .footer-brand p { margin-top: 16px; font-size: 14px; }
    .footer-col h4 { color: var(--text-light); font-size: 16px; 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; }
    .footer-col ul li a:hover { color: var(--theme-accent); }
    .footer-bottom { max-width: 1200px; margin: 0 auto; border-top: 1px solid var(--border-color); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; font-size: 12px; }

    @media (max-width: 1024px) {
      .list-main-grid { grid-template-columns: 1fr; }
      .footer-container { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 768px) {
      .article-grid-layout { grid-template-columns: 1fr; }
      .desktop-nav { display: none; }
      .mobile-menu-toggle { display: block; }
      .footer-container { grid-template-columns: 1fr; }
      .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    }