﻿:root {
      --primary: #0EA5E9;
      --secondary: #14B8A6;
      --accent: #2563EB;
      --bg-dark: #03111F;
      --bg-deep: #050B16;
      --bg-card: rgba(15, 32, 55, 0.65);
      --border-cyan: rgba(14, 165, 233, 0.24);
      --text-main: #F8FAFC;
      --text-muted: #94A3B8;
      --success: #22C55E;
      --font-family: system-ui, -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-family); overflow-x: hidden; line-height: 1.6; }
    a { color: inherit; text-decoration: none; }

    
    .site-header { position: sticky; top: 0; z-index: 1000; width: 100%; background: rgba(3, 17, 31, 0.92); backdrop-filter: blur(16px); border-bottom: 1px solid var(--border-cyan); }
    .header-inner { width: min(1200px, calc(100% - 32px)); min-height: 72px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
    .logo { display: inline-flex; align-items: center; gap: 12px; min-width: 0; max-width: 100%; text-decoration: none; flex-shrink: 0; }
    .logo img { display: block; height: 40px; width: auto; max-width: 150px; object-fit: contain; flex-shrink: 0; }
    .logo span { display: inline-block; font-size: 18px; font-weight: 800; color: #e5eefc; white-space: nowrap; max-width: 180px; overflow: hidden; text-overflow: ellipsis; }
    .desktop-nav-wrap { flex: 1 1 auto; min-width: 0; display: flex; justify-content: flex-end; overflow: hidden; }
    .desktop-nav { display: flex; align-items: center; justify-content: flex-end; gap: 8px; max-width: 100%; overflow-x: auto; overflow-y: hidden; -webkit-overflow-scrolling: touch; scrollbar-width: none; white-space: nowrap; }
    .desktop-nav::-webkit-scrollbar { display: none; }
    .desktop-nav a { display: inline-flex; align-items: center; justify-content: center; min-height: 40px; padding: 0 13px; border-radius: 999px; color: #cbd5e1; font-size: 14px; font-weight: 700; white-space: nowrap; flex: 0 0 auto; transition: all 0.3s ease; }
    .desktop-nav a:hover { color: #fff; background: rgba(14, 165, 233, 0.15); }
    .mobile-menu-btn { display: none; width: 44px; height: 44px; border: 0; border-radius: 14px; background: rgba(6, 182, 212, 0.14); align-items: center; justify-content: center; flex-direction: column; gap: 5px; cursor: pointer; }
    .mobile-menu-btn span { display: block; width: 20px; height: 2px; background: #e5eefc; }
    
    
    .mobile-nav-mask { position: fixed; inset: 0; z-index: 1100; background: rgba(2, 6, 23, 0.68); opacity: 0; visibility: hidden; pointer-events: none; transition: opacity .25s ease, visibility .25s ease; }
    .mobile-drawer { position: fixed; top: 0; left: 0; z-index: 1110; width: min(86vw, 360px); height: 100vh; background: #07111F; color: #E5EEFC; transform: translateX(-105%); transition: transform .28s ease; display: flex; flex-direction: column; overflow: hidden; }
    .drawer-head { min-height: 76px; padding: 16px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid rgba(6,182,212,0.18); }
    .drawer-logo img { height: 34px; }
    .drawer-close { width: 40px; height: 40px; border: 0; border-radius: 14px; background: rgba(6, 182, 212, 0.14); color: #E5EEFC; font-size: 26px; cursor: pointer; }
    .drawer-body { flex: 1; overflow-y: auto; padding: 14px; }
    .drawer-nav { display: flex; flex-direction: column; gap: 8px; }
    .drawer-nav a { display: flex; align-items: center; width: 100%; min-height: 48px; padding: 13px 14px; border-radius: 14px; background: rgba(148, 163, 184, 0.10); color: #F8FAFC; font-size: 15px; font-weight: 700; word-break: break-word; }
    body.drawer-open { overflow: hidden; }
    body.drawer-open .mobile-nav-mask { opacity: 1; visibility: visible; pointer-events: auto; }
    body.drawer-open .mobile-drawer { transform: translateX(0); }

    
    .page-banner {
      padding: 64px 0;
      background: radial-gradient(circle at 50% 100%, rgba(14, 165, 233, 0.1), transparent 70%);
      border-bottom: 1px solid rgba(14, 165, 233, 0.12);
      text-align: center;
    }

    .breadcrumbs {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      font-size: 13px;
      color: var(--text-muted);
      margin-bottom: 16px;
    }

    .breadcrumbs a:hover {
      color: var(--primary);
    }

    .page-title {
      font-size: 32px;
      font-weight: 850;
      color: #fff;
    }

    
    .list-container {
      width: min(1200px, calc(100% - 32px));
      margin: 48px auto;
    }

    .article-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 24px;
    }

    .article-card {
      background: var(--bg-card);
      border: 1px solid rgba(255, 255, 255, 0.05);
      border-radius: 16px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transition: all 0.3s ease;
    }

    .article-card:hover {
      border-color: var(--secondary);
      transform: translateY(-3px);
    }

    .article-img-wrap {
      aspect-ratio: 16 / 10;
      width: 100%;
      overflow: hidden;
      background: #101F30;
    }

    .article-img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .article-card:hover .article-img-wrap img {
      transform: scale(1.05);
    }

    .article-body {
      padding: 20px;
      display: flex;
      flex-direction: column;
      flex-grow: 1;
    }

    .article-meta {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 12px;
      color: var(--text-muted);
      margin-bottom: 12px;
    }

    .article-tag {
      background: rgba(20, 184, 166, 0.12);
      color: var(--secondary);
      padding: 2px 8px;
      border-radius: 4px;
      font-weight: 600;
    }

    .article-title {
      font-size: 17px;
      font-weight: 700;
      color: #fff;
      line-height: 1.4;
      margin-bottom: 10px;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .article-summary {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.5;
      margin-bottom: 16px;
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .article-footer-meta {
      margin-top: auto;
      padding-top: 12px;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 12px;
      color: var(--text-muted);
    }

    
    .pagination-wrap {
      width: min(1200px, calc(100% - 32px));
      margin: 36px auto 0;
      padding: 0;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .pagination-list {
      display: flex;
      flex-direction: row;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      gap: 8px;
      max-width: 100%;
    }

    .pagination-item {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 40px;
      min-height: 40px;
      padding: 0 14px;
      border-radius: 999px;
      border: 1px solid rgba(148,163,184,.24);
      background: rgba(15,23,42,.72);
      color: #e5e7eb;
      text-decoration: none;
      font-size: 14px;
      font-weight: 700;
      line-height: 1;
      white-space: nowrap;
      transition: all 0.2s ease;
    }

    .pagination-item:hover {
      border-color: rgba(20,184,166,.55);
      background: rgba(20,184,166,.16);
      color: #ffffff;
    }

    .pagination-item.current,
    .pagination-item.active,
    .pagination-item.is-current {
      background: linear-gradient(135deg,#14B8A6,#0EA5E9);
      border-color: transparent;
      color: #ffffff;
    }

    .pagination-item.disabled,
    .pagination-item.is-disabled {
      opacity: .45;
      pointer-events: none;
    }

    
    .site-footer { position: relative; z-index: 1; width: 100%; background: #050B16; color: #e5e7eb; padding: 56px 0 24px; overflow: hidden; border-top: 1px solid rgba(255,255,255,0.04); }
    .footer-inner { width: min(1200px, calc(100% - 32px)); margin: 0 auto; display: grid; grid-template-columns: minmax(260px,1.35fr) repeat(3, minmax(150px,1fr)); gap: 28px; align-items: start; }
    .footer-brand p { margin: 16px 0 0; color: rgba(229,231,235,.74); line-height: 1.8; font-size: 14px; word-break: break-word; }
    .footer-column h3 { margin: 0 0 14px; font-size: 15px; color: #ffffff; }
    .footer-column ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
    .footer-column a, .footer-column span { color: rgba(229,231,235,.74); font-size: 14px; word-break: break-word; }
    .footer-column a:hover { color: #ffffff; }
    .footer-bottom { width: min(1200px, calc(100% - 32px)); margin: 32px auto 0; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.12); display: flex; align-items: center; justify-content: space-between; color: rgba(229,231,235,.62); font-size: 13px; }
    .footer-bottom p { margin: 0; }

    @media (max-width: 900px) {
      .header-inner { width: min(100% - 24px, 1200px); min-height: 64px; }
      .desktop-nav-wrap, .desktop-nav { display: none !important; }
      .mobile-menu-btn { display: inline-flex !important; }
      .article-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .footer-inner { grid-template-columns: 1fr 1fr; }
      .footer-brand { grid-column: 1 / -1; }
      .footer-bottom { flex-direction: column; align-items: flex-start; }
    }

    @media (max-width: 640px) {
      .article-grid { grid-template-columns: 1fr; }
      .footer-inner { grid-template-columns: 1fr; }
    }