﻿:root {
      --primary-color: rgb(88,86,214);
      --primary-hover: rgb(70,68,190);
      --primary-light: rgba(88,86,214,0.08);
      --accent-color: #FF9500;
      --accent-hover: #E08200;
      --text-dark: #1C1C1E;
      --text-gray: #8E8E93;
      --bg-light: #F2F2F7;
      --bg-white: #FFFFFF;
      --border-color: #E5E5EA;
      --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
      --shadow-md: 0 10px 30px rgba(88,86,214,0.08);
      --shadow-lg: 0 15px 40px rgba(0,0,0,0.1);
      --max-width: 1200px;
    }
    * {
      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-dark);
      background-color: var(--bg-light);
      line-height: 1.6;
    }
    a {
      text-decoration: none;
      color: inherit;
      transition: all 0.3s ease;
    }
    img {
      max-width: 100%;
      height: auto;
    }
    .container {
      width: 100%;
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0 20px;
    }
    .site-header {
      background-color: var(--bg-white);
      box-shadow: var(--shadow-sm);
      position: sticky;
      top: 0;
      z-index: 1000;
    }
    .header-container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 70px;
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0 20px;
    }
    .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: 18px;
      font-weight: 800;
      line-height: 1;
      color: var(--primary-color);
      white-space: nowrap;
    }
    .desktop-nav {
      display: flex;
      align-items: center;
      gap: 24px;
    }
    .desktop-nav a {
      font-size: 15px;
      font-weight: 600;
      color: var(--text-dark);
      padding: 8px 12px;
      border-radius: 6px;
    }
    .desktop-nav a:hover {
      color: var(--primary-color);
      background-color: var(--primary-light);
    }
    .header-actions {
      display: flex;
      align-items: center;
      gap: 16px;
    }
    .btn-download-top {
      background-color: var(--primary-color);
      color: var(--bg-white);
      padding: 8px 18px;
      border-radius: 20px;
      font-size: 14px;
      font-weight: bold;
      box-shadow: 0 4px 10px rgba(88,86,214,0.3);
    }
    .btn-download-top:hover {
      background-color: var(--primary-hover);
      transform: translateY(-1px);
    }
    .menu-toggle {
      display: none;
      background: none;
      border: none;
      flex-direction: column;
      justify-content: space-between;
      width: 24px;
      height: 18px;
      cursor: pointer;
    }
    .menu-toggle span {
      display: block;
      width: 100%;
      height: 2px;
      background-color: var(--text-dark);
      transition: 0.3s;
    }
    .drawer-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.5);
      z-index: 1001;
      opacity: 0;
      visibility: hidden;
      transition: 0.3s;
    }
    .drawer-overlay.active {
      opacity: 1;
      visibility: visible;
    }
    .drawer-menu {
      position: fixed;
      top: 0;
      left: -280px;
      width: 280px;
      height: 100%;
      background: var(--bg-white);
      z-index: 1002;
      box-shadow: var(--shadow-lg);
      transition: 0.3s ease;
      padding: 20px;
      display: flex;
      flex-direction: column;
    }
    .drawer-menu.active {
      left: 0;
    }
    .drawer-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 30px;
    }
    .drawer-close {
      background: none;
      border: none;
      font-size: 28px;
      color: var(--text-gray);
      cursor: pointer;
    }
    .drawer-nav {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }
    .drawer-nav a {
      font-size: 16px;
      font-weight: 600;
      padding: 10px 14px;
      border-radius: 8px;
    }
    .drawer-nav a:hover {
      background-color: var(--primary-light);
      color: var(--primary-color);
    }
    .drawer-download-btn {
      margin-top: 30px;
      background-color: var(--accent-color);
      color: var(--bg-white);
      text-align: center;
      padding: 12px;
      border-radius: 8px;
      font-weight: bold;
    }
    .inner-banner {
      background: linear-gradient(135deg, var(--primary-color) 0%, #3d3b9e 100%);
      color: var(--bg-white);
      padding: 30px 0;
      margin-bottom: 40px;
    }
    .breadcrumb {
      display: flex;
      gap: 8px;
      font-size: 14px;
      opacity: 0.8;
    }
    .breadcrumb a:hover {
      text-decoration: underline;
    }
    .article-layout {
      display: grid;
      grid-template-columns: 1fr 320px;
      gap: 40px;
      margin-bottom: 60px;
    }
    .article-main-box {
      background-color: var(--bg-white);
      border-radius: 16px;
      padding: 40px;
      box-shadow: var(--shadow-sm);
      border: 1px solid var(--border-color);
    }
    .article-header h1 {
      font-size: 28px;
      font-weight: 800;
      color: var(--text-dark);
      line-height: 1.4;
      margin-bottom: 20px;
    }
    .article-meta-info {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      font-size: 13px;
      color: var(--text-gray);
      border-bottom: 1px solid var(--border-color);
      padding-bottom: 20px;
      margin-bottom: 30px;
    }
    .article-body {
      font-size: 16px;
      color: #3a3a3c;
      line-height: 1.8;
      margin-bottom: 40px;
    }
    .article-body p {
      margin-bottom: 20px;
    }
    .article-body img {
      border-radius: 12px;
      margin: 20px 0;
      box-shadow: var(--shadow-sm);
    }
    .article-tags-links {
      border-top: 1px solid var(--border-color);
      border-bottom: 1px solid var(--border-color);
      padding: 15px 0;
      margin-bottom: 30px;
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 14px;
    }
    .tag-link-item {
      background-color: var(--bg-light);
      color: var(--primary-color);
      padding: 4px 12px;
      border-radius: 15px;
      font-weight: 500;
    }
    .prev-next-links {
      display: flex;
      justify-content: space-between;
      gap: 20px;
      margin-bottom: 40px;
      font-size: 14px;
    }
    .prev-link, .next-link {
      width: 50%;
      background-color: var(--bg-light);
      padding: 16px;
      border-radius: 10px;
    }
    .prev-link span, .next-link span {
      display: block;
      font-size: 12px;
      color: var(--text-gray);
      margin-bottom: 4px;
    }
    .prev-link a, .next-link a {
      font-weight: bold;
      color: var(--text-dark);
    }
    .prev-link a:hover, .next-link a:hover {
      color: var(--primary-color);
    }
    .like-articles-box h3 {
      font-size: 20px;
      font-weight: 800;
      margin-bottom: 20px;
      color: var(--text-dark);
    }
    .like-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
    .like-card {
      background-color: var(--bg-light);
      border-radius: 10px;
      overflow: hidden;
    }
    .like-card img {
      width: 100%;
      height: 120px;
      object-fit: cover;
    }
    .like-info {
      padding: 12px;
    }
    .like-info h4 {
      font-size: 14px;
      font-weight: bold;
      margin-bottom: 8px;
      height: 40px;
      overflow: hidden;
    }
    .like-info span {
      font-size: 11px;
      color: var(--text-gray);
    }
    .sidebar {
      display: flex;
      flex-direction: column;
      gap: 30px;
    }
    .sidebar-widget {
      background-color: var(--bg-white);
      border-radius: 16px;
      padding: 24px;
      box-shadow: var(--shadow-sm);
      border: 1px solid var(--border-color);
    }
    .sidebar-widget h3 {
      font-size: 18px;
      color: var(--text-dark);
      font-weight: bold;
      margin-bottom: 20px;
      border-left: 4px solid var(--primary-color);
      padding-left: 12px;
    }
    .sidebar-articles {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }
    .sidebar-article-item {
      display: flex;
      gap: 12px;
      align-items: center;
    }
    .sidebar-article-img {
      width: 70px;
      height: 50px;
      border-radius: 6px;
      overflow: hidden;
      flex-shrink: 0;
    }
    .sidebar-article-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .sidebar-article-content h4 {
      font-size: 13px;
      font-weight: bold;
      color: var(--text-dark);
      margin-bottom: 4px;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }
    .sidebar-article-content span {
      font-size: 11px;
      color: var(--text-gray);
    }
    .site-footer {
      background-color: #1c1936;
      color: rgba(255,255,255,0.7);
      padding: 70px 0 20px 0;
    }
    .footer-container {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr 1fr;
      gap: 40px;
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0 20px;
    }
    .footer-brand {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }
    .footer-brand .logo span {
      color: var(--bg-white);
    }
    .brand-desc {
      font-size: 14px;
      line-height: 1.7;
    }
    .footer-container h4 {
      color: var(--bg-white);
      font-size: 16px;
      font-weight: 700;
      margin-bottom: 20px;
      position: relative;
    }
    .footer-container h4::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: -8px;
      width: 30px;
      height: 2px;
      background-color: var(--primary-color);
    }
    .footer-links ul {
      list-style: none;
    }
    .footer-links ul li {
      margin-bottom: 12px;
    }
    .footer-links ul li a:hover {
      color: var(--bg-white);
      padding-left: 5px;
    }
    .footer-meta ul {
      list-style: none;
    }
    .footer-meta ul li {
      margin-bottom: 12px;
    }
    .footer-meta ul li a:hover {
      color: var(--bg-white);
      padding-left: 5px;
    }
    .footer-contact p {
      font-size: 14px;
      margin-bottom: 12px;
    }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.1);
      margin-top: 50px;
      padding-top: 20px;
      font-size: 13px;
      text-align: center;
    }
    .footer-bottom-container {
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0 20px;
    }
    @media (max-width: 992px) {
      .article-layout {
        grid-template-columns: 1fr;
      }
      .sidebar {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
      }
    }
    @media (max-width: 768px) {
      .desktop-nav, .btn-download-top {
        display: none;
      }
      .menu-toggle {
        display: flex;
      }
      .article-main-box {
        padding: 20px;
      }
      .like-grid {
        grid-template-columns: 1fr;
      }
      .sidebar {
        grid-template-columns: 1fr;
      }
    }