﻿:root { --primary: rgb(202, 138, 4); --primary-hover: rgb(180, 120, 0); --bg-body: #f8fafc; --bg-surface: #ffffff; --bg-dark: #1e293b; --text-main: #0f172a; --text-muted: #64748b; --border: #e2e8f0; --radius: 8px; --shadow: 0 4px 6px -1px rgba(0,0,0,0.1); }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: sans-serif; background: var(--bg-body); color: var(--text-main); line-height: 1.6; }
        a { text-decoration: none; color: inherit; transition: 0.3s; }
        img { max-width: 100%; display: block; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        
        
        .header { background: var(--bg-dark); color: #fff; position: sticky; top: 0; z-index: 100; }
        .header-inner { display: flex; justify-content: space-between; align-items: center; height: 70px; }
        .logo { display: inline-flex; align-items: center; gap: 12px; }
        .logo img { height: 36px; width: auto; max-width: 160px; object-fit: contain; }
        .logo span { font-size: 20px; font-weight: 800; color: #fff; white-space: nowrap; }
        .desktop-nav { display: flex; gap: 30px; }
        .desktop-nav a { color: #cbd5e1; font-weight: 500; }
        .desktop-nav a:hover { color: var(--primary); }
        .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.5); z-index: 999; opacity: 0; visibility: hidden; transition: 0.3s; }
        .drawer-overlay.active { opacity: 1; visibility: visible; }
        .drawer { position: fixed; top: 0; left: -300px; width: 280px; height: 100%; background: var(--bg-surface); z-index: 1000; transition: 0.3s transform; display: flex; flex-direction: column; }
        .drawer.active { transform: translateX(300px); }
        .drawer-header { padding: 20px; display: flex; justify-content: space-between; align-items: center; background: var(--bg-dark); }
        .drawer-close { background: none; border: none; font-size: 28px; color: #fff; cursor: pointer; }
        .drawer-body { flex: 1; overflow-y: auto; padding: 20px 0; }
        .drawer-nav a { display: block; padding: 12px 20px; border-bottom: 1px solid #f1f5f9; }

        
        .page-banner { background: var(--bg-dark); padding: 40px 0; color: #fff; text-align: center; border-top: 1px solid rgba(255,255,255,0.1); border-bottom: 4px solid var(--primary); }
        .page-banner h1 { font-size: 32px; color: var(--primary); margin-bottom: 10px; }
        
        
        .breadcrumb { padding: 15px 0; font-size: 14px; color: var(--text-muted); }
        .breadcrumb a { color: var(--text-main); }
        .breadcrumb a:hover { color: var(--primary); }
        
        
        .page-main { display: flex; gap: 30px; padding: 30px 0 60px; }
        .main-col { flex: 1; min-width: 0; }
        .side-col { width: 320px; flex-shrink: 0; }

        
        .list-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
        .list-card { background: #fff; border-radius: var(--radius); border: 1px solid var(--border); overflow: hidden; transition: 0.3s; }
        .list-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--primary); }
        .list-card-img { aspect-ratio: 16/9; overflow: hidden; display: block; }
        .list-card-img img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
        .list-card:hover .list-card-img img { transform: scale(1.05); }
        .list-card-body { padding: 20px; }
        .list-card-title { font-size: 18px; font-weight: 600; margin-bottom: 10px; line-height: 1.4; }
        .list-card-title a:hover { color: var(--primary); }
        .list-card-desc { font-size: 14px; color: var(--text-muted); margin-bottom: 15px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
        .list-card-meta { display: flex; justify-content: space-between; font-size: 12px; color: #94a3b8; border-top: 1px solid var(--border); padding-top: 12px; }
        .list-card-meta .tags { color: var(--primary); }

        
        .pagination { display: flex; justify-content: center; gap: 8px; margin-top: 40px; }
        .pagination a, .pagination span { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 4px; background: #fff; border: 1px solid var(--border); color: var(--text-main); font-weight: 500; }
        .pagination a:hover { border-color: var(--primary); color: var(--primary); }
        .pagination .current { background: var(--primary); color: #fff; border-color: var(--primary); }

        
        .widget { background: #fff; border-radius: var(--radius); padding: 20px; margin-bottom: 30px; border: 1px solid var(--border); }
        .widget-title { font-size: 18px; font-weight: 700; margin-bottom: 15px; border-left: 4px solid var(--primary); padding-left: 10px; }
        
        .footer { background: #0f172a; color: #cbd5e1; padding: 50px 0 20px; margin-top: 40px; border-top: 5px solid var(--primary); }
        .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 30px; }
        .footer-title { color: #fff; font-size: 18px; margin-bottom: 15px; }
        .footer-links { list-style: none; }
        .footer-links li { margin-bottom: 10px; }
        .footer-links a:hover { color: var(--primary); }
        .footer-bottom { text-align: center; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; font-size: 14px; }

        @media (max-width: 992px) {
            .page-main { flex-direction: column; }
            .side-col { width: 100%; }
            .list-grid { grid-template-columns: 1fr; }
        }
        @media (max-width: 768px) {
            .desktop-nav { display: none; }
            .menu-toggle { display: block; }
            .footer-grid { grid-template-columns: 1fr; }
        }