﻿:root {
      --primary: #F97316;
      --primary-hover: #FB923C;
      --bg-light: #FFF7ED;
      --bg-dark: #2B1708;
      --text-dark: #1F2937;
      --accent: #FED7AA;
      --base-black: rgb(0,0,0);
      --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    }
    * { box-sizing: border-box; margin: 0; padding: 0; }
    body { font-family: var(--font-sans); color: var(--text-dark); background-color: var(--bg-light); line-height: 1.6; }
    a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
    
    header { background-color: rgba(255, 247, 237, 0.95); backdrop-filter: blur(8px); position: sticky; top: 0; z-index: 100; border-bottom: 1px solid var(--accent); }
    .header-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: 20px; font-weight: 800; line-height: 1; color: var(--bg-dark); }
    
    .nav-desktop { display: flex; align-items: center; gap: 24px; }
    .nav-desktop a { font-weight: 500; color: var(--bg-dark); font-size: 15px; }
    .nav-desktop a:hover { color: var(--primary); }
    .btn { display: inline-flex; align-items: center; justify-content: center; padding: 10px 20px; font-weight: 600; border-radius: 8px; font-size: 14px; cursor: pointer; transition: all 0.3s ease; border: none; }
    .btn-primary { background-color: var(--primary); color: #fff; }
    .btn-primary:hover { background-color: var(--primary-hover); }
    
    .menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
    .menu-toggle span { display: block; width: 24px; height: 3px; background-color: var(--bg-dark); margin: 5px 0; }

    .drawer { position: fixed; top: 0; left: -100%; width: 280px; height: 100vh; background-color: var(--bg-light); z-index: 1000; box-shadow: 4px 0 20px rgba(0,0,0,0.15); transition: left 0.3s ease; padding: 24px; display: flex; flex-direction: column; }
    .drawer.active { left: 0; }
    .drawer-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 30px; border-bottom: 1px solid var(--accent); padding-bottom: 15px; }
    .drawer-close { background: none; border: none; font-size: 24px; color: var(--bg-dark); cursor: pointer; }
    .drawer-nav { display: flex; flex-direction: column; gap: 20px; flex-grow: 1; }
    .drawer-nav a { font-size: 16px; font-weight: 600; color: var(--bg-dark); }
    .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; }

    
    .page-banner { background: var(--bg-dark); color: #fff; padding: 60px 20px; text-align: center; }
    .page-banner-container { max-width: 800px; margin: 0 auto; }
    .page-banner h1 { font-size: 36px; font-weight: 800; color: #fff; margin-bottom: 15px; }
    .page-banner p { color: var(--accent); font-size: 16px; }

    
    .breadcrumbs { max-width: 1200px; margin: 20px auto 0 auto; padding: 0 20px; font-size: 14px; color: #6B7280; }
    .breadcrumbs a:hover { color: var(--primary); }

    
    .main-layout { max-width: 1200px; margin: 0 auto; padding: 40px 20px 80px 20px; display: grid; grid-template-columns: 3fr 1fr; gap: 40px; }
    
    
    .articles-container { display: flex; flex-direction: column; gap: 30px; }
    .article-card { background: #fff; border-radius: 12px; border: 1px solid var(--accent); display: flex; overflow: hidden; transition: all 0.3s; }
    .article-card:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(43,23,8,0.06); }
    .article-img { width: 220px; height: auto; min-height: 160px; background-color: #E5E7EB; background-size: cover; background-position: center; flex-shrink: 0; }
    .article-content { padding: 24px; display: flex; flex-direction: column; justify-content: space-between; flex-grow: 1; }
    .article-title { font-size: 20px; font-weight: 700; color: var(--bg-dark); margin-bottom: 10px; line-height: 1.4; }
    .article-summary { color: #4B5563; font-size: 14px; margin-bottom: 15px; line-height: 1.6; }
    .article-meta { display: flex; align-items: center; justify-content: space-between; font-size: 12px; color: #9CA3AF; }
    .article-tags { display: flex; gap: 6px; }
    .tag-badge { background-color: var(--bg-light); color: var(--primary); padding: 2px 8px; border-radius: 4px; font-weight: 600; }

    
    .sidebar { display: flex; flex-direction: column; gap: 30px; }
    .widget { background: #fff; border-radius: 12px; border: 1px solid var(--accent); padding: 24px; }
    .widget-title { font-size: 18px; font-weight: 700; color: var(--bg-dark); margin-bottom: 15px; border-left: 4px solid var(--primary); padding-left: 10px; }
    .hot-list { list-style: none; }
    .hot-item { margin-bottom: 15px; border-bottom: 1px dashed var(--accent); padding-bottom: 12px; }
    .hot-item:last-child { margin-bottom: 0; border-bottom: none; padding-bottom: 0; }
    .hot-title { font-size: 14px; font-weight: 600; color: var(--bg-dark); line-height: 1.4; }
    .hot-title:hover { color: var(--primary); }
    .hot-meta { font-size: 11px; color: #9CA3AF; margin-top: 4px; }

    
    .pagination { display: flex; justify-content: center; gap: 8px; margin-top: 40px; }
    .page-item { display: inline-flex; align-items: center; justify-content: center; min-width: 40px; height: 40px; padding: 0 14px; border-radius: 8px; background-color: #fff; border: 1px solid var(--accent); font-weight: 600; }
    .page-item.active { background-color: var(--primary); color: #fff; border-color: var(--primary); }
    .page-item:hover:not(.active) { background-color: var(--bg-light); border-color: var(--primary); }

    
    footer { background-color: var(--bg-dark); color: #9CA3AF; padding: 60px 20px 30px 20px; border-top: 2px solid var(--primary); font-size: 14px; }
    .footer-container { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
    .footer-brand .logo span { color: #fff; }
    .footer-brand p { margin-top: 15px; max-width: 320px; line-height: 1.8; }
    .footer-title { color: #fff; font-size: 16px; font-weight: 700; margin-bottom: 20px; }
    .footer-links { list-style: none; }
    .footer-links li { margin-bottom: 12px; }
    .footer-links a:hover { color: #fff; }
    .footer-bottom { max-width: 1200px; margin: 0 auto; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 30px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 15px; }

    @media (max-width: 768px) {
      .nav-desktop { display: none; }
      .menu-toggle { display: block; }
      .main-layout { grid-template-columns: 1fr; }
      .article-card { flex-direction: column; }
      .article-img { width: 100%; height: 200px; }
      .footer-container { grid-template-columns: 1fr; }
    }