﻿:root {
      --primary: #1D7BFF;
      --primary-light: #00F2FE;
      --primary-gradient: linear-gradient(135deg, #1D7BFF 0%, #00F2FE 100%);
      --bg-dark: #0A0E1A;
      --bg-dark-card: #141B2D;
      --bg-light: rgb(223,230,233);
      --bg-white: #FFFFFF;
      --text-dark: #0F172A;
      --text-muted: #64748B;
      --text-light: #F8FAFC;
      --text-light-muted: #94A3B8;
      --border-color: rgba(29, 123, 255, 0.15);
      --border-dark: rgba(255, 255, 255, 0.08);
      --shadow-sm: 0 2px 8px rgba(0,0,0,0.05);
      --shadow-md: 0 10px 30px rgba(29, 123, 255, 0.1);
      --shadow-lg: 0 20px 40px rgba(0,0,0,0.15);
      --radius: 12px;
      --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, Arial, sans-serif;
      color: var(--text-dark);
      background-color: var(--bg-light);
      line-height: 1.6;
      overflow-x: hidden;
    }
    a { text-decoration: none; color: inherit; transition: var(--transition); }
    img { max-width: 100%; height: auto; }
    ul { list-style: none; }

    .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
    
    
    .header { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; background: rgba(10, 14, 26, 0.85); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border-dark); transition: var(--transition); }
    .header-container { display: flex; align-items: center; justify-content: space-between; height: 72px; }
    .logo { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
    .logo img { display: block; height: 38px; 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-light); white-space: nowrap; }
    .nav-menu { display: flex; align-items: center; gap: 32px; }
    .nav-link { font-size: 15px; font-weight: 500; color: var(--text-light-muted); }
    .nav-link:hover { color: var(--primary-light); }
    .nav-btn { padding: 8px 20px; font-size: 14px; display: inline-flex; align-items: center; justify-content: center; border-radius: var(--radius); font-weight: 600; cursor: pointer; border: none; background: var(--primary-gradient); color: var(--text-light); }
    .menu-toggle { display: none; background: none; border: none; color: var(--text-light); cursor: pointer; font-size: 24px; }

    .drawer { position: fixed; top: 0; left: -280px; width: 280px; height: 100vh; background: var(--bg-dark); z-index: 1100; padding: 30px 24px; box-shadow: var(--shadow-lg); transition: var(--transition); display: flex; flex-direction: column; gap: 40px; }
    .drawer.open { left: 0; }
    .drawer-overlay { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; background: rgba(0,0,0,0.6); backdrop-filter: blur(4px); z-index: 1050; opacity: 0; visibility: hidden; transition: var(--transition); }
    .drawer-overlay.show { opacity: 1; visibility: visible; }
    .drawer-header { display: flex; align-items: center; justify-content: space-between; }
    .drawer-close { background: none; border: none; color: var(--text-light-muted); font-size: 24px; cursor: pointer; }
    .drawer-nav { display: flex; flex-direction: column; gap: 20px; }
    .drawer-nav-link { font-size: 16px; font-weight: 500; color: var(--text-light-muted); }
    .drawer-nav-link:hover { color: var(--primary-light); }

    
    .page-banner {
      background: var(--bg-dark);
      background-image: radial-gradient(circle at center, rgba(29, 123, 255, 0.15) 0%, rgba(10, 14, 26, 0) 70%);
      padding: 130px 0 60px 0;
      color: var(--text-light);
      text-align: center;
    }
    .breadcrumbs {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 14px;
      color: var(--text-light-muted);
      margin-bottom: 16px;
    }
    .breadcrumbs a:hover { color: var(--primary-light); }
    .page-title { font-size: 32px; font-weight: 800; letter-spacing: -0.5px; max-width: 800px; margin: 0 auto; line-height: 1.4; }

    
    .detail-wrapper { padding: 60px 0; }
    .detail-grid { display: grid; grid-template-columns: 8.5fr 3.5fr; gap: 40px; }

    
    .article-main {
      background: var(--bg-white);
      border: 1px solid var(--border-color);
      border-radius: var(--radius);
      padding: 40px;
    }
    .article-header-meta {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 20px;
      font-size: 14px;
      color: var(--text-muted);
      border-bottom: 1px solid var(--border-color);
      padding-bottom: 24px;
      margin-bottom: 30px;
    }
    .meta-item { display: inline-flex; align-items: center; gap: 6px; }
    .article-tags-links { display: inline-flex; gap: 8px; align-items: center; }
    .article-tags-links a {
      background: var(--bg-light);
      padding: 2px 10px;
      border-radius: 4px;
      font-size: 12px;
      font-weight: 500;
      color: var(--text-dark);
    }
    .article-tags-links a:hover { background: var(--primary); color: var(--text-light); }

    
    .article-body-content {
      font-size: 16px;
      color: #334155;
      line-height: 1.8;
    }
    .article-body-content p { margin-bottom: 24px; text-align: justify; }
    .article-body-content h2, .article-body-content h3 {
      color: var(--text-dark);
      margin: 40px 0 20px 0;
      font-weight: 700;
    }
    .article-body-content h2 { font-size: 24px; border-left: 4px solid var(--primary); padding-left: 12px; }
    .article-body-content h3 { font-size: 20px; }
    .article-body-content img {
      border-radius: var(--radius);
      margin: 30px 0;
      box-shadow: var(--shadow-sm);
    }
    .article-body-content blockquote {
      border-left: 4px solid var(--primary-light);
      background: var(--bg-light);
      padding: 20px;
      border-radius: 0 8px 8px 0;
      margin-bottom: 24px;
      font-style: italic;
    }

    
    .article-adjacent {
      border-top: 1px solid var(--border-color);
      margin-top: 50px;
      padding-top: 30px;
      display: flex;
      justify-content: space-between;
      gap: 20px;
    }
    .adjacent-card {
      width: 50%;
      background: var(--bg-light);
      border-radius: 8px;
      padding: 16px;
      display: flex;
      flex-direction: column;
      gap: 6px;
    }
    .adjacent-card:hover { background: var(--bg-white); border: 1px solid var(--primary); }
    .adjacent-label { font-size: 12px; text-transform: uppercase; color: var(--text-muted); font-weight: 700; }
    .adjacent-title { font-size: 14px; font-weight: 600; color: var(--text-dark); display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden; }

    
    .related-section { margin-top: 60px; }
    .related-title { font-size: 22px; font-weight: 700; color: var(--text-dark); margin-bottom: 24px; }
    .related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .related-card {
      background: var(--bg-white);
      border-radius: var(--radius);
      overflow: hidden;
      border: 1px solid var(--border-color);
    }
    .related-card-img { position: relative; padding-top: 56.25%; background: #E2E8F0; }
    .related-card-img img { position: absolute; top:0; left:0; width:100%; height:100%; object-fit:cover; }
    .related-card-body { padding: 16px; }
    .related-card-title { font-size: 15px; font-weight: 700; color: var(--text-dark); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
    .related-card-title:hover { color: var(--primary); }

    
    .sidebar { display: flex; flex-direction: column; gap: 30px; }
    .widget { background: var(--bg-white); border: 1px solid var(--border-color); border-radius: var(--radius); padding: 24px; }
    .widget-title { font-size: 16px; font-weight: 700; color: var(--text-dark); padding-bottom: 12px; margin-bottom: 20px; border-bottom: 2px solid var(--primary); }
    .hot-list { display: flex; flex-direction: column; gap: 16px; }
    .hot-item { display: flex; gap: 12px; align-items: center; }
    .hot-thumb { width: 64px; height: 64px; border-radius: 6px; overflow: hidden; background: #E2E8F0; flex-shrink: 0; }
    .hot-thumb img { width: 100%; height: 100%; object-fit: cover; }
    .hot-details { display: flex; flex-direction: column; gap: 4px; }
    .hot-title { font-size: 13px; font-weight: 600; line-height: 1.4; color: var(--text-dark); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
    .hot-title:hover { color: var(--primary); }
    .hot-meta { font-size: 11px; color: var(--text-muted); }

    
    .footer { background: #070911; color: var(--text-light-muted); padding: 80px 0 40px 0; border-top: 1px solid var(--border-dark); font-size: 14px; }
    .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 50px; margin-bottom: 60px; }
    .footer-brand { display: flex; flex-direction: column; gap: 20px; }
    .footer-logo { display: inline-flex; align-items: center; gap: 12px; }
    .footer-logo img { height: 38px; }
    .footer-logo span { font-size: 18px; font-weight: 800; color: var(--text-light); }
    .footer-desc { line-height: 1.6; color: var(--text-light-muted); }
    .footer-title { font-size: 15px; font-weight: 700; color: var(--text-light); margin-bottom: 20px; text-transform: uppercase; letter-spacing: 0.5px; }
    .footer-links { display: flex; flex-direction: column; gap: 12px; }
    .footer-link:hover { color: var(--primary-light); }
    .footer-bottom { border-top: 1px solid var(--border-dark); padding-top: 30px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
    .footer-meta { display: flex; gap: 24px; }
    .footer-risk-text { font-size: 12px; line-height: 1.8; color: rgba(255, 255, 255, 0.35); margin-top: 30px; border-top: 1px solid var(--border-dark); padding-top: 20px; }

    @media (max-width: 1024px) {
      .detail-grid { grid-template-columns: 1fr; }
      .related-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 768px) {
      .nav-menu { display: none; }
      .menu-toggle { display: block; }
      .article-main { padding: 24px; }
      .article-adjacent { flex-direction: column; }
      .adjacent-card { width: 100%; }
      .related-grid { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr; gap: 30px; }
      .footer-bottom { flex-direction: column; text-align: center; }
    }