﻿:root {
      --primary: rgb(244,63,94);
      --primary-hover: rgb(225,29,72);
      --secondary: #1D7BFF;
      --secondary-glow: rgba(29, 123, 255, 0.15);
      --dark-bg: #0A0F1D;
      --silver-white: #F1F5F9;
      --text-main: #0F172A;
      --text-muted: #475569;
      --border-color: #E2E8F0;
      --card-bg: #FFFFFF;
      --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    * { box-sizing: border-box; margin: 0; padding: 0; }
    body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; color: var(--text-main); background: #FAFBFD; line-height: 1.6; }
    a { color: inherit; text-decoration: none; }
    
    
    .header { background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px); border-bottom: 1px solid var(--border-color); position: sticky; top: 0; z-index: 100; }
    .header-container { max-width: 1200px; margin: 0 auto; padding: 15px 20px; display: flex; align-items: center; justify-content: space-between; }
    .logo { display: inline-flex; align-items: center; gap: 12px; }
    .logo img { display: block; height: 40px; width: auto; max-width: 160px; object-fit: contain; }
    .logo span { display: inline-block; font-size: 20px; font-weight: 800; color: var(--text-main); }
    .nav-desktop { display: flex; align-items: center; gap: 30px; }
    .nav-desktop a { font-size: 15px; font-weight: 500; color: var(--text-muted); }
    .nav-desktop a:hover { color: var(--primary); }
    .nav-btn { background: var(--primary); color: #fff !important; padding: 8px 20px; border-radius: 99px; font-weight: 600 !important; }
    .menu-toggle { display: none; background: none; border: none; 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: 998; opacity: 0; pointer-events: none; transition: var(--transition); }
    .drawer { position: fixed; top: 0; left: -300px; width: 300px; height: 100%; background: #fff; z-index: 999; display: flex; flex-direction: column; transition: var(--transition); }
    .drawer.active { left: 0; }
    .drawer-overlay.active { opacity: 1; pointer-events: auto; }
    .drawer-header { padding: 20px; border-bottom: 1px solid var(--border-color); display: flex; align-items: center; justify-content: space-between; }
    .drawer-close { background: none; border: none; font-size: 24px; cursor: pointer; }
    .drawer-menu { padding: 20px 0; overflow-y: auto; flex: 1; }
    .drawer-menu a { display: block; padding: 12px 30px; font-size: 16px; color: var(--text-muted); }
    .drawer-menu a:hover { color: var(--primary); background: rgba(244,63,94,0.05); }

    
    .page-banner { background: #0A0F1D; color: #fff; padding: 60px 20px; text-align: center; }
    .page-banner h1 { font-size: 32px; font-weight: 800; margin-bottom: 15px; }
    .breadcrumb { font-size: 14px; color: #94A3B8; }
    .breadcrumb a { color: #BDD6FF; }
    .breadcrumb a:hover { color: #fff; }

    
    .list-wrapper { max-width: 1200px; margin: 40px auto; padding: 0 20px; display: grid; grid-template-columns: 2.5fr 1fr; gap: 40px; }
    
    
    .articles-list { display: flex; flex-direction: column; gap: 30px; }
    .article-item { background: #fff; border: 1px solid var(--border-color); border-radius: 12px; overflow: hidden; display: grid; grid-template-columns: 1fr 1.8fr; transition: var(--transition); }
    .article-item:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0,0,0,0.04); }
    .article-item-img { background: #e2e8f0; aspect-ratio: 16/10; overflow: hidden; }
    .article-item-img img { width: 100%; height: 100%; object-fit: cover; }
    .article-item-content { padding: 24px; display: flex; flex-direction: column; justify-content: space-between; }
    .article-item-title { font-size: 18px; font-weight: 700; color: var(--text-main); margin-bottom: 10px; line-height: 1.4; }
    .article-item-summary { font-size: 14px; color: var(--text-muted); line-height: 1.5; margin-bottom: 15px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
    .article-item-meta { display: flex; align-items: center; justify-content: space-between; font-size: 12px; color: #94A3B8; border-top: 1px solid var(--border-color); padding-top: 12px; }
    
    
    .sidebar { display: flex; flex-direction: column; gap: 30px; }
    .widget { background: #fff; border: 1px solid var(--border-color); border-radius: 12px; padding: 24px; }
    .widget-title { font-size: 16px; font-weight: 700; color: var(--text-main); margin-bottom: 20px; border-left: 3px solid var(--primary); padding-left: 10px; }
    
    .hot-list { display: flex; flex-direction: column; gap: 15px; }
    .hot-item { display: flex; gap: 12px; align-items: flex-start; }
    .hot-num { background: #E2E8F0; color: var(--text-main); width: 22px; height: 22px; border-radius: 4px; font-size: 11px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
    .hot-item:nth-child(1) .hot-num { background: var(--primary); color: #fff; }
    .hot-item:nth-child(2) .hot-num { background: #FDA4AF; color: #fff; }
    .hot-item:nth-child(3) .hot-num { background: #FECDD3; color: #fff; }
    .hot-title { font-size: 14px; font-weight: 600; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
    
    .tags-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
    .tag-link { font-size: 12px; background: #F1F5F9; color: var(--text-muted); padding: 5px 12px; border-radius: 99px; transition: var(--transition); }
    .tag-link:hover { background: var(--primary); color: #fff; }

    
    .pagination { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 40px; }
    .page-item { display: inline-flex; align-items: center; justify-content: center; min-width: 38px; height: 38px; padding: 0 10px; border-radius: 6px; border: 1px solid var(--border-color); font-size: 14px; font-weight: 500; background: #fff; transition: var(--transition); }
    .page-item:hover, .page-item.active { background: var(--primary); color: #fff; border-color: var(--primary); }
    .page-item.disabled { color: #CBD5E1; pointer-events: none; }

    
    .footer { background: #0F172A; color: #94A3B8; padding: 70px 20px 30px; border-top: 1px solid rgba(255,255,255,0.05); }
    .footer-container { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 40px; margin-bottom: 50px; }
    .footer-brand .logo span { color: #fff; }
    .footer-brand p { margin-top: 20px; font-size: 14px; line-height: 1.6; }
    .footer-col h4 { font-size: 15px; font-weight: 700; color: #F1F5F9; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 0.5px; }
    .footer-col ul { list-style: none; }
    .footer-col ul li { margin-bottom: 12px; }
    .footer-col ul li a { font-size: 14px; transition: var(--transition); }
    .footer-col ul li a:hover { color: #fff; }
    .footer-bottom { max-width: 1200px; margin: 0 auto; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.05); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; font-size: 13px; }
    .footer-bottom-links { display: flex; gap: 20px; }

    @media (max-width: 768px) {
      .nav-desktop { display: none; }
      .menu-toggle { display: block; }
      .list-wrapper { grid-template-columns: 1fr; }
      .article-item { grid-template-columns: 1fr; }
      .footer-container { grid-template-columns: 1fr; }
    }