        :root {
            --primary-color: #00DB00;
            --primary-dark: #00B300;
            --primary-light: #33E233;
            --text-color: #ffffff;
            --bg-color: #111111;
            --card-bg: #1a1a1a;
            --shadow-color: rgba(0, 219, 0, 0.3);
            --muted-text: #cccccc;
            --meta-text: #999999;
            --border-subtle: rgba(0, 219, 0, 0.15);
            --radius: 10px;
            --transition-fast: 0.3s ease;
            --transition-smooth: 0.4s cubic-bezier(0.65, 0, 0.35, 1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background-color: var(--bg-color);
            color: var(--text-color);
            line-height: 1.6;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        /* ========== 导航栏样式 ========== */
        header {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
            padding: 15px 0;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            position: sticky;
            top: 0;
            z-index: 1000;
            margin-bottom: 0;
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo a {
            color: white;
            text-decoration: none;
            font-size: 1.8rem;
            font-weight: bold;
            text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
            transition: all 0.3s ease;
            display: inline-block;
            letter-spacing: 1px;
        }

        .logo a::before {
            content: "🍚 ";
            display: inline-block;
        }

        .logo a:hover {
            transform: scale(1.1) rotate(2deg);
            text-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
        }

        .nav-links {
            display: flex;
            list-style: none;
            align-items: center;
        }

        .nav-links li {
            margin-left: 20px;
            position: relative;
        }

        .nav-links a {
            color: white;
            text-decoration: none;
            font-size: 1.05rem;
            padding: 8px 12px;
            border-radius: 5px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            z-index: 1;
            display: inline-block;
        }

        .nav-links a::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.1);
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 0.4s cubic-bezier(0.65, 0, 0.35, 1);
            z-index: -1;
        }

        .nav-links a:hover::before {
            transform: scaleX(1);
            transform-origin: left;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: white;
            transition: width 0.4s cubic-bezier(0.65, 0, 0.35, 1);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-links a:hover {
            color: white;
            box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
        }

        .hamburger {
            display: none;
            cursor: pointer;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            padding: 5px 10px;
            transition: transform 0.3s ease;
            position: relative;
            width: 44px;
            height: 44px;
        }

        .hamburger::before {
            content: "☰";
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: inherit;
        }

        .hamburger.active::before {
            content: "✕";
        }

        .hamburger:hover {
            transform: scale(1.1);
        }

        /* ========== 面包屑导航 ========== */
        .breadcrumb-wrapper {
            background-color: rgba(0, 0, 0, 0.3);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            padding: 12px 0;
            margin-bottom: 30px;
        }
        .breadcrumb {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 8px;
            font-size: 0.95rem;
            color: var(--muted-text);
        }
        .breadcrumb a {
            color: var(--primary-light);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .breadcrumb a:hover {
            color: #ffffff;
            text-shadow: 0 0 8px var(--shadow-color);
        }
        .breadcrumb .separator {
            color: var(--meta-text);
            font-size: 0.8rem;
        }
        .breadcrumb .current {
            color: var(--text-color);
            font-weight: bold;
        }

        /* ========== 二级栏目通栏（无图标） ========== */
        .subcategories-section {
            margin-bottom: 40px;
        }
        .subcategories-section h2 {
            font-size: 1.8rem;
            color: var(--primary-color);
            margin-bottom: 20px;
            text-shadow: 0 0 10px var(--shadow-color);
            position: relative;
            padding-bottom: 10px;
        }
        .subcategories-section h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 3px;
            background: linear-gradient(90deg, var(--primary-color), transparent);
        }
        .subcategory-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 15px;
        }
        .subcategory-item {
            background: var(--card-bg);
            border-radius: var(--radius);
            padding: 18px 10px;
            text-align: center;
            font-size: 0.95rem;
            color: var(--text-color);
            text-decoration: none;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease;
            border: 1px solid transparent;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            word-break: break-word;
            line-height: 1.4;
        }
        .subcategory-item:hover {
            border-color: var(--primary-color);
            box-shadow: 0 8px 20px var(--shadow-color);
            transform: translateY(-3px);
            color: var(--primary-light);
        }

        /* ========== 左右分栏布局 ========== */
        .list-layout {
            display: grid;
            grid-template-columns: 1fr 360px;
            gap: 30px;
            align-items: start;
        }

        /* 左侧：最新文章列表（带缩略图） */
        .left-column .list-title {
            font-size: 1.6rem;
            color: var(--primary-color);
            margin-bottom: 20px;
            padding-bottom: 8px;
            border-bottom: 2px solid rgba(0, 219, 0, 0.2);
        }
        .left-column .list-title::before {
            content: "🕒 ";
        }
        .thumb-list {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        .thumb-item {
            display: flex;
            gap: 16px;
            background: var(--card-bg);
            border-radius: var(--radius);
            padding: 15px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease;
            cursor: pointer;
            align-items: center;
        }
        .thumb-item:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 22px var(--shadow-color);
        }
        .thumb-img {
            width: 120px;
            height: 90px;
            border-radius: 8px;
            background-size: cover;
            background-position: center;
            flex-shrink: 0;
            background-color: #222;
        }
        .thumb-content {
            flex: 1;
            min-width: 0;
        }
        .thumb-content h3 {
            font-size: 1.05rem;
            margin-bottom: 6px;
            font-weight: normal;
            line-height: 1.4;
        }
        .thumb-content h3 a {
            color: white;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .thumb-item:hover h3 a {
            color: var(--primary-light);
        }
        .thumb-content .thumb-desc {
            color: var(--muted-text);
            font-size: 0.85rem;
            margin-bottom: 8px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .thumb-content .thumb-meta {
            display: flex;
            gap: 15px;
            color: var(--meta-text);
            font-size: 0.8rem;
        }
        .thumb-content .thumb-meta .date::before {
            content: "🕒 ";
            margin-right: 2px;
        }
        .thumb-content .thumb-meta .views::before {
            content: "👁️ ";
            margin-right: 2px;
        }

        /* 分页按钮 */
        .pagination {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 8px;
            margin-top: 30px;
            flex-wrap: wrap;
        }
        .pagination a,
        .pagination span {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 36px;
            height: 36px;
            padding: 0 10px;
            border-radius: 6px;
            background: var(--card-bg);
            color: var(--text-color);
            text-decoration: none;
            font-size: 0.9rem;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
            cursor: pointer;
        }
        .pagination a:hover {
            border-color: var(--primary-color);
            color: var(--primary-light);
            box-shadow: 0 0 10px var(--shadow-color);
        }
        .pagination .current {
            background: var(--primary-color);
            color: #111;
            font-weight: bold;
            border-color: var(--primary-color);
            box-shadow: 0 0 10px var(--shadow-color);
        }
        .pagination .disabled {
            opacity: 0.5;
            pointer-events: none;
        }

        /* 右侧：三个列表 */
        .right-column {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .side-block {
            background: var(--card-bg);
            border-radius: var(--radius);
            padding: 20px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }
        .side-block .side-title {
            font-size: 1.2rem;
            color: var(--primary-color);
            margin-bottom: 15px;
            font-weight: bold;
            display: flex;
            align-items: center;
            gap: 8px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            padding-bottom: 10px;
        }
        .side-block .side-title::before {
            font-size: 1.2rem;
        }
        #side-latest .side-title::before { content: "🆕 "; }
        #side-hot .side-title::before { content: "🔥 "; }
        #side-recommend .side-title::before { content: "⭐ "; }

        /* 列表序号使用CSS计数器 */
        .side-list {
            list-style: none;
            counter-reset: side-item;
        }
        .side-list li {
            padding: 9px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            display: flex;
            align-items: flex-start;
            gap: 10px;
            transition: all 0.3s ease;
            cursor: pointer;
            counter-increment: side-item;
        }
        .side-list li:last-child {
            border-bottom: none;
        }
        /* 序号由CSS自动生成 */
        .side-list li::before {
            content: counter(side-item);
            color: var(--primary-light);
            font-weight: bold;
            font-size: 0.85rem;
            min-width: 24px;
            text-align: center;
            flex-shrink: 0;
            padding-top: 2px;
            line-height: 1.5;
        }
        /* 包裹链接和元信息的div */
        .side-list li > div {
            flex: 1;
            min-width: 0;
        }
        .side-list li .side-link {
            color: var(--text-color);
            text-decoration: none;
            font-size: 0.88rem;
            transition: color 0.3s ease;
            display: block;
            line-height: 1.5;
            word-break: break-word;
        }
        .side-list li:hover .side-link {
            color: var(--primary-light);
        }
        .side-list li .side-meta {
            font-size: 0.7rem;
            color: var(--meta-text);
            margin-top: 2px;
            display: flex;
            gap: 10px;
        }
        .side-list li .side-meta .meta-date::before {
            content: "📅 ";
            margin-right: 2px;
        }
        .side-list li .side-meta .meta-views::before {
            content: "👁️ ";
            margin-right: 2px;
        }

        /* ========== 页脚 ========== */
        footer {
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
            padding: 30px 0;
            text-align: center;
            box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.3);
            margin-top: 50px;
        }
        .footer-content {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        .site-name a {
            color: white;
            text-decoration: none;
            font-size: 1.5rem;
            font-weight: bold;
            margin-bottom: 15px;
            display: inline-block;
            transition: all 0.3s ease;
            letter-spacing: 1px;
        }
        .site-name a::before {
            content: "🍚 ";
            display: inline-block;
        }
        .site-name a:hover {
            transform: scale(1.05);
            text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
        }
        .copyright {
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.9rem;
        }
        .copyright a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            margin: 0 4px;
            transition: color 0.3s ease, text-shadow 0.3s ease;
        }
        .copyright a:hover {
            color: #ffffff;
            text-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
        }

        /* ========== 响应式 ========== */
        @media (max-width: 1024px) {
            .nav-links {
                position: fixed;
                top: 70px;
                right: -100%;
                width: 80%;
                max-width: 350px;
                height: calc(100vh - 70px);
                background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
                flex-direction: column;
                align-items: center;
                justify-content: flex-start;
                padding-top: 50px;
                transition: right 0.5s ease;
                box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
                z-index: 999;
            }
            .nav-links.active { right: 0; }
            .nav-links li { margin: 12px 0; }
            .hamburger { display: block; }

            .subcategory-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            .list-layout {
                grid-template-columns: 1fr;
            }
            .right-column {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }
            .side-block:last-child {
                grid-column: span 2;
            }
        }

        @media (max-width: 768px) {
            .container { width: 95%; padding: 0 10px; }
            .subcategory-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
            }
            .thumb-item {
                flex-direction: column;
                align-items: flex-start;
            }
            .thumb-img {
                width: 100%;
                height: 150px;
            }
            .right-column {
                grid-template-columns: 1fr;
            }
            .side-block:last-child {
                grid-column: span 1;
            }
        }

        @media (max-width: 500px) {
            .subcategory-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 8px;
            }
            .subcategory-item {
                padding: 12px 6px;
                font-size: 0.85rem;
            }
            .thumb-content h3 { font-size: 0.95rem; }
            .copyright { display: none; }
            .pagination a,
            .pagination span {
                min-width: 30px;
                height: 30px;
                padding: 0 6px;
                font-size: 0.8rem;
            }
        }