﻿:root {
      --primary-color: rgb(80,250,123);
      --primary-hover: #3efb7b;
      --bg-dark: #0b0f19;
      --bg-card: #151c2c;
      --bg-card-hover: #1e293b;
      --text-light: #f8fafc;
      --text-muted: #94a3b8;
      --border-color: rgba(80,250,123,0.15);
      --border-hover: rgba(80,250,123,0.4);
      --gradient-bg: linear-gradient(135deg, #0b0f19 0%, #111827 100%);
      --accent-glow: rgba(80,250,123,0.25);
    }
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }
    body {
      background: var(--bg-dark);
      color: var(--text-light);
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
      line-height: 1.6;
      overflow-x: hidden;
    }
    a {
      color: inherit;
      text-decoration: none;
      transition: all 0.3s ease;
    }
    .container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }
    
    header {
      background: rgba(11, 15, 25, 0.95);
      border-bottom: 1px solid var(--border-color);
      position: sticky;
      top: 0;
      z-index: 1000;
      backdrop-filter: blur(10px);
    }
    .header-wrap {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 70px;
    }
    .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(--primary-color);
      white-space: nowrap;
    }
    .nav-list {
      display: flex;
      align-items: center;
      gap: 30px;
    }
    .nav-list a {
      font-size: 15px;
      font-weight: 500;
      color: var(--text-light);
      padding: 8px 0;
      position: relative;
    }
    .nav-list a:hover {
      color: var(--primary-color);
    }
    .header-actions {
      display: flex;
      align-items: center;
      gap: 15px;
    }
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 10px 20px;
      border-radius: 8px;
      font-weight: 600;
      font-size: 14px;
      cursor: pointer;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      border: none;
    }
    .btn-primary {
      background: var(--primary-color);
      color: #0b0f19;
      box-shadow: 0 4px 15px var(--accent-glow);
    }
    .btn-primary:hover {
      background: var(--primary-hover);
      transform: translateY(-2px);
    }
    .menu-toggle {
      display: none;
      background: none;
      border: none;
      color: var(--text-light);
      font-size: 24px;
      cursor: pointer;
    }
    
    .drawer-backdrop {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.7);
      backdrop-filter: blur(5px);
      z-index: 1999;
      display: none;
    }
    .drawer-backdrop.active {
      display: block;
    }
    .drawer-menu {
      position: fixed;
      top: 0;
      left: -300px;
      width: 300px;
      height: 100%;
      background: var(--bg-card);
      z-index: 2000;
      box-shadow: 5px 0 25px rgba(0,0,0,0.5);
      transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      padding: 30px 20px;
      display: flex;
      flex-direction: column;
      gap: 30px;
    }
    .drawer-menu.active {
      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-light);
      padding: 10px 0;
      border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    
    .breadcrumbs {
      background: rgba(255,255,255,0.02);
      padding: 20px 0;
      font-size: 14px;
      color: var(--text-muted);
      border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    .breadcrumbs a {
      color: var(--text-muted);
    }
    .breadcrumbs a:hover {
      color: var(--primary-color);
    }
    .breadcrumbs span {
      margin: 0 8px;
    }
    
    .cat-header {
      padding: 60px 0;
      background: radial-gradient(circle at 10% 50%, rgba(80,250,123,0.08) 0%, transparent 40%), var(--bg-dark);
      border-bottom: 1px solid var(--border-color);
    }
    .cat-title {
      font-size: 32px;
      font-weight: 800;
      color: var(--text-light);
      margin-bottom: 12px;
    }
    .cat-title span {
      color: var(--primary-color);
    }
    .cat-desc {
      color: var(--text-muted);
      max-width: 700px;
      font-size: 15px;
    }
    
    .main-grid {
      display: grid;
      grid-template-columns: 2.8fr 1.2fr;
      gap: 40px;
      padding: 60px 0;
    }
    .list-wrapper {
      display: flex;
      flex-direction: column;
      gap: 30px;
    }
    
    .sidebar {
      display: flex;
      flex-direction: column;
      gap: 30px;
    }
    .widget {
      background: var(--bg-card);
      border: 1px solid var(--border-color);
      border-radius: 16px;
      padding: 25px;
    }
    .widget-title {
      font-size: 18px;
      font-weight: 700;
      color: var(--text-light);
      margin-bottom: 20px;
      border-left: 3px solid var(--primary-color);
      padding-left: 12px;
    }
    .tag-cloud {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }
    .tag-cloud a {
      background: rgba(255,255,255,0.05);
      color: var(--text-muted);
      font-size: 13px;
      padding: 6px 12px;
      border-radius: 20px;
      border: 1px solid transparent;
    }
    .tag-cloud a:hover {
      border-color: var(--primary-color);
      color: var(--primary-color);
      background: rgba(80,250,123,0.05);
    }
    
    .article-item {
      display: grid;
      grid-template-columns: 1fr 1.8fr;
      gap: 25px;
      background: var(--bg-card);
      border: 1px solid var(--border-color);
      border-radius: 16px;
      overflow: hidden;
      transition: all 0.3s ease;
    }
    .article-item:hover {
      border-color: var(--primary-color);
      transform: translateY(-3px);
    }
    .article-img {
      position: relative;
      overflow: hidden;
      aspect-ratio: 1.4;
      background: #111827;
    }
    .article-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
    .article-item:hover .article-img img {
      transform: scale(1.05);
    }
    .article-detail {
      padding: 25px 25px 25px 0;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .article-item-meta {
      display: flex;
      gap: 15px;
      font-size: 12px;
      color: var(--text-muted);
      margin-bottom: 10px;
    }
    .article-item-title {
      font-size: 20px;
      font-weight: 700;
      margin-bottom: 12px;
      line-height: 1.4;
    }
    .article-item-summary {
      color: var(--text-muted);
      font-size: 14px;
      margin-bottom: 15px;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }
    .article-item-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-top: auto;
    }
    
    .pagination {
      display: flex;
      justify-content: center;
      gap: 8px;
      margin-top: 40px;
    }
    .page-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 40px;
      height: 40px;
      border-radius: 8px;
      background: var(--bg-card);
      border: 1px solid var(--border-color);
      color: var(--text-muted);
      font-weight: 600;
      transition: all 0.3s ease;
    }
    .page-btn.active, .page-btn:hover {
      background: var(--primary-color);
      color: #0b0f19;
      border-color: var(--primary-color);
    }
    
    footer {
      background: #070a12;
      padding: 80px 0 30px;
      font-size: 14px;
      color: var(--text-muted);
      border-top: 1px solid rgba(255,255,255,0.05);
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 1.5fr repeat(3, 1fr);
      gap: 50px;
      margin-bottom: 60px;
    }
    .footer-brand .logo {
      margin-bottom: 20px;
    }
    .footer-brand p {
      line-height: 1.8;
      margin-bottom: 20px;
    }
    .footer-links h4 {
      color: var(--text-light);
      font-size: 16px;
      font-weight: 600;
      margin-bottom: 20px;
    }
    .footer-links ul {
      list-style: none;
    }
    .footer-links ul li {
      margin-bottom: 12px;
    }
    .footer-links ul li a:hover {
      color: var(--primary-color);
    }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.05);
      padding-top: 30px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 20px;
    }
    @media (max-width: 1024px) {
      .main-grid {
        grid-template-columns: 1fr;
      }
      .footer-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }
    @media (max-width: 768px) {
      .nav-list {
        display: none;
      }
      .menu-toggle {
        display: block;
      }
      .article-item {
        grid-template-columns: 1fr;
      }
      .article-detail {
        padding: 20px;
      }
      .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
      }
    }