﻿:root {
      --primary: #1D7BFF;
      --primary-hover: #1062d4;
      --theme-color: rgb(68,71,90);
      --glacier-blue: #E0F2FE;
      --silver-white: #F8FAFC;
      --deep-sea-ink: #0F172A;
      --text-dark: #0F172A;
      --text-light: #F8FAFC;
      --text-muted: #64748B;
      --border-color: rgba(226, 232, 240, 0.8);
      --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    }
    * { box-sizing: border-box; margin: 0; padding: 0; }
    body { font-family: var(--font-family); background-color: var(--silver-white); color: var(--text-dark); line-height: 1.6; }
    a { color: inherit; text-decoration: none; }
    .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
    
    
    .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(--text-dark); white-space: nowrap; }

    
    .site-header { background-color: rgba(255, 255, 255, 0.95); backdrop-filter: blur(8px); border-bottom: 1px solid var(--border-color); position: sticky; top: 0; z-index: 1000; }
    .header-container { display: flex; align-items: center; justify-content: space-between; height: 70px; }
    .desktop-nav { display: flex; align-items: center; gap: 30px; }
    .desktop-nav a { font-size: 15px; font-weight: 500; color: var(--text-dark); transition: color 0.3s ease; }
    .desktop-nav a:hover, .desktop-nav a.active { color: var(--primary); }
    .header-right { display: flex; align-items: center; gap: 15px; }
    .btn-nav-action { background-color: var(--primary); color: white; padding: 8px 20px; border-radius: 6px; font-size: 14px; font-weight: 600; }
    .drawer-trigger { display: none; flex-direction: column; justify-content: space-between; width: 24px; height: 18px; background: transparent; border: none; cursor: pointer; }
    .drawer-trigger span { display: block; width: 100%; height: 2px; background-color: var(--text-dark); }

    
    .mobile-drawer { position: fixed; top: 0; left: -100%; width: 100%; height: 100%; z-index: 2000; transition: left 0.4s ease; }
    .mobile-drawer.active { left: 0; }
    .drawer-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(15, 23, 42, 0.6); backdrop-filter: blur(4px); }
    .drawer-content { position: absolute; top: 0; left: 0; width: 300px; height: 100%; background-color: white; padding: 24px; display: flex; flex-direction: column; }
    .drawer-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 40px; }
    .drawer-close { background: none; border: none; font-size: 28px; cursor: pointer; }
    .drawer-nav { display: flex; flex-direction: column; gap: 20px; margin-bottom: auto; }
    .drawer-nav a { font-size: 16px; font-weight: 500; color: var(--text-dark); padding: 10px 0; border-bottom: 1px solid rgba(0,0,0,0.05); }
    .drawer-footer { border-top: 1px solid rgba(0,0,0,0.1); padding-top: 20px; text-align: center; font-size: 14px; color: var(--text-muted); }

    
    .page-banner { background: linear-gradient(135deg, var(--theme-color) 0%, #1e1b4b 100%); color: white; padding: 60px 0; text-align: center; }
    .page-banner h1 { font-size: 32px; font-weight: 700; margin-bottom: 12px; }

    
    .main-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; padding: 60px 0; }
    .list-articles { display: flex; flex-direction: column; gap: 30px; }
    .article-card-row { display: grid; grid-template-columns: 1fr; gap: 24px; }
    .article-card-main { display: grid; grid-template-columns: 240px 1fr; gap: 20px; background: white; border: 1px solid var(--border-color); border-radius: 8px; overflow: hidden; }
    .art-img-box { height: 100%; min-height: 160px; background-color: #cbd5e1; position: relative; }
    .art-img-box img { width: 100%; height: 100%; object-fit: cover; position: absolute; top:0; left: 0; }
    .art-body { padding: 20px; display: flex; flex-direction: column; justify-content: space-between; }
    .art-meta { display: flex; gap: 15px; font-size: 12px; color: var(--text-muted); margin-bottom: 8px; }
    .art-title { font-size: 18px; font-weight: 600; line-height: 1.4; margin-bottom: 10px; }
    .art-summary { font-size: 13px; color: var(--text-muted); margin-bottom: 15px; }
    .art-bottom { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid rgba(0,0,0,0.05); padding-top: 12px; }
    .art-tags { font-size: 11px; color: var(--primary); background-color: rgba(29, 123, 255, 0.08); padding: 2px 8px; border-radius: 4px; }
    .art-more { font-size: 12px; font-weight: 600; color: var(--primary); }

    
    .sidebar-widget { background: white; border: 1px solid var(--border-color); border-radius: 8px; padding: 24px; margin-bottom: 30px; }
    .widget-title { font-size: 16px; font-weight: 700; margin-bottom: 20px; padding-bottom: 10px; border-bottom: 2px solid var(--primary); }
    .tag-cloud-wrap { display: flex; flex-wrap: wrap; gap: 8px; }
    .tag-item { font-size: 12px; padding: 4px 10px; background: #f1f5f9; border-radius: 4px; color: var(--text-muted); transition: all 0.3s; }
    .tag-item:hover { background: var(--primary); color: white; }

    
    .pagination-container { display: flex; justify-content: center; margin-top: 40px; }
    .pagination { display: inline-flex; gap: 8px; }
    .page-link { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 6px; background-color: white; border: 1px solid var(--border-color); font-weight: 600; transition: all 0.3s; }
    .page-link:hover, .page-link.active { background-color: var(--primary); color: white; border-color: var(--primary); }
    .page-link.disabled { opacity: 0.5; pointer-events: none; }

    
    .site-footer { background-color: var(--deep-sea-ink); color: #94a3b8; padding: 80px 0 30px; border-top: 1px solid rgba(255,255,255,0.05); }
    .footer-container { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 50px; }
    .footer-brand .logo span { color: white; }
    .footer-desc { font-size: 13px; margin: 20px 0; }
    .footer-contact { font-size: 13px; color: #cbd5e1; display: flex; flex-direction: column; gap: 8px;}
    .footer-group h4 { color: white; font-size: 15px; font-weight: 600; margin-bottom: 20px; }
    .footer-group ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
    .footer-group ul a { font-size: 13px; }
    .footer-group ul a:hover { color: var(--primary); }
    .footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding-top: 30px; }
    .footer-bottom-container { display: flex; justify-content: space-between; align-items: center; }
    .copyright { font-size: 13px; }
    .risk-warning { font-size: 11px; color: #64748b; max-width: 600px; text-align: right; line-height: 1.5; }

    @media (max-width: 1024px) {
      .main-grid { grid-template-columns: 1fr; }
    }
    @media (max-width: 768px) {
      .desktop-nav, .header-right .btn-nav-action { display: none; }
      .drawer-trigger { display: flex; }
      .article-card-main { grid-template-columns: 1fr; }
      .footer-container { grid-template-columns: 1fr; }
      .footer-bottom-container { flex-direction: column; text-align: center; }
      .risk-warning { text-align: center; margin-top: 15px; }
    }