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

        /* ========== 详情页布局 ========== */
        .detail-layout {
            display: grid;
            grid-template-columns: 1fr 360px;
            gap: 30px;
            align-items: start;
            margin-bottom: 50px;
        }

        /* 左侧文章详情 */
        .article-detail {
            background: var(--card-bg);
            border-radius: var(--radius);
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }

        /* 文章头部（缩略图 + 标题区） */
        .article-header {
            display: flex;
            gap: 20px;
            align-items: flex-start;
            margin-bottom: 20px;
        }
        .article-thumb {
            flex-shrink: 0;
            width: 200px;
            height: 117px;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            background: #222;
        }
        .article-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        .article-heading {
            flex: 1;
            min-width: 0;
        }
        .article-detail h1 {
            font-size: 2.2rem;
            color: var(--text-color);
            margin-bottom: 10px;
            line-height: 1.3;
            font-weight: bold;
            letter-spacing: 0.5px;
            text-shadow: 0 0 8px var(--shadow-color);
        }
        .article-detail .article-meta {
            display: flex;
            gap: 20px;
            color: var(--meta-text);
            font-size: 0.9rem;
            flex-wrap: wrap;
            padding-bottom: 0;
            border-bottom: none;
            margin-bottom: 0;
        }
        .article-detail .article-meta .date::before {
            content: "🕒 ";
            margin-right: 3px;
        }
        .article-detail .article-meta .views::before {
            content: "👁️ ";
            margin-right: 3px;
        }

        /* 文章导读区块 */
        .article-intro {
            background: rgba(0, 219, 0, 0.06);
            border-left: 4px solid var(--primary-color);
            padding: 18px 20px;
            margin-bottom: 25px;
            border-radius: 0 8px 8px 0;
            color: var(--muted-text);
            font-size: 1rem;
            line-height: 1.8;
            letter-spacing: 0.3px;
        }
        .article-intro strong {
            color: var(--primary-light);
            font-weight: bold;
        }

        .article-detail .article-content {
            color: var(--muted-text);
            font-size: 1rem;
            line-height: 1.9;
            word-break: break-word;
        }
        .article-detail .article-content p {
            margin-bottom: 1.2em;
        }
        .article-detail .article-content h2 {
            font-size: 1.6rem;
            color: var(--primary-color);
            margin: 1.8em 0 0.8em;
            padding-bottom: 6px;
            border-bottom: 1px solid rgba(0, 219, 0, 0.2);
            text-shadow: none;
            display: block;
        }
        .article-detail .article-content h2::after {
            display: none;
        }
        .article-detail .article-content h3 {
            font-size: 1.3rem;
            color: var(--primary-light);
            margin: 1.5em 0 0.6em;
            font-weight: bold;
        }
        .article-detail .article-content strong {
            color: #ffffff;
            font-weight: bold;
        }
        /* 文章内容中的链接特效 */
        .article-detail .article-content a {
            color: var(--primary-light);
            text-decoration: none;
            border-bottom: 1px dashed rgba(0, 219, 0, 0.5);
            transition: all 0.3s ease;
        }
        .article-detail .article-content a:hover {
            color: #ffffff;
            border-bottom-color: #ffffff;
            text-shadow: 0 0 8px var(--shadow-color);
        }
        .article-detail .article-content ul {
            margin: 1em 0 1.5em 1.5em;
            list-style: disc;
            color: var(--muted-text);
        }
        .article-detail .article-content ul li {
            margin-bottom: 0.5em;
        }
        .article-detail .article-content img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            margin: 1.5em auto;
            display: block;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
        }
        .article-detail .article-content table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.5em 0;
            font-size: 0.95rem;
        }
        .article-detail .article-content table th,
        .article-detail .article-content table td {
            border: 1px solid rgba(255, 255, 255, 0.15);
            padding: 10px 15px;
            text-align: left;
        }
        .article-detail .article-content table th {
            background: rgba(0, 219, 0, 0.1);
            color: var(--primary-light);
            font-weight: bold;
        }
        .article-detail .article-content table tr:nth-child(even) {
            background: rgba(255, 255, 255, 0.02);
        }

        /* 相关文章列表（无图片） */
        .related-articles {
            margin-top: 40px;
            padding-top: 25px;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
        }
        .related-articles h2 {
            font-size: 1.5rem;
            color: var(--primary-color);
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 8px;
        }
        .related-articles h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, var(--primary-color), transparent);
        }
        .related-list {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
        }
        .related-item {
            background: rgba(255, 255, 255, 0.02);
            border-radius: 8px;
            padding: 12px 15px;
            transition: all 0.3s ease;
            cursor: pointer;
        }
        .related-item:hover {
            background: rgba(0, 219, 0, 0.05);
            box-shadow: 0 0 8px var(--shadow-color);
        }
        .related-item .related-info a {
            color: var(--text-color);
            text-decoration: none;
            font-size: 0.95rem;
            transition: color 0.3s ease;
            display: block;
            line-height: 1.5;
            word-break: break-word;
        }
        .related-item:hover .related-info a {
            color: var(--primary-light);
        }
        .related-item .related-info .related-date {
            font-size: 0.75rem;
            color: var(--meta-text);
            margin-top: 4px;
            display: block;
        }

        /* 上一篇下一篇 */
        .article-nav {
            display: flex;
            justify-content: space-between;
            gap: 20px;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
        }
        .article-nav a {
            color: var(--primary-light);
            text-decoration: none;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            gap: 4px;
            padding: 10px 15px;
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.02);
            flex: 1;
            min-width: 0;
        }
        .article-nav a:hover {
            background: rgba(0, 219, 0, 0.1);
            box-shadow: 0 0 10px var(--shadow-color);
            color: #ffffff;
        }
        .article-nav a .nav-label {
            font-size: 0.75rem;
            color: var(--meta-text);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .article-nav a.prev {
            text-align: left;
        }
        .article-nav a.next {
            text-align: right;
            align-items: flex-end;
        }

        /* 右侧：三个列表 */
        .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: "⭐ "; }

        .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;
        }
        .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;
        }
        .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: 20px;
        }
        .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; }

            .detail-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;
            }
            .related-list {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .container { width: 95%; padding: 0 10px; }
            .article-detail {
                padding: 20px;
            }
            .article-detail h1 {
                font-size: 1.8rem;
            }
            /* 移动端：缩略图单独一行显示在标题上方 */
            .article-header {
                flex-direction: column;
            }
            .article-thumb {
                width: 100%;
                height: auto;
                aspect-ratio: 237 / 139;
            }
            .right-column {
                grid-template-columns: 1fr;
            }
            .side-block:last-child {
                grid-column: span 1;
            }
            .article-nav {
                flex-direction: column;
            }
            .article-nav a.next {
                text-align: left;
                align-items: flex-start;
            }
        }

        @media (max-width: 500px) {
            .article-detail h1 {
                font-size: 1.5rem;
            }
            .article-detail .article-content h2 {
                font-size: 1.3rem;
            }
            .article-detail .article-content h3 {
                font-size: 1.1rem;
            }
            .related-item .related-info a {
                font-size: 0.88rem;
            }
            .copyright { display: none; }
        }
    </style>