﻿:root {
      --primary: rgb(14,165,233);
      --primary-hover: #0284C7;
      --bg-dark: #070B19;
      --bg-card: rgba(15, 23, 42, 0.6);
      --bg-card-hover: rgba(15, 23, 42, 0.85);
      --text-main: #F8FAFC;
      --text-muted: #94A3B8;
      --border-color: rgba(255, 255, 255, 0.08);
      --glacier-blue: #38BDF8;
      --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    }

    * { box-sizing: border-box; margin: 0; padding: 0; }
    body { background-color: var(--bg-dark); color: var(--text-main); font-family: var(--font); line-height: 1.6; padding-top: 70px; }
    a { color: inherit; text-decoration: none; transition: all 0.3s; }
    .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }

    
    .site-header { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; background: rgba(7, 11, 25, 0.8); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border-color); }
    .header-container { display: flex; align-items: center; justify-content: space-between; height: 70px; 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: 18px; font-weight: 800; line-height: 1; color: var(--text-main); white-space: nowrap; }
    .desktop-nav { display: flex; align-items: center; gap: 32px; }
    .desktop-nav a { font-size: 15px; font-weight: 500; color: var(--text-muted); }
    .desktop-nav a:hover, .desktop-nav a.active { color: var(--primary); }
    .header-actions { display: flex; align-items: center; gap: 16px; }
    .nav-cta-btn { background: var(--primary); color: #fff; padding: 8px 20px; border-radius: 6px; font-size: 14px; font-weight: 600; box-shadow: 0 4px 12px rgba(14, 165, 233, 0.3); }
    .nav-cta-btn:hover { background: var(--primary-hover); transform: translateY(-1px); }
    .mobile-menu-toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 6px; padding: 4px; }
    .mobile-menu-toggle span { display: block; width: 24px; height: 2px; background-color: var(--text-main); transition: all 0.3s ease; }

    
    .mobile-drawer { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 2000; visibility: hidden; transition: all 0.3s ease; }
    .mobile-drawer.active { visibility: visible; }
    .drawer-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.6); backdrop-filter: blur(4px); opacity: 0; transition: opacity 0.3s ease; }
    .mobile-drawer.active .drawer-overlay { opacity: 1; }
    .drawer-content { position: absolute; top: 0; left: -280px; width: 280px; height: 100%; background: #0b1126; border-right: 1px solid var(--border-color); padding: 24px; display: flex; flex-direction: column; gap: 32px; transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1); }
    .mobile-drawer.active .drawer-content { left: 0; }
    .drawer-header { display: flex; align-items: center; justify-content: space-between; }
    .drawer-close { background: none; border: none; color: var(--text-muted); font-size: 28px; cursor: pointer; }
    .drawer-nav { display: flex; flex-direction: column; gap: 20px; }
    .drawer-nav a { font-size: 16px; font-weight: 500; color: var(--text-muted); }
    .drawer-nav a:hover { color: var(--primary); padding-left: 4px; }
    .drawer-footer { margin-top: auto; border-top: 1px solid var(--border-color); padding-top: 20px; }
    .drawer-footer p { font-size: 12px; color: var(--text-muted); margin-bottom: 8px; }
    .drawer-phone { font-size: 18px; font-weight: 700; color: var(--primary); }

    
    .breadcrumbs-wrap { background: rgba(255,255,255,0.01); border-bottom: 1px solid var(--border-color); padding: 15px 0; font-size: 13px; color: var(--text-muted); }
    .breadcrumbs-wrap a:hover { color: var(--primary); }

    
    .list-wrapper { padding: 60px 0; }
    .list-inner { display: grid; grid-template-columns: 2.8fr 1.2fr; gap: 40px; }

    
    .list-articles-grid { display: flex; flex-direction: column; gap: 30px; }
    .row-article-card { display: grid; grid-template-columns: 220px 1fr; gap: 24px; background: var(--bg-card); border: 1px solid var(--border-color); border-radius: 12px; overflow: hidden; padding: 16px; transition: all 0.3s; }
    .row-article-card:hover { border-color: rgba(29,123,255,0.3); transform: translateX(5px); background: var(--bg-card-hover); }
    .row-img { position: relative; border-radius: 8px; overflow: hidden; background: #020617; }
    .row-img img { width: 100%; height: 100%; object-fit: cover; }
    .row-content { display: flex; flex-direction: column; justify-content: space-between; }
    .row-title { font-size: 18px; font-weight: 700; line-height: 1.4; margin-bottom: 8px; }
    .row-summary { font-size: 13px; color: var(--text-muted); margin-bottom: 12px; line-height: 1.6; }
    .row-meta { display: flex; align-items: center; gap: 16px; font-size: 12px; color: var(--text-muted); }

    
    .sidebar { display: flex; flex-direction: column; gap: 30px; }
    .widget { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: 12px; padding: 24px; }
    .widget-title { font-size: 16px; font-weight: 700; border-left: 3px solid var(--primary); padding-left: 12px; margin-bottom: 20px; }
    .sidebar-hot-list { display: flex; flex-direction: column; gap: 16px; }
    .hot-item-small { display: flex; gap: 12px; }
    .hot-item-small img { width: 60px; height: 60px; border-radius: 6px; object-fit: cover; background: #020617; }
    .hot-item-info { display: flex; flex-direction: column; justify-content: center; }
    .hot-item-info h5 { font-size: 13px; font-weight: 600; line-height: 1.4; margin-bottom: 4px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
    .hot-item-info span { font-size: 11px; color: var(--text-muted); }

    
    .tag-cloud-sidebar { display: flex; flex-wrap: wrap; gap: 8px; }
    .tag-cloud-sidebar a { font-size: 12px; padding: 5px 12px; background: rgba(255,255,255,0.03); border: 1px solid var(--border-color); border-radius: 50px; color: var(--text-muted); }
    .tag-cloud-sidebar a:hover { background: var(--primary); color: #fff; border-color: var(--primary); }

    
    .pagination-wrap { display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 50px; }
    .pagination-wrap a, .pagination-wrap span { display: inline-flex; align-items: center; justify-content: center; min-width: 40px; height: 40px; padding: 0 14px; border-radius: 8px; border: 1px solid var(--border-color); background: rgba(255,255,255,0.02); font-size: 14px; font-weight: 500; }
    .pagination-wrap a:hover, .pagination-wrap .is-current { background: var(--primary); color: #fff; border-color: var(--primary); }
    .pagination-wrap .is-disabled { opacity: 0.4; cursor: not-allowed; }

    
    .site-footer { background: #030712; border-top: 1px solid var(--border-color); padding: 80px 0 30px 0; }
    .footer-container { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 40px; margin-bottom: 60px; }
    .footer-brand p { font-size: 14px; color: var(--text-muted); margin-top: 16px; line-height: 1.6; }
    .footer-link-group h4 { font-size: 15px; font-weight: 700; margin-bottom: 20px; color: var(--text-main); }
    .footer-link-group ul { list-style: none; }
    .footer-link-group ul li { margin-bottom: 12px; }
    .footer-link-group ul li a { font-size: 13px; color: var(--text-muted); }
    .footer-link-group ul li a:hover { color: var(--primary); }
    .footer-bottom { border-top: 1px solid var(--border-color); padding-top: 30px; text-align: center; font-size: 12px; color: var(--text-muted); }

    @media (max-width: 992px) {
      .list-inner { grid-template-columns: 1fr; }
      .row-article-card { grid-template-columns: 160px 1fr; }
    }
    @media (max-width: 768px) {
      .desktop-nav, .header-actions .nav-cta-btn { display: none; }
      .mobile-menu-toggle { display: flex; }
      .row-article-card { grid-template-columns: 1fr; }
      .footer-container { grid-template-columns: 1fr; }
    }