﻿:root { --primary: rgb(234,179,8); --text-main: #18181b; --text-muted: #52525b; --bg-body: #f8fafc; --bg-card: #ffffff; --dark-bg: #0f172a; --border-color: #e2e8f0; --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1); }
        * { margin: 0; padding: 0; box-sizing: border-box; font-family: 'PingFang SC', sans-serif; }
        body { background-color: var(--bg-body); color: var(--text-main); line-height: 1.8; }
        a { text-decoration: none; color: inherit; transition: 0.3s; }
        ul, li { list-style: none; }
        img { max-width: 100%; height: auto; display: block; border-radius: 8px; }
        
        
        .header { background: var(--dark-bg); position: sticky; top: 0; z-index: 100; box-shadow: var(--shadow); }
        .header-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; display: flex; justify-content: space-between; align-items: center; height: 72px; }
        .logo { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
        .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: #ffffff; white-space: nowrap; }
        .nav-desktop { display: none; }
        .nav-desktop ul { display: flex; gap: 30px; align-items: center; }
        .nav-desktop a { color: #cbd5e1; font-weight: 500; font-size: 15px; }
        .nav-desktop a:hover { color: var(--primary); }
        .menu-btn { display: block; background: none; border: none; color: #fff; font-size: 24px; cursor: pointer; }
        .drawer-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.6); opacity: 0; visibility: hidden; transition: 0.3s; z-index: 999; }
        .mobile-drawer { position: fixed; top: 0; left: -300px; width: 280px; height: 100vh; background: #fff; box-shadow: var(--shadow); transition: 0.3s; z-index: 1000; }
        .drawer-active .drawer-overlay { opacity: 1; visibility: visible; }
        .drawer-active .mobile-drawer { left: 0; }
        .drawer-header { padding: 20px; border-bottom: 1px solid var(--border-color); display: flex; justify-content: space-between; align-items: center; }
        .drawer-header .logo span { color: var(--text-main); }
        .close-drawer { background: none; border: none; font-size: 24px; color: var(--text-muted); cursor: pointer; }
        .drawer-nav { padding: 20px; }
        .drawer-nav li { margin-bottom: 15px; }
        .drawer-nav a { display: block; font-size: 16px; font-weight: 500; }
        @media(min-width: 768px) { .nav-desktop { display: block; } .menu-btn { display: none; } }

        
        .article-layout { max-width: 900px; margin: 40px auto; padding: 0 20px; }
        .breadcrumb { font-size: 14px; color: #94a3b8; margin-bottom: 20px; }
        .breadcrumb a { color: var(--text-main); }
        .breadcrumb a:hover { color: var(--primary); }

        .article-main { background: var(--bg-card); padding: 30px; border-radius: 12px; box-shadow: var(--shadow); }
        @media(min-width: 768px) { .article-main { padding: 50px; } }
        .article-header { margin-bottom: 30px; border-bottom: 1px solid var(--border-color); padding-bottom: 20px; }
        .article-title { font-size: 28px; line-height: 1.4; margin-bottom: 15px; color: var(--text-main); }
        @media(min-width: 768px) { .article-title { font-size: 34px; } }
        .article-meta { display: flex; flex-wrap: wrap; gap: 15px; font-size: 13px; color: #64748b; }
        .article-meta span { display: flex; align-items: center; gap: 5px; }

        .article-content { font-size: 16px; color: #334155; }
        .article-content p { margin-bottom: 20px; text-align: justify; }
        .article-content h2, .article-content h3 { margin: 30px 0 15px; color: var(--text-main); }
        .article-content blockquote { border-left: 4px solid var(--primary); background: var(--bg-body); padding: 15px 20px; margin: 20px 0; color: #475569; font-style: italic; border-radius: 0 8px 8px 0; }
        
        .article-tags-wrap { margin-top: 40px; padding-top: 20px; border-top: 1px dashed var(--border-color); }
        .article-tags-wrap a { display: inline-block; padding: 5px 12px; background: var(--primary); color: #fff; border-radius: 4px; font-size: 13px; margin-right: 10px; margin-bottom: 10px; }
        .article-tags-wrap a:hover { opacity: 0.9; }

        .article-nav { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 20px; margin-top: 40px; padding: 20px; background: var(--bg-body); border-radius: 8px; font-size: 14px; }
        .article-nav a { color: var(--text-main); display: block; }
        .article-nav a:hover { color: var(--primary); }
        .nav-prev, .nav-next { flex: 1; min-width: 200px; }
        .nav-next { text-align: right; }

        
        .related-section { margin-top: 50px; }
        .related-title { font-size: 20px; margin-bottom: 20px; padding-left: 10px; border-left: 4px solid var(--primary); }
        .related-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
        @media(min-width: 600px) { .related-grid { grid-template-columns: repeat(2, 1fr); } }
        @media(min-width: 900px) { .related-grid { grid-template-columns: repeat(3, 1fr); } }
        .related-card { background: var(--bg-card); border-radius: 8px; overflow: hidden; box-shadow: var(--shadow); transition: 0.3s; }
        .related-card:hover { transform: translateY(-3px); }
        .related-img { width: 100%; height: 140px; object-fit: cover; border-radius: 0; }
        .related-info { padding: 15px; }
        .related-info h4 { font-size: 15px; margin-bottom: 10px; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
        .related-info h4 a:hover { color: var(--primary); }
        .related-meta { font-size: 12px; color: #94a3b8; }

        
        .footer { background: var(--dark-bg); color: #cbd5e1; padding: 60px 20px 20px; margin-top: 60px; }
        .footer-container { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: 40px; margin-bottom: 40px; }
        .footer-brand .logo span { color: #fff; }
        .footer-links h4 { color: #fff; margin-bottom: 20px; font-size: 16px; }
        .footer-links ul li { margin-bottom: 10px; }
        .footer-links a:hover { color: var(--primary); }
        .footer-bottom { max-width: 1200px; margin: 0 auto; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1); text-align: center; font-size: 13px; color: #64748b; }
        .footer-bottom a { color: #64748b; margin: 0 10px; }
        @media(min-width: 768px) { .footer-container { grid-template-columns: 2fr 1fr 1fr; } }