﻿:root {
            --primary-color: rgb(99,102,241);
            --primary-hover: #4f46e5;
            --text-dark: #0f172a;
            --text-muted: #64748b;
            --bg-light: #f8fafc;
            --bg-white: #ffffff;
            --border-color: #e2e8f0;
        }
        * {
            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-white);
            line-height: 1.6;
        }
        a {
            color: inherit;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        img {
            max-width: 100%;
            height: auto;
        }
        
        header {
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(8px);
            border-bottom: 1px solid var(--border-color);
        }
        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 15px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .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(--text-dark);
            white-space: nowrap;
        }
        .nav-menu {
            display: flex;
            align-items: center;
            gap: 24px;
        }
        .nav-menu a {
            font-weight: 500;
            font-size: 15px;
            color: var(--text-muted);
        }
        .nav-menu a:hover {
            color: var(--primary-color);
        }
        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            color: var(--text-dark);
        }
        
        .mobile-drawer {
            position: fixed;
            top: 0;
            left: -300px;
            width: 300px;
            height: 100%;
            background: var(--bg-white);
            box-shadow: 4px 0 20px rgba(0,0,0,0.1);
            z-index: 110;
            transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            flex-direction: column;
            padding: 30px 20px;
        }
        .mobile-drawer.active {
            left: 0;
        }
        .drawer-mask {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.5);
            z-index: 105;
            display: none;
        }
        .drawer-mask.active {
            display: block;
        }
        .drawer-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 40px;
        }
        .drawer-close {
            background: none;
            border: none;
            font-size: 28px;
            cursor: pointer;
            color: var(--text-muted);
        }
        .drawer-nav {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        .drawer-nav a {
            font-size: 18px;
            font-weight: 500;
            color: var(--text-dark);
            padding: 8px 0;
            border-bottom: 1px solid var(--border-color);
        }
        
        .breadcrumbs-section {
            background: var(--bg-light);
            border-bottom: 1px solid var(--border-color);
            padding: 15px 20px;
        }
        .breadcrumbs-container {
            max-width: 1200px;
            margin: 0 auto;
            font-size: 14px;
            color: var(--text-muted);
        }
        
        .section-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 50px 20px 80px;
        }
        .article-layout {
            display: grid;
            grid-template-columns: 2.5fr 1fr;
            gap: 40px;
        }
        .article-main-card {
            background: var(--bg-white);
            border: 1px solid var(--border-color);
            border-radius: 10px;
            padding: 40px;
        }
        .article-header {
            margin-bottom: 30px;
            border-bottom: 1px solid var(--border-color);
            padding-bottom: 25px;
        }
        .article-main-title {
            font-size: 32px;
            font-weight: 800;
            line-height: 1.3;
            color: var(--text-dark);
            margin-bottom: 15px;
        }
        .article-main-meta {
            display: flex;
            gap: 20px;
            font-size: 13px;
            color: var(--text-muted);
            flex-wrap: wrap;
        }
        .article-main-meta span {
            display: flex;
            align-items: center;
            gap: 5px;
        }
        .article-main-meta a {
            color: var(--primary-color);
        }
        .article-summary-box {
            background: var(--bg-light);
            border-left: 4px solid var(--primary-color);
            padding: 15px 20px;
            font-size: 14px;
            color: var(--text-muted);
            margin-bottom: 30px;
            border-radius: 0 6px 6px 0;
        }
        .article-body-content {
            font-size: 16px;
            color: var(--text-dark);
            line-height: 1.8;
        }
        .article-body-content p {
            margin-bottom: 20px;
        }
        .article-body-content img {
            border-radius: 8px;
            margin: 20px 0;
        }
        
        .prev-next-nav {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-top: 50px;
            padding-top: 30px;
            border-top: 1px solid var(--border-color);
        }
        .prev-next-card {
            background: var(--bg-light);
            padding: 15px 20px;
            border-radius: 8px;
            border: 1px solid var(--border-color);
        }
        .prev-next-label {
            font-size: 11px;
            color: var(--text-muted);
            text-transform: uppercase;
            margin-bottom: 5px;
        }
        .prev-next-link {
            font-size: 14px;
            font-weight: 600;
            display: block;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .prev-next-link:hover {
            color: var(--primary-color);
        }
        
        .related-section {
            margin-top: 60px;
        }
        .related-title {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 25px;
            border-bottom: 2px solid var(--primary-color);
            padding-bottom: 8px;
        }
        .related-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }
        .related-card {
            border: 1px solid var(--border-color);
            border-radius: 8px;
            padding: 20px;
            background: var(--bg-white);
        }
        .related-card h4 {
            font-size: 15px;
            font-weight: 700;
            margin-bottom: 10px;
            line-height: 1.4;
        }
        .related-card p {
            font-size: 12px;
            color: var(--text-muted);
        }
        
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 40px;
        }
        .sidebar-widget {
            background: var(--bg-light);
            border-radius: 10px;
            padding: 24px;
            border: 1px solid var(--border-color);
        }
        .widget-title {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 20px;
            border-bottom: 2px solid var(--primary-color);
            padding-bottom: 8px;
        }
        .tag-cloud {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }
        .tag-link {
            background: var(--bg-white);
            border: 1px solid var(--border-color);
            padding: 5px 10px;
            border-radius: 4px;
            font-size: 12px;
        }
        .tag-link:hover {
            background: var(--primary-color);
            color: #ffffff;
            border-color: var(--primary-color);
        }
        
        footer {
            background: #0f172a;
            color: #94a3b8;
            padding: 60px 20px 30px;
            border-top: 1px solid #1e293b;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 50px;
        }
        .footer-brand {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        .footer-logo .logo span {
            color: #ffffff;
        }
        .footer-desc {
            font-size: 14px;
            line-height: 1.6;
        }
        .footer-column h4 {
            color: #ffffff;
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 20px;
        }
        .footer-links {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 12px;
            font-size: 14px;
        }
        .footer-links a:hover {
            color: #ffffff;
        }
        .footer-bottom {
            max-width: 1200px;
            margin: 0 auto;
            border-top: 1px solid #1e293b;
            padding-top: 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 12px;
            flex-wrap: wrap;
            gap: 15px;
        }

        @media (max-width: 1024px) {
            .article-layout {
                grid-template-columns: 1fr;
            }
            .related-grid {
                grid-template-columns: 1fr;
            }
            .footer-container {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 768px) {
            .nav-menu {
                display: none;
            }
            .mobile-toggle {
                display: block;
            }
            .article-main-card {
                padding: 20px;
            }
            .prev-next-nav {
                grid-template-columns: 1fr;
            }
        }