﻿:root {
      --primary: #1D7BFF;
      --primary-hover: #0056b3;
      --primary-glow: rgba(29, 123, 255, 0.15);
      --theme: rgb(6,182,212);
      --bg-deep: #060a13;
      --bg-dark: #0a0f1d;
      --bg-card: #111827;
      --bg-light: #f8fafc;
      --text-dark: #0f172a;
      --text-muted: #64748b;
      --text-light: #f8fafc;
      --silver-white: #e2e8f0;
      --card-border: rgba(255, 255, 255, 0.08);
      --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    * { margin: 0; padding: 0; box-sizing: border-box; }
    body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; background-color: var(--bg-light); color: var(--text-dark); line-height: 1.6; }
    .container { width: 100%; 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: 36px; 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-light); white-space: nowrap; }
    .header-light .logo span { color: var(--text-dark); }

    
    header { background: var(--bg-deep); border-bottom: 1px solid rgba(255,255,255,0.05); position: sticky; top: 0; z-index: 100; transition: var(--transition); }
    header.header-light { background: rgba(255, 255, 255, 0.95); border-bottom: 1px solid #e2e8f0; backdrop-filter: blur(10px); }
    header .container { display: flex; align-items: center; justify-content: space-between; height: 72px; }
    .nav-list { display: flex; align-items: center; gap: 32px; list-style: none; }
    .nav-list a { color: var(--silver-white); text-decoration: none; font-size: 15px; font-weight: 500; transition: var(--transition); }
    .nav-list a:hover { color: var(--primary); }
    .header-light .nav-list a { color: var(--text-dark); }
    .header-light .nav-list a:hover { color: var(--primary); }
    
    
    .menu-toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 6px; }
    .menu-toggle span { display: block; width: 24px; height: 2px; background: var(--text-light); transition: var(--transition); }
    .header-light .menu-toggle span { background: var(--text-dark); }
    .drawer-overlay { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.6); z-index: 1000; opacity: 0; transition: var(--transition); }
    .drawer-overlay.active { display: block; opacity: 1; }
    .mobile-drawer { position: fixed; top: 0; left: -280px; width: 280px; height: 100%; background: var(--bg-dark); border-right: 1px solid var(--card-border); z-index: 1001; transition: var(--transition); padding: 30px 24px; display: flex; flex-direction: column; gap: 40px; }
    .mobile-drawer.active { left: 0; }
    .drawer-header { display: flex; align-items: center; justify-content: space-between; }
    .drawer-close { background: none; border: none; font-size: 28px; color: var(--text-light); cursor: pointer; }
    .drawer-nav { display: flex; flex-direction: column; gap: 20px; }
    .drawer-nav a { color: var(--silver-white); text-decoration: none; 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(--primary); }

    
    .breadcrumb-wrapper { background: #f1f5f9; padding: 15px 0; border-bottom: 1px solid #e2e8f0; }
    .breadcrumbs { font-size: 14px; color: var(--text-muted); display: flex; align-items: center; gap: 8px; }
    .breadcrumbs a { color: var(--primary); text-decoration: none; font-weight: 500; }
    .breadcrumbs span { color: var(--text-muted); }

    
    .list-hero { background: radial-gradient(circle at top, #1e293b, var(--bg-deep)); color: var(--text-light); padding: 50px 0; text-align: center; }
    .list-hero h1 { font-size: 32px; font-weight: 800; margin-bottom: 12px; }
    .list-hero p { color: var(--silver-white); font-size: 15px; max-width: 600px; margin: 0 auto; opacity: 0.9; }

    
    .list-layout { display: grid; grid-template-columns: 2.5fr 1fr; gap: 40px; padding: 60px 0; }
    
    
    .list-articles-grid { display: flex; flex-direction: column; gap: 24px; }
    
    
    .article-card { background: #fff; border: 1px solid #e2e8f0; border-radius: 16px; overflow: hidden; display: flex; gap: 24px; padding: 20px; transition: var(--transition); }
    .article-card:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0,0,0,0.05); }
    .article-image { width: 220px; height: 150px; border-radius: 10px; overflow: hidden; flex-shrink: 0; }
    .article-image img { width: 100%; height: 100%; object-fit: cover; }
    .article-content { flex: 1; display: flex; flex-direction: column; justify-content: space-between; }
    .article-meta { display: flex; align-items: center; gap: 16px; font-size: 12px; color: var(--text-muted); margin-bottom: 10px; }
    .article-meta span { display: inline-flex; align-items: center; gap: 4px; }
    .article-title { font-size: 18px; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; line-height: 1.4; }
    .article-title a { text-decoration: none; color: inherit; transition: var(--transition); }
    .article-title a:hover { color: var(--primary); }
    .article-summary { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin-bottom: 12px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
    .article-footer { display: flex; align-items: center; justify-content: space-between; font-size: 13px; border-top: 1px solid #f1f5f9; padding-top: 12px; }
    .article-tags { display: flex; gap: 8px; }
    .article-tags a { text-decoration: none; background: #f1f5f9; color: var(--primary); padding: 2px 8px; border-radius: 4px; font-weight: 500; }
    .read-more { color: var(--primary); text-decoration: none; font-weight: 600; }

    
    .pagination { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 40px; }
    .pagination-item { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 8px; border: 1px solid #e2e8f0; color: var(--text-muted); text-decoration: none; font-weight: 600; font-size: 14px; transition: var(--transition); }
    .pagination-item:hover, .pagination-item.active { background: var(--primary); color: #fff; border-color: var(--primary); }
    .pagination-item.disabled { opacity: 0.5; pointer-events: none; }

    
    .sidebar { display: flex; flex-direction: column; gap: 30px; }
    .sidebar-widget { background: #fff; border: 1px solid #e2e8f0; border-radius: 16px; padding: 24px; }
    .widget-title { font-size: 16px; font-weight: 700; color: var(--text-dark); margin-bottom: 18px; border-left: 4px solid var(--primary); padding-left: 10px; }
    
    .hot-list { display: flex; flex-direction: column; gap: 16px; list-style: none; }
    .hot-item { display: flex; gap: 12px; }
    .hot-item-img { width: 60px; height: 60px; border-radius: 6px; overflow: hidden; flex-shrink: 0; }
    .hot-item-img img { width: 100%; height: 100%; object-fit: cover; }
    .hot-item-text { display: flex; flex-direction: column; justify-content: space-between; }
    .hot-item-title { font-size: 13px; font-weight: 600; color: var(--text-dark); line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
    .hot-item-title a { text-decoration: none; color: inherit; }
    .hot-item-title a:hover { color: var(--primary); }
    .hot-item-meta { font-size: 11px; color: var(--text-muted); }

    .tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
    .tag-cloud a { font-size: 12px; background: #f1f5f9; color: var(--text-muted); border: 1px solid #e2e8f0; padding: 6px 12px; border-radius: 6px; text-decoration: none; transition: var(--transition); }
    .tag-cloud a:hover { background: var(--primary); color: #fff; border-color: var(--primary); }

    
    footer { background: var(--bg-deep); border-top: 1px solid rgba(255,255,255,0.05); padding: 80px 0 30px; color: var(--silver-white); }
    .footer-grid { display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: 40px; margin-bottom: 50px; }
    .footer-brand { display: flex; flex-direction: column; gap: 20px; }
    .footer-brand p { color: var(--text-muted); font-size: 14px; line-height: 1.6; }
    .footer-title { font-size: 16px; font-weight: 700; color: var(--text-light); margin-bottom: 24px; position: relative; }
    .footer-title::after { content: ''; position: absolute; bottom: -8px; left: 0; width: 30px; height: 2px; background: var(--primary); }
    .footer-links { list-style: none; display: flex; flex-direction: column; gap: 14px; }
    .footer-links a { color: var(--text-muted); text-decoration: none; font-size: 14px; transition: var(--transition); }
    .footer-links a:hover { color: var(--primary); padding-left: 4px; }
    .footer-contact { display: flex; flex-direction: column; gap: 14px; font-size: 14px; color: var(--text-muted); }
    .footer-contact span { display: inline-flex; align-items: center; gap: 8px; }
    .footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding-top: 30px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; font-size: 13px; color: var(--text-muted); }

    
    @media (max-width: 992px) {
      .list-layout { grid-template-columns: 1fr; }
      .sidebar { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
    }
    @media (max-width: 768px) {
      .nav-list { display: none; }
      .menu-toggle { display: flex; }
      .article-card { flex-direction: column; }
      .article-image { width: 100%; height: 180px; }
      .sidebar { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr; }
    }