﻿:root {
      --primary-color: rgb(48, 209, 88);
      --primary-hover: rgb(38, 185, 75);
      --bg-dark: #0a0e17;
      --bg-card: #131a26;
      --bg-light: #f5f7fa;
      --text-main: #ffffff;
      --text-muted: #8a99ad;
      --text-dark: #1e2530;
      --border-color: rgba(255, 255, 255, 0.1);
      --max-width: 1200px;
    }

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

    
    .site-header { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; background: rgba(10, 14, 23, 0.95); backdrop-filter: blur(10px); border-bottom: 1px solid var(--border-color); height: 72px; }
    .header-container { display: flex; justify-content: space-between; align-items: center; height: 100%; max-width: var(--max-width); margin: 0 auto; padding: 0 20px; }
    .logo { display: inline-flex; align-items: center; gap: 12px; }
    .logo img { height: 40px; width: auto; max-width: 160px; object-fit: contain; }
    .logo span { font-size: 18px; font-weight: 800; color: #fff; }
    .desktop-nav { display: flex; gap: 30px; }
    .desktop-nav a { font-size: 15px; color: var(--text-muted); }
    .desktop-nav a:hover { color: var(--primary-color); }
    .btn { display: inline-flex; align-items: center; justify-content: center; padding: 10px 24px; border-radius: 6px; font-size: 14px; font-weight: 600; cursor: pointer; transition: 0.3s; border: none; }
    .btn-primary { background-color: var(--primary-color); color: #000; }
    .btn-primary:hover { background-color: var(--primary-hover); transform: translateY(-2px); }
    .menu-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; }
    .menu-toggle span { display: block; width: 24px; height: 2px; background-color: #fff; }

    
    .drawer-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.7); z-index: 1999; opacity: 0; visibility: hidden; transition: 0.3s; }
    .drawer-menu { position: fixed; top: 0; left: -280px; width: 280px; height: 100%; background-color: var(--bg-card); z-index: 2000; transition: 0.3s; padding: 20px; display: flex; flex-direction: column; }
    .drawer-menu.active { left: 0; }
    .drawer-overlay.active { opacity: 1; visibility: visible; }
    .drawer-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; border-bottom: 1px solid var(--border-color); padding-bottom: 15px; }
    .drawer-close { background: none; border: none; color: #fff; font-size: 28px; }
    .drawer-nav { display: flex; flex-direction: column; gap: 20px; }
    .drawer-nav a { font-size: 16px; color: var(--text-muted); }

    
    .inner-banner { padding: 120px 0 50px 0; background: linear-gradient(180deg, rgba(48,209,88,0.08) 0%, transparent 100%); text-align: center; }
    .breadcrumb { margin-bottom: 15px; color: var(--text-muted); font-size: 14px; }
    .breadcrumb a:hover { color: var(--primary-color); }
    .inner-title { font-size: 32px; font-weight: 800; }

    
    .main-layout { display: grid; grid-template-columns: 2.5fr 1fr; gap: 40px; padding: 50px 0; }
    .list-container { display: flex; flex-direction: column; gap: 30px; }
    
    .list-item { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: 10px; overflow: hidden; display: flex; transition: 0.3s; }
    .list-item:hover { border-color: var(--primary-color); transform: translateY(-3px); }
    .list-item-img { width: 240px; background-size: cover; background-position: center; flex-shrink: 0; background-color: #222; }
    .list-item-content { padding: 25px; flex-grow: 1; }
    .list-item-meta { display: flex; gap: 15px; color: var(--text-muted); font-size: 12px; margin-bottom: 10px; }
    .list-item-title { font-size: 20px; font-weight: 700; margin-bottom: 12px; }
    .list-item-desc { color: var(--text-muted); font-size: 14px; margin-bottom: 15px; line-height: 1.5; }
    .list-item-footer { display: flex; justify-content: space-between; align-items: center; }

    
    .pagination { display: flex; gap: 8px; justify-content: center; margin-top: 40px; }
    .page-link { display: inline-flex; align-items: center; justify-content: center; min-width: 40px; height: 40px; padding: 0 10px; border-radius: 6px; background-color: var(--bg-card); border: 1px solid var(--border-color); color: var(--text-muted); font-weight: 600; }
    .page-link:hover, .page-link.active { background-color: var(--primary-color); color: #000; border-color: var(--primary-color); }

    
    .sidebar { display: flex; flex-direction: column; gap: 30px; }
    .sidebar-widget { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: 10px; padding: 25px; }
    .widget-title { font-size: 18px; font-weight: 700; margin-bottom: 20px; border-left: 3px solid var(--primary-color); padding-left: 10px; }
    .widget-list { list-style: none; }
    .widget-list li { margin-bottom: 15px; border-bottom: 1px dashed rgba(255,255,255,0.05); padding-bottom: 10px; }
    .widget-list li:last-child { margin-bottom: 0; border: none; padding-bottom: 0; }
    .widget-list a:hover { color: var(--primary-color); }

    
    .site-footer { background: #06090f; padding: 80px 0 30px 0; border-top: 1px solid var(--border-color); color: var(--text-muted); }
    .footer-grid { display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: 40px; margin-bottom: 50px; }
    .footer-col h5 { color: var(--text-main); font-size: 16px; margin-bottom: 20px; }
    .footer-col ul { list-style: none; }
    .footer-col ul li { margin-bottom: 12px; }
    .footer-col ul a:hover { color: var(--primary-color); }
    .footer-about p { font-size: 14px; margin-top: 15px; }
    .footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding-top: 30px; display: flex; justify-content: space-between; font-size: 13px; }

    @media(max-width: 992px) {
      .main-layout { grid-template-columns: 1fr; }
      .list-item { flex-direction: column; }
      .list-item-img { width: 100%; height: 180px; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
    }
    @media(max-width: 768px) {
      .desktop-nav { display: none; }
      .menu-toggle { display: flex; }
    }