        :root {
            --primary-gradient: linear-gradient(135deg, #6c5ce7, #a29bfe, #fd79a8);
            --deep-gradient: linear-gradient(135deg, #2d3436, #434a4e, #1e272e);
            --blue: #3b82f6;
            --purple: #8b5cf6;
            --pink: #ec4899;
            --green: #10b981;
            --orange: #f59e0b;
            --dark-bg: #1a1a2e;
            --dark-card: #16213e;
            --text-primary: #1a1a2e;
            --text-secondary: #4a4a5e;
            --text-light: #f5f5f7;
            --text-muted: #9ca3af;
            --card-bg: #ffffff;
            --border-color: #e8e8ef;
            --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
            --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.1);
            --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.15);
            --radius-sm: 8px;
            --radius-md: 16px;
            --radius-lg: 24px;
            --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            --max-width: 1200px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            font-family: 'Inter', 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', sans-serif;
            background: #fafafa;
            color: var(--text-primary);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* ========== 导航栏 ========== */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(0, 0, 0, 0.06);
            transition: var(--transition);
        }
        .navbar.scrolled {
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
            background: rgba(255, 255, 255, 0.95);
        }
        .navbar-inner {
            max-width: var(--max-width);
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 24px;
            height: 64px;
        }
        .navbar-logo {
            font-size: 1.5rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            text-decoration: none;
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            white-space: nowrap;
            position: relative;
            z-index: 1002;
        }
        .navbar-logo span {
            font-weight: 300;
            font-size: 0.85rem;
            letter-spacing: 2px;
            margin-left: 6px;
            color: var(--text-muted);
            -webkit-text-fill-color: var(--text-muted);
        }
        .nav-toggle {
            display: none;
            cursor: pointer;
            width: 40px;
            height: 40px;
            position: relative;
            z-index: 1002;
            border: none;
            background: transparent;
            padding: 8px;
            border-radius: var(--radius-sm);
            transition: var(--transition);
        }
        .nav-toggle:hover {
            background: rgba(0, 0, 0, 0.05);
        }
        .nav-toggle-bar {
            display: block;
            width: 22px;
            height: 2.5px;
            background: var(--text-primary);
            border-radius: 2px;
            margin: 4px auto;
            transition: var(--transition);
            transform-origin: center;
        }
        #nav-checkbox {
            display: none;
        }
        #nav-checkbox:checked~.nav-toggle .nav-toggle-bar:nth-child(1) {
            transform: translateY(6.5px) rotate(45deg);
        }
        #nav-checkbox:checked~.nav-toggle .nav-toggle-bar:nth-child(2) {
            opacity: 0;
            transform: scaleX(0);
        }
        #nav-checkbox:checked~.nav-toggle .nav-toggle-bar:nth-child(3) {
            transform: translateY(-6.5px) rotate(-45deg);
        }
        .nav-menu {
            display: flex;
            align-items: center;
            gap: 28px;
            list-style: none;
        }
        .nav-menu a {
            text-decoration: none;
            color: var(--text-secondary);
            font-size: 0.9rem;
            font-weight: 500;
            letter-spacing: 0.5px;
            transition: var(--transition);
            position: relative;
            padding: 4px 0;
            white-space: nowrap;
        }
        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-gradient);
            border-radius: 2px;
            transition: var(--transition);
        }
        .nav-menu a:hover {
            color: var(--text-primary);
        }
        .nav-menu a:hover::after {
            width: 100%;
        }

        /* ========== 底部 ========== */
        .footer {
            background: var(--dark-bg);
            color: var(--text-muted);
            padding: 40px 24px 24px;
            margin-top: 60px;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
        }
        .footer-inner {
            max-width: var(--max-width);
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 12px;
            text-align: center;
        }
        .footer-logo {
            font-size: 1.2rem;
            font-weight: 700;
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        .footer-links {
            display: flex;
            gap: 24px;
            flex-wrap: wrap;
            justify-content: center;
        }
        .footer-links a {
            color: var(--text-muted);
            text-decoration: none;
            font-size: 0.85rem;
            transition: var(--transition);
        }
        .footer-links a:hover {
            color: var(--text-light);
        }
        .footer-copy {
            font-size: 0.78rem;
            letter-spacing: 1px;
            opacity: 0.6;
        }
        .footer-copy a {
            color: inherit;
            text-decoration: none;
        }
        .footer-copy a:hover {
            text-decoration: underline;
        }

        /* ========== 主容器 ========== */
        .main {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 88px 24px 0;
        }

        /* ========== 面包屑导航 ========== */
        .breadcrumb {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 6px;
            font-size: 0.85rem;
            color: var(--text-muted);
            margin-bottom: 20px;
            padding: 10px 0;
            border-bottom: 1px solid var(--border-color);
        }
        .breadcrumb a {
            color: var(--text-secondary);
            text-decoration: none;
            transition: var(--transition);
        }
        .breadcrumb a:hover {
            color: var(--text-primary);
        }
        .breadcrumb .separator {
            color: #c0c0d0;
            user-select: none;
        }
        .breadcrumb .current {
            color: var(--text-primary);
            font-weight: 500;
        }

        /* ========== 栏目分类 ========== */
        .category-section {
            margin-bottom: 36px;
        }
        .category-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 12px;
        }
        .category-item {
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 14px 8px;
            border-radius: var(--radius-sm);
            font-size: 0.9rem;
            font-weight: 600;
            color: #fff;
            text-decoration: none;
            transition: var(--transition);
            box-shadow: var(--shadow-sm);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            cursor: pointer;
        }
        .category-item:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-md);
            filter: brightness(1.1);
        }
        /* 10个颜色循环，通过 nth-child 实现 */
        .category-item:nth-child(10n+1) {
            background: linear-gradient(135deg, #6c5ce7, #a29bfe);
        }
        .category-item:nth-child(10n+2) {
            background: linear-gradient(135deg, #3b82f6, #60a5fa);
        }
        .category-item:nth-child(10n+3) {
            background: linear-gradient(135deg, #ec4899, #f472b6);
        }
        .category-item:nth-child(10n+4) {
            background: linear-gradient(135deg, #10b981, #34d399);
        }
        .category-item:nth-child(10n+5) {
            background: linear-gradient(135deg, #f59e0b, #fbbf24);
        }
        .category-item:nth-child(10n+6) {
            background: linear-gradient(135deg, #8b5cf6, #c4b5fd);
        }
        .category-item:nth-child(10n+7) {
            background: linear-gradient(135deg, #ef4444, #fca5a5);
        }
        .category-item:nth-child(10n+8) {
            background: linear-gradient(135deg, #14b8a6, #2dd4bf);
        }
        .category-item:nth-child(10n+9) {
            background: linear-gradient(135deg, #f97316, #fdba74);
        }
        .category-item:nth-child(10n+10) {
            background: linear-gradient(135deg, #6366f1, #a5b4fc);
        }

        /* ========== 两列主布局 ========== */
        .content-columns {
            display: flex;
            gap: 32px;
            align-items: flex-start;
        }
        .main-column {
            flex: 1;
            min-width: 0;
        }
        .sidebar-column {
            width: 340px;
            flex-shrink: 0;
            display: flex;
            flex-direction: column;
            gap: 28px;
        }

        /* ========== 主文章列表 ========== */
        .post-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        .post-item {
            display: flex;
            gap: 16px;
            background: var(--card-bg);
            border-radius: var(--radius-md);
            padding: 18px;
            border: 1px solid var(--border-color);
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            cursor: pointer;
        }
        .post-item:hover {
            box-shadow: var(--shadow-md);
            transform: translateY(-2px);
        }
        .post-thumb {
            flex-shrink: 0;
            width: 160px;
            height: 110px;
            border-radius: var(--radius-sm);
            overflow: hidden;
            background: #e0e0e8;
        }
        .post-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.5s ease;
        }
        .post-item:hover .post-thumb img {
            transform: scale(1.06);
        }
        .post-content {
            flex: 1;
            min-width: 0;
            display: flex;
            flex-direction: column;
            gap: 6px;
        }
        .post-title {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--text-primary);
            text-decoration: none;
            word-break: break-word;
            overflow-wrap: break-word;
            white-space: normal;
            line-height: 1.4;
            transition: color var(--transition);
        }
        .post-title:hover {
            color: #6c5ce7;
        }
        .post-desc {
            font-size: 0.85rem;
            color: var(--text-muted);
            word-break: break-word;
            overflow-wrap: break-word;
            white-space: normal;
            line-height: 1.6;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .post-meta {
            display: flex;
            align-items: center;
            gap: 16px;
            font-size: 0.78rem;
            color: var(--text-muted);
            margin-top: auto;
        }
        .post-meta .publish-time {
            display: flex;
            align-items: center;
            gap: 4px;
        }
        .post-meta .publish-time::before {
            content: '';
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: #a29bfe;
        }
        .post-meta .read-count {
            display: flex;
            align-items: center;
            gap: 4px;
        }
        .post-meta .read-count::before {
            content: '👁';
            font-size: 0.75rem;
        }

        /* 翻页按钮 */
        .pagination {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 8px;
            margin-top: 32px;
            flex-wrap: wrap;
        }
        .pagination a,
        .pagination span {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 38px;
            height: 38px;
            padding: 0 12px;
            border-radius: var(--radius-sm);
            font-size: 0.85rem;
            font-weight: 500;
            text-decoration: none;
            background: var(--card-bg);
            color: var(--text-secondary);
            border: 1px solid var(--border-color);
            transition: var(--transition);
        }
        .pagination a:hover {
            border-color: #a29bfe;
            color: #6c5ce7;
            box-shadow: var(--shadow-sm);
        }
        .pagination .active {
            background: var(--primary-gradient);
            color: #fff;
            border-color: transparent;
        }
        .pagination .disabled {
            opacity: 0.5;
            pointer-events: none;
        }

        /* ========== 侧边栏通用列表 ========== */
        .sidebar-widget {
            background: var(--card-bg);
            border-radius: var(--radius-md);
            padding: 18px 16px;
            border: 1px solid var(--border-color);
            box-shadow: var(--shadow-sm);
        }
        .widget-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 12px;
            padding-bottom: 8px;
            border-bottom: 2px solid var(--border-color);
        }
        .widget-title {
            font-size: 1rem;
            font-weight: 700;
            position: relative;
            padding-left: 14px;
        }
        .widget-title::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 3px;
            height: 18px;
            border-radius: 3px;
            background: var(--primary-gradient);
        }
        .widget-list {
            list-style: none;
            counter-reset: side-counter;
            display: flex;
            flex-direction: column;
            gap: 6px;
        }
        .widget-list li {
            counter-increment: side-counter;
            display: flex;
            align-items: flex-start;
            gap: 10px;
            padding: 8px 8px;
            border-radius: var(--radius-sm);
            transition: var(--transition);
            cursor: pointer;
        }
        .widget-list li:hover {
            background: rgba(0, 0, 0, 0.03);
        }
        .widget-list li::before {
            content: counter(side-counter);
            flex-shrink: 0;
            width: 22px;
            height: 22px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.7rem;
            font-weight: 700;
            border-radius: 50%;
            background: var(--primary-gradient);
            color: #fff;
            margin-top: 2px;
        }
        /* 针对不同侧边栏区块使用不同渐变色序号 */
        .widget-latest .widget-list li::before {
            background: linear-gradient(135deg, #6c5ce7, #a29bfe);
        }
        .widget-hot .widget-list li::before {
            background: linear-gradient(135deg, #fdcb6e, #fd79a8);
            color: #1a1a2e;
        }
        .widget-featured .widget-list li::before {
            background: linear-gradient(135deg, #f59e0b, #fbbf24);
            color: #1a1a2e;
        }
        .widget-recommend .widget-list li::before {
            background: linear-gradient(135deg, #3b82f6, #60a5fa);
        }
        .widget-list .side-title {
            flex: 1;
            font-size: 0.85rem;
            font-weight: 500;
            color: var(--text-primary);
            text-decoration: none;
            word-break: break-word;
            overflow-wrap: break-word;
            white-space: normal;
            line-height: 1.5;
            transition: color var(--transition);
        }
        .widget-list .side-title:hover {
            color: #6c5ce7;
        }

        /* ========== 响应式设计 ========== */
        @media (max-width: 992px) {
            .content-columns {
                flex-direction: column;
            }
            .sidebar-column {
                width: 100%;
                flex-direction: row;
                flex-wrap: wrap;
                gap: 16px;
            }
            .sidebar-widget {
                flex: 1 1 calc(50% - 16px);
                min-width: 250px;
            }
            .category-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            .post-thumb {
                width: 120px;
                height: 90px;
            }
        }

        @media (max-width: 768px) {
            .navbar-inner {
                padding: 0 16px;
                height: 56px;
            }
            .navbar-logo {
                font-size: 1.3rem;
            }
            .nav-toggle {
                display: block;
            }
            .nav-menu {
                position: fixed;
                top: 0;
                right: -100%;
                width: 280px;
                height: 100vh;
                background: #ffffff;
                flex-direction: column;
                justify-content: flex-start;
                align-items: flex-start;
                padding: 80px 28px 40px;
                gap: 20px;
                box-shadow: -8px 0 40px rgba(0, 0, 0, 0.12);
                transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
                z-index: 1001;
                border-radius: 0 0 0 24px;
            }
            .nav-menu a {
                font-size: 1.05rem;
                font-weight: 600;
                color: var(--text-primary);
            }
            #nav-checkbox:checked~.nav-menu {
                right: 0;
            }
            .main {
                padding: 72px 12px 0;
            }
            .breadcrumb {
                font-size: 0.75rem;
                gap: 4px;
            }
            .category-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 8px;
            }
            .category-item {
                font-size: 0.8rem;
                padding: 10px 6px;
            }
            .content-columns {
                gap: 16px;
            }
            .post-item {
                flex-direction: column;
                padding: 12px;
            }
            .post-thumb {
                width: 100%;
                height: 160px;
            }
            .post-title {
                font-size: 1rem;
            }
            .pagination a,
            .pagination span {
                min-width: 32px;
                height: 32px;
                font-size: 0.75rem;
                padding: 0 8px;
            }
            .sidebar-column {
                flex-direction: column;
                gap: 16px;
            }
            .sidebar-widget {
                flex: 1 1 100%;
            }
            .widget-list li::before {
                width: 20px;
                height: 20px;
                font-size: 0.65rem;
            }
            .widget-list .side-title {
                font-size: 0.8rem;
            }
            .footer {
                padding: 28px 16px 16px;
                margin-top: 40px;
            }
            .footer-links {
                gap: 14px;
            }
        }

        @media (max-width: 480px) {
            .category-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 6px;
            }
            .category-item {
                font-size: 0.75rem;
                padding: 8px 4px;
            }
            .post-thumb {
                height: 140px;
            }
            .post-desc {
                -webkit-line-clamp: 2;
            }
        }