        :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;
        }

        /* ========== 通用板块样式 ========== */
        .section {
            margin-bottom: 56px;
            position: relative;
        }
        .section-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 24px;
            flex-wrap: wrap;
            gap: 12px;
        }
        .section-title {
            font-size: 1.6rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            position: relative;
            padding-left: 16px;
            line-height: 1.3;
        }
        .section-title::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 4px;
            height: 28px;
            border-radius: 4px;
            background: var(--primary-gradient);
        }
        .section-subtitle {
            font-size: 0.82rem;
            color: var(--text-muted);
            letter-spacing: 1.5px;
            text-transform: uppercase;
            font-weight: 500;
        }

        /* ========== 文章列表通用 ========== */
        .article-list {
            list-style: none;
            counter-reset: article-counter;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .article-list li {
            counter-increment: article-counter;
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 14px 18px;
            background: var(--card-bg);
            border-radius: var(--radius-sm);
            border: 1px solid var(--border-color);
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            cursor: pointer;
            position: relative;
        }
        .article-list li:hover {
            box-shadow: var(--shadow-md);
            transform: translateY(-2px);
            border-color: rgba(108, 92, 231, 0.25);
        }
        .article-list li::before {
            content: counter(article-counter);
            flex-shrink: 0;
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
            font-weight: 700;
            border-radius: 50%;
            background: var(--primary-gradient);
            color: #fff;
            letter-spacing: 0;
        }
        .article-list .article-title {
            flex: 1;
            font-size: 0.92rem;
            font-weight: 500;
            color: var(--text-primary);
            word-break: break-word;
            overflow-wrap: break-word;
            white-space: normal;
            line-height: 1.5;
            text-align: left;
            text-decoration: none;
            transition: color var(--transition);
        }
        .article-list .article-title:hover {
            color: #6c5ce7;
        }
        .article-list .article-meta {
            font-size: 0.78rem;
            color: var(--text-muted);
            white-space: nowrap;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .article-list .article-meta .read-time {
            display: flex;
            align-items: center;
            gap: 4px;
        }
        .article-list .article-meta .read-time::before {
            content: '';
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: #a29bfe;
            display: inline-block;
        }

        /* ========== 最新文章 - 特殊样式 ========== */
        .latest-section .article-list {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
        }
        .latest-section .article-list li {
            padding: 16px 20px;
        }
        .latest-section .article-list li::before {
            width: 36px;
            height: 36px;
            font-size: 0.85rem;
            background: linear-gradient(135deg, #6c5ce7, #a29bfe);
            box-shadow: 0 4px 12px rgba(108, 92, 231, 0.3);
        }
        .latest-section .article-list li:nth-child(3n+1)::before {
            background: linear-gradient(135deg, #6c5ce7, #8b5cf6);
        }
        .latest-section .article-list li:nth-child(3n+2)::before {
            background: linear-gradient(135deg, #8b5cf6, #ec4899);
        }
        .latest-section .article-list li:nth-child(3n+3)::before {
            background: linear-gradient(135deg, #fd79a8, #fdcb6e);
        }

        /* ========== 猜你喜欢 ========== */
        .recommend-section .article-list {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
        }
        .recommend-section .article-list li {
            padding: 12px 16px;
            background: linear-gradient(135deg, #ffffff, #f8f7ff);
            border-left: 3px solid transparent;
            border-image: var(--primary-gradient) 1;
        }
        .recommend-section .article-list li:nth-child(odd) {
            border-left-color: #a29bfe;
        }
        .recommend-section .article-list li:nth-child(even) {
            border-left-color: #fd79a8;
        }
        .recommend-section .article-list li::before {
            background: transparent;
            color: #a29bfe;
            font-size: 1rem;
            font-weight: 800;
            width: auto;
            min-width: 28px;
            background: none;
        }
        .recommend-section .article-list li:nth-child(odd)::before {
            color: #8b5cf6;
        }
        .recommend-section .article-list li:nth-child(even)::before {
            color: #ec4899;
        }

        /* ========== 四个栏目 - 颜色按顺序分配（nth-child） ========== */
        .columns-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
        }
        .column-card {
            background: var(--card-bg);
            border-radius: var(--radius-md);
            padding: 22px 20px;
            border: 1px solid var(--border-color);
            border-top: 3px solid var(--col-border, #ccc);
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
        }
        .column-card:hover {
            box-shadow: var(--shadow-md);
        }
        .column-card .column-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 14px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--border-color);
        }
        .column-card .column-title {
            font-size: 1.1rem;
            font-weight: 700;
            letter-spacing: -0.3px;
            color: var(--col-title, #333);
        }
        .column-card .column-count {
            font-size: 0.75rem;
            color: var(--text-muted);
            font-weight: 500;
        }
        .column-card .column-list {
            list-style: none;
            counter-reset: col-counter;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .column-card .column-list li {
            counter-increment: col-counter;
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 8px 10px;
            border-radius: var(--radius-sm);
            transition: var(--transition);
            cursor: pointer;
        }
        .column-card .column-list li:hover {
            background: rgba(0, 0, 0, 0.03);
        }
        .column-card .column-list li::before {
            content: counter(col-counter);
            flex-shrink: 0;
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.7rem;
            font-weight: 700;
            border-radius: 6px;
            color: #fff;
            background: var(--col-number-bg, #999);
        }
        .column-card .column-list .col-article-title {
            flex: 1;
            font-size: 0.85rem;
            font-weight: 500;
            word-break: break-word;
            overflow-wrap: break-word;
            white-space: normal;
            line-height: 1.45;
            text-align: left;
            color: var(--text-primary);
            text-decoration: none;
            transition: color var(--transition);
        }
        .column-card .column-list .col-article-title:hover {
            color: #6c5ce7;
        }

        /* 10组颜色循环：nth-child(10n+1) 到 nth-child(10n+10) */
        .column-card:nth-child(10n+1) {
            --col-border: #3b82f6;
            --col-title: #3b82f6;
            --col-number-bg: linear-gradient(135deg, #3b82f6, #60a5fa);
        }
        .column-card:nth-child(10n+2) {
            --col-border: #8b5cf6;
            --col-title: #8b5cf6;
            --col-number-bg: linear-gradient(135deg, #8b5cf6, #a78bfa);
        }
        .column-card:nth-child(10n+3) {
            --col-border: #ec4899;
            --col-title: #ec4899;
            --col-number-bg: linear-gradient(135deg, #ec4899, #f472b6);
        }
        .column-card:nth-child(10n+4) {
            --col-border: #10b981;
            --col-title: #10b981;
            --col-number-bg: linear-gradient(135deg, #10b981, #34d399);
        }
        .column-card:nth-child(10n+5) {
            --col-border: #f59e0b;
            --col-title: #f59e0b;
            --col-number-bg: linear-gradient(135deg, #f59e0b, #fbbf24);
        }
        .column-card:nth-child(10n+6) {
            --col-border: #ef4444;
            --col-title: #ef4444;
            --col-number-bg: linear-gradient(135deg, #ef4444, #fca5a5);
        }
        .column-card:nth-child(10n+7) {
            --col-border: #14b8a6;
            --col-title: #14b8a6;
            --col-number-bg: linear-gradient(135deg, #14b8a6, #2dd4bf);
        }
        .column-card:nth-child(10n+8) {
            --col-border: #6366f1;
            --col-title: #6366f1;
            --col-number-bg: linear-gradient(135deg, #6366f1, #a5b4fc);
        }
        .column-card:nth-child(10n+9) {
            --col-border: #84cc16;
            --col-title: #84cc16;
            --col-number-bg: linear-gradient(135deg, #84cc16, #bef264);
        }
        .column-card:nth-child(10n+10) {
            --col-border: #64748b;
            --col-title: #64748b;
            --col-number-bg: linear-gradient(135deg, #64748b, #94a3b8);
        }

        /* ========== 图文精选 ========== */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 16px;
        }
        .gallery-item {
            border-radius: var(--radius-sm);
            overflow: hidden;
            background: var(--card-bg);
            border: 1px solid var(--border-color);
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            cursor: pointer;
            text-decoration: none;
            display: block;
        }
        .gallery-item:hover {
            box-shadow: var(--shadow-md);
            transform: translateY(-3px);
        }
        .gallery-item .gallery-img-wrap {
            width: 100%;
            aspect-ratio: 4/3;
            overflow: hidden;
            background: #e0e0e8;
        }
        .gallery-item .gallery-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.5s ease;
        }
        .gallery-item:hover .gallery-img-wrap img {
            transform: scale(1.06);
        }
        .gallery-item .gallery-title {
            padding: 10px 12px;
            font-size: 0.82rem;
            font-weight: 500;
            color: var(--text-primary);
            word-break: break-word;
            overflow-wrap: break-word;
            white-space: normal;
            line-height: 1.45;
            text-align: left;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-decoration: none;
        }

        /* ========== 热门文章 - 深色风格 ========== */
        .hot-section {
            background: var(--dark-bg);
            border-radius: var(--radius-lg);
            padding: 32px 28px;
            box-shadow: var(--shadow-lg);
            position: relative;
            overflow: hidden;
        }
        .hot-section::before {
            content: '';
            position: absolute;
            top: -80px;
            right: -80px;
            width: 280px;
            height: 280px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(108, 92, 231, 0.25), transparent 70%);
            pointer-events: none;
        }
        .hot-section::after {
            content: '';
            position: absolute;
            bottom: -60px;
            left: -60px;
            width: 200px;
            height: 200px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(253, 121, 168, 0.2), transparent 70%);
            pointer-events: none;
        }
        .hot-section .section-title {
            color: var(--text-light);
        }
        .hot-section .section-title::before {
            background: linear-gradient(135deg, #fd79a8, #fdcb6e);
        }
        .hot-section .section-subtitle {
            color: rgba(255, 255, 255, 0.45);
        }
        .hot-section .article-list {
            gap: 8px;
            position: relative;
            z-index: 1;
        }
        .hot-section .article-list li {
            background: var(--dark-card);
            border-color: rgba(255, 255, 255, 0.08);
            box-shadow: none;
            padding: 12px 16px;
        }
        .hot-section .article-list li:hover {
            background: rgba(255, 255, 255, 0.06);
            border-color: rgba(255, 255, 255, 0.15);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }
        .hot-section .article-list li::before {
            background: linear-gradient(135deg, #fdcb6e, #fd79a8);
            color: #1a1a2e;
            font-weight: 800;
        }
        .hot-section .article-list .article-title {
            color: var(--text-light);
        }
        .hot-section .article-list .article-title:hover {
            color: #fdcb6e;
        }
        .hot-section .article-list .article-meta {
            color: rgba(255, 255, 255, 0.4);
        }
        .hot-section .article-list .article-meta .read-time::before {
            background: #fd79a8;
        }

        /* ========== 推荐文章 ========== */
        .featured-section .article-list {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
        }
        .featured-section .article-list li {
            padding: 13px 18px;
            background: linear-gradient(135deg, #ffffff, #fff8f0);
            border-left: 3px solid #fdcb6e;
        }
        .featured-section .article-list li:nth-child(even) {
            border-left-color: #fd79a8;
            background: linear-gradient(135deg, #ffffff, #fff5f8);
        }
        .featured-section .article-list li::before {
            background: transparent;
            color: #f59e0b;
            font-weight: 800;
            font-size: 1rem;
            width: auto;
            min-width: 28px;
        }
        .featured-section .article-list li:nth-child(even)::before {
            color: #ec4899;
        }

        /* ========== 响应式设计 ========== */
        @media (max-width: 992px) {
            .latest-section .article-list,
            .recommend-section .article-list,
            .featured-section .article-list {
                grid-template-columns: 1fr;
            }
            .gallery-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            .columns-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }
            .main {
                padding: 80px 16px 0;
            }
        }

        @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;
            }
            .section {
                margin-bottom: 36px;
            }
            .section-title {
                font-size: 1.3rem;
                padding-left: 12px;
            }
            .section-title::before {
                height: 22px;
                width: 3px;
            }
            .gallery-grid {
                grid-template-columns: 1fr;
                gap: 12px;
            }
            .gallery-item .gallery-img-wrap {
                aspect-ratio: 16/9;
            }
            .gallery-item .gallery-title {
                font-size: 0.9rem;
                padding: 12px 14px;
            }
            .hot-section {
                padding: 20px 16px;
                border-radius: var(--radius-md);
            }
            .article-list li {
                padding: 12px 14px;
                gap: 10px;
            }
            .article-list li::before {
                width: 28px;
                height: 28px;
                font-size: 0.7rem;
            }
            .article-list .article-title {
                font-size: 0.85rem;
            }
            .article-list .article-meta {
                font-size: 0.72rem;
                gap: 6px;
            }
            .columns-grid {
                grid-template-columns: 1fr;
                gap: 14px;
            }
            .column-card {
                padding: 16px 14px;
            }
            .column-card .column-title {
                font-size: 1rem;
            }
            .column-card .column-list li {
                padding: 6px 8px;
                gap: 8px;
            }
            .column-card .column-list li::before {
                width: 20px;
                height: 20px;
                font-size: 0.65rem;
            }
            .column-card .column-list .col-article-title {
                font-size: 0.78rem;
            }
            /* 移动端隐藏热门和推荐的时间阅读量 */
            .hot-section .article-meta,
            .featured-section .article-meta {
                display: none !important;
            }
            .footer {
                padding: 28px 16px 16px;
                margin-top: 40px;
            }
            .footer-links {
                gap: 14px;
            }
        }

        @media (max-width: 480px) {
            .gallery-grid {
                grid-template-columns: 1fr;
            }
            .section-title {
                font-size: 1.15rem;
            }
            .article-list .article-meta {
                display: none;
            }
            .latest-section .article-list li::before {
                width: 28px;
                height: 28px;
                font-size: 0.7rem;
            }
            .hot-section .article-list li,
            .featured-section .article-list li {
                padding: 10px 12px;
            }
        }