﻿:root {
            --primary: #1D7BFF;
            --primary-hover: #0056b3;
            --bg-dark: rgb(35,39,47);
            --bg-light: #f4f6f9;
            --text-main: #1f2937;
            --text-muted: #4b5563;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; color: var(--text-main); background: #f8fafc; line-height: 1.6; }
        a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
        
        
        header { background: rgba(35, 39, 47, 0.95); backdrop-filter: blur(10px); position: sticky; top: 0; z-index: 100; border-bottom: 1px solid rgba(255,255,255,0.1); }
        .nav-container { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; padding: 15px 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: 18px; font-weight: 800; line-height: 1; color: #fff; white-space: nowrap; }
        .nav-menu { display: flex; align-items: center; gap: 24px; }
        .nav-menu a { color: rgba(255,255,255,0.85); font-weight: 500; font-size: 15px; }
        .nav-menu a:hover { color: var(--primary); }
        .menu-toggle { display: none; background: none; border: none; color: #fff; font-size: 24px; cursor: pointer; }

        
        .drawer { position: fixed; top: 0; left: -280px; width: 280px; height: 100vh; background: var(--bg-dark); z-index: 1000; transition: left 0.3s ease; padding: 30px 20px; display: flex; flex-direction: column; gap: 20px; box-shadow: 4px 0 15px rgba(0,0,0,0.3); }
        .drawer.active { left: 0; }
        .drawer-overlay { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; background: rgba(0,0,0,0.5); z-index: 999; display: none; }
        .drawer-overlay.active { display: block; }
        .drawer-header { display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 15px; }
        .drawer-close { background: none; border: none; color: #fff; font-size: 24px; cursor: pointer; }
        .drawer-nav { display: flex; flex-direction: column; gap: 15px; }
        .drawer-nav a { color: #fff; font-size: 16px; font-weight: 500; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }

        
        .page-banner { background: var(--bg-dark); color: #fff; padding: 50px 20px; text-align: center; }
        .page-banner h1 { font-size: 28px; font-weight: 800; }
        .page-banner p { color: #94a3b8; margin-top: 10px; font-size: 15px; }

        
        .tag-list-wrap { max-width: 900px; margin: 40px auto 80px auto; padding: 0 20px; }
        .tag-articles { display: flex; flex-direction: column; gap: 24px; }
        .article-card { background: #fff; border: 1px solid #e2e8f0; border-radius: 12px; display: flex; overflow: hidden; transition: all 0.3s; }
        .article-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.05); }
        .article-img { width: 220px; min-height: 160px; object-fit: cover; flex-shrink: 0; background: #e2e8f0; }
        .article-content { padding: 20px; display: flex; flex-direction: column; justify-content: space-between; flex-grow: 1; }
        .article-meta { display: flex; gap: 15px; font-size: 12px; color: var(--text-muted); margin-bottom: 10px; }
        .article-content h4 { font-size: 18px; font-weight: 700; color: var(--bg-dark); margin-bottom: 8px; line-height: 1.4; }
        .article-content p { font-size: 14px; color: var(--text-muted); line-height: 1.5; margin-bottom: 15px; }
        .article-footer { display: flex; justify-content: space-between; align-items: center; }
        .article-tag { background: #f1f5f9; color: var(--text-muted); padding: 4px 10px; border-radius: 4px; font-size: 12px; }
        .article-more { font-weight: 600; color: var(--primary); font-size: 14px; }

        
        .pagination { display: flex; justify-content: center; gap: 10px; margin-top: 40px; }
        .pagination a, .pagination span { padding: 8px 16px; border: 1px solid #e2e8f0; border-radius: 6px; font-size: 14px; background: #fff; }
        .pagination .active { background: var(--primary); color: #fff; border-color: var(--primary); }
        .pagination .disabled { color: #cbd5e1; pointer-events: none; }

        
        footer { background: rgb(35,39,47); color: rgba(255,255,255,0.7); border-top: 1px solid rgba(255,255,255,0.08); padding: 60px 20px 30px; font-size: 14px; }
        .footer-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; margin-bottom: 40px; }
        .footer-brand { grid-column: span 2; }
        .footer-brand .logo { margin-bottom: 15px; }
        .footer-brand .logo span { color: #fff; }
        .footer-brand p { margin-bottom: 20px; line-height: 1.6; max-width: 350px; }
        .footer-col h5 { color: #fff; font-size: 16px; font-weight: 700; margin-bottom: 20px; }
        .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
        .footer-col ul a:hover { color: #fff; padding-left: 5px; }
        .footer-bottom { max-width: 1200px; margin: 0 auto; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.05); display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 20px; }
        .footer-links { display: flex; gap: 20px; }

        @media (max-width: 768px) {
            .nav-menu { display: none; }
            .menu-toggle { display: block; }
            .article-card { flex-direction: column; }
            .article-img { width: 100%; height: 180px; }
            .footer-brand { grid-column: span 1; }
        }