﻿:root {
      --primary: rgb(249,115,22);
      --primary-hover: rgb(234,88,12);
      --primary-light: rgb(254,243,199);
      --dark: #0f172a;
      --slate-700: #334155;
      --slate-100: #f1f5f9;
      --white: #ffffff;
      --shadow: 0 10px 30px -10px rgba(249,115,22, 0.15);
      --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; color: var(--slate-700); background-color: #f8fafc; line-height: 1.6; }
    a { text-decoration: none; color: inherit; transition: var(--transition); }
    img { max-width: 100%; height: auto; display: block; }
    
    .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
    
    
    .site-header { background: var(--white); box-shadow: 0 2px 10px rgba(0,0,0,0.03); position: sticky; top: 0; z-index: 100; height: 72px; display: flex; align-items: center; }
    .header-container { display: flex; justify-content: space-between; align-items: center; width: 100%; }
    
    .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: var(--dark); white-space: nowrap; letter-spacing: -0.5px; }
    
    .desktop-nav { display: flex; gap: 32px; align-items: center; }
    .desktop-nav a { font-size: 15px; font-weight: 600; color: var(--slate-700); position: relative; padding: 8px 0; }
    .desktop-nav a:hover, .desktop-nav a.active { color: var(--primary); }
    .desktop-nav a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--primary); transition: var(--transition); }
    .desktop-nav a:hover::after, .desktop-nav a.active::after { width: 100%; }
    
    .menu-btn { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 6px; z-index: 110; padding: 4px; }
    .menu-btn span { width: 24px; height: 2px; background: var(--dark); transition: var(--transition); transform-origin: center; }
    
    
    .overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(15, 23, 42, 0.6); backdrop-filter: blur(4px); opacity: 0; visibility: hidden; z-index: 105; transition: var(--transition); }
    .overlay.active { opacity: 1; visibility: visible; }
    .drawer { position: fixed; top: 0; left: -320px; width: 300px; height: 100%; background: var(--white); z-index: 109; box-shadow: 10px 0 30px rgba(0,0,0,0.1); transition: var(--transition); display: flex; flex-direction: column; padding: 24px; }
    .drawer.active { left: 0; }
    .drawer-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; }
    .drawer-header .close-btn { background: none; border: none; font-size: 28px; cursor: pointer; color: var(--slate-700); }
    .drawer-nav { display: flex; flex-direction: column; gap: 20px; }
    .drawer-nav a { font-size: 16px; font-weight: 600; padding: 10px 0; border-bottom: 1px solid var(--slate-100); }
    .drawer-nav a:hover { color: var(--primary); padding-left: 8px; }

    
    .page-banner { background: #1e293b; color: var(--white); padding: 50px 0; border-bottom: 4px solid var(--primary); }
    .breadcrumbs { display: flex; gap: 8px; font-size: 14px; color: #94a3b8; margin-bottom: 12px; }
    .breadcrumbs a:hover { color: var(--primary); }
    .banner-title { font-size: 28px; font-weight: 800; }
    
    
    .list-container { padding: 60px 0; display: grid; grid-template-columns: 2.3fr 1fr; gap: 40px; }
    .article-stream { display: flex; flex-direction: column; gap: 30px; }
    .list-card { display: flex; gap: 24px; background: var(--white); padding: 24px; border-radius: 12px; box-shadow: 0 4px 6px -1px rgba(0,0,0,0.01), 0 2px 4px -1px rgba(0,0,0,0.01); border: 1px solid var(--slate-100); }
    .list-card:hover { transform: translateY(-3px); box-shadow: 0 12px 24px rgba(0,0,0,0.04); border-color: rgba(249,115,22, 0.2); }
    .list-img { width: 220px; height: 140px; border-radius: 8px; object-fit: cover; flex-shrink: 0; background: #e2e8f0; }
    .list-details { display: flex; flex-direction: column; justify-content: space-between; flex-grow: 1; }
    .list-meta { display: flex; gap: 16px; font-size: 12px; color: #94a3b8; align-items: center; margin-bottom: 8px; }
    .list-tag { background: var(--primary-light); color: var(--primary); padding: 2px 8px; border-radius: 4px; font-weight: 600; }
    .list-title { font-size: 20px; font-weight: 700; color: var(--dark); line-height: 1.4; margin-bottom: 8px; }
    .list-title:hover { color: var(--primary); }
    .list-desc { font-size: 14px; color: var(--slate-700); line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; margin-bottom: 15px; }
    .list-readmore { font-size: 14px; font-weight: 600; color: var(--primary); display: flex; align-items: center; gap: 4px; }
    
    
    .pagination { display: flex; justify-content: center; gap: 10px; margin-top: 50px; }
    .pagination a, .pagination span { min-width: 40px; height: 40px; border-radius: 8px; border: 1px solid var(--slate-100); background: var(--white); display: flex; align-items: center; justify-content: center; font-weight: 600; font-size: 14px; }
    .pagination a:hover { border-color: var(--primary); color: var(--primary); }
    .pagination .is-current { background: var(--primary); color: var(--white); border-color: var(--primary); }

    
    .sidebar { display: flex; flex-direction: column; gap: 40px; }
    .widget { background: var(--white); padding: 30px; border-radius: 12px; border: 1px solid var(--slate-100); }
    .widget-title { font-size: 18px; font-weight: 700; color: var(--dark); margin-bottom: 20px; padding-bottom: 10px; border-bottom: 2px solid var(--slate-100); position: relative; }
    .widget-title::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 40px; height: 2px; background: var(--primary); }
    
    .widget-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
    .widget-list li { display: flex; justify-content: space-between; font-size: 14px; border-bottom: 1px dashed var(--slate-100); padding-bottom: 10px; }
    .widget-list a { font-weight: 600; color: var(--dark); }
    .widget-list a:hover { color: var(--primary); }
    
    .tag-cloud { display: flex; flex-wrap: wrap; gap: 10px; }
    .tag-cloud a { font-size: 12px; background: var(--slate-100); padding: 6px 12px; border-radius: 6px; }
    .tag-cloud a:hover { background: var(--primary); color: var(--white); }

    
    .site-footer { background: #0f172a; color: #94a3b8; padding: 70px 0 30px; border-top: 1px solid #1e293b; }
    .footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 40px; margin-bottom: 50px; }
    .footer-brand .logo span { color: var(--white); }
    .footer-brand p { margin-top: 20px; font-size: 14px; line-height: 1.7; }
    .footer-box h4 { font-size: 16px; color: var(--white); font-weight: 700; margin-bottom: 24px; position: relative; padding-bottom: 8px; }
    .footer-box h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 30px; height: 2px; background: var(--primary); }
    .footer-links { list-style: none; }
    .footer-links li { margin-bottom: 12px; }
    .footer-links a { font-size: 14px; }
    .footer-links a:hover { color: var(--primary); padding-left: 6px; }
    .footer-bottom { border-top: 1px solid #1e293b; padding-top: 30px; display: flex; justify-content: space-between; align-items: center; font-size: 13px; }
    .footer-legal { display: flex; gap: 24px; }
    .footer-legal a:hover { color: var(--white); }

    
    @media (max-width: 992px) {
      .list-container { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 768px) {
      .desktop-nav { display: none; }
      .menu-btn { display: flex; }
      .list-card { flex-direction: column; }
      .list-img { width: 100%; height: 180px; }
      .footer-grid { grid-template-columns: 1fr; }
      .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
    }