        /* 基礎樣式 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Segoe UI", "Microsoft JhengHei", "微軟正黑體", sans-serif;
        }
        
        :root {
            --primary-color: #0088cc; /* Telegram藍色 */
            --secondary-color: #f8f9fa;
            --text-color: #333;
            --light-text: #666;
            --border-color: #e0e0e0;
            --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        body {
            background-color: #f5f7fa;
            color: var(--text-color);
            line-height: 1.6;
        }
        
        a {
            color: var(--primary-color);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        a:hover {
            color: #006699;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        /* 頭部樣式 */
        header {
            background-color: white;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        
        .logo {
            display: flex;
            align-items: center;
            font-size: 24px;
            font-weight: bold;
            color: var(--primary-color);
        }
        
        .logo i {
            margin-right: 10px;
            font-size: 28px;
        }
        
        .search-box {
            display: flex;
            align-items: center;
            background: var(--secondary-color);
            border-radius: 20px;
            padding: 8px 15px;
            width: 300px;
        }
        
        .search-box input {
            border: none;
            background: transparent;
            outline: none;
            width: 100%;
            padding: 0 10px;
        }
        
        .search-box button {
            background: transparent;
            border: none;
            color: var(--light-text);
            cursor: pointer;
        }
        
        /* 導航樣式 */
        nav {
            background-color: var(--primary-color);
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
        }
        
        .nav-menu li {
            position: relative;
        }
        
        .nav-menu a {
            display: block;
            padding: 15px 20px;
            color: white;
            font-weight: 500;
        }
        
        .nav-menu a:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }
        
        /* 麵包屑導航 */
        .breadcrumb {
            padding: 15px 0;
            font-size: 14px;
            color: var(--light-text);
        }
        
        .breadcrumb a {
            color: var(--light-text);
        }
        
        .breadcrumb a:hover {
            color: var(--primary-color);
        }
        
        .breadcrumb i {
            margin: 0 8px;
            font-size: 12px;
        }
        
        /* 主要內容區域 */
        .main-content {
            display: flex;
            margin: 30px 0;
            gap: 30px;
        }
        
        .content {
            flex: 3;
        }
        
        .sidebar {
            flex: 1;
        }
        
        /* 欄目頭部 */
        .category-header {
            background: white;
            border-radius: 8px;
            padding: 25px;
            margin-bottom: 25px;
            box-shadow: var(--shadow);
        }
        
        .category-title {
            font-size: 26px;
            margin-bottom: 10px;
            color: var(--primary-color);
            display: flex;
            align-items: center;
        }
        
        .category-title i {
            margin-right: 10px;
        }
        
        .category-desc {
            color: var(--light-text);
            line-height: 1.6;
        }
        
        /* 文章列表樣式 */
        .article-list {
            margin-bottom: 30px;
        }
        
        .article-item {
            display: flex;
            background: white;
            border-radius: 8px;
            overflow: hidden;
            margin-bottom: 20px;
            box-shadow: var(--shadow);
            transition: transform 0.3s;
        }
        
        .article-item:hover {
            transform: translateY(-3px);
        }
        
        .article-img {
            flex: 0 0 280px;
            max-width: 280px;
        }
        
        .article-img img {
            width: 100%;
            height: 180px;
            object-fit: cover;
        }
        
        .article-info {
            flex: 1;
            padding: 20px;
        }
        
        .article-title {
            font-size: 20px;
            margin-bottom: 10px;
            line-height: 1.4;
        }
        
        .article-meta {
            display: flex;
            gap: 15px;
            font-size: 14px;
            color: var(--light-text);
            margin-bottom: 10px;
        }
        
        .article-meta i {
            margin-right: 5px;
        }
        
        .article-desc {
            color: var(--light-text);
            line-height: 1.6;
        }
        
        /* 加載更多按鈕 */
        .load-more {
            text-align: center;
            margin: 30px 0;
        }
        
        .load-more-btn {
            background: var(--primary-color);
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 30px;
            font-size: 16px;
            cursor: pointer;
            transition: background 0.3s;
        }
        
        .load-more-btn:hover {
            background: #006699;
        }
        
        .load-more-btn i {
            margin-right: 8px;
        }
        
        /* 自動加載提示 */
        .loading-indicator {
            display: none;
            text-align: center;
            padding: 20px;
        }
        
        .loading-text {
            display: inline-flex;
            align-items: center;
            color: var(--light-text);
        }
        
        .loading-spinner {
            width: 20px;
            height: 20px;
            border: 2px solid rgba(0, 136, 204, 0.3);
            border-radius: 50%;
            border-top-color: var(--primary-color);
            animation: spin 1s linear infinite;
            margin-right: 10px;
        }
        
        @keyframes spin {
            to { transform: rotate(360deg); }
        }
        
        /* 側邊欄樣式 */
        .sidebar-widget {
            background: white;
            border-radius: 8px;
            padding: 20px;
            margin-bottom: 30px;
            box-shadow: var(--shadow);
        }
        
        .widget-title {
            font-size: 18px;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 1px solid var(--border-color);
            display: flex;
            align-items: center;
        }
        
        .widget-title i {
            margin-right: 8px;
            color: var(--primary-color);
        }
        
        .popular-list, .random-list {
            list-style: none;
        }
        
        .popular-list li, .random-list li {
            padding: 12px 0;
            border-bottom: 1px solid var(--border-color);
        }
        
        .popular-list li:last-child, .random-list li:last-child {
            border-bottom: none;
        }
        
        .popular-list a, .random-list a {
            display: block;
            font-size: 15px;
            margin-bottom: 5px;
        }
        
        .popular-meta, .random-meta {
            font-size: 12px;
            color: var(--light-text);
        }
        
        .popular-meta i, .random-meta i {
            margin-right: 3px;
        }
        
        .random-article {
            display: flex;
            margin-bottom: 15px;
            padding-bottom: 15px;
            border-bottom: 1px solid var(--border-color);
        }
        
        .random-article:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }
        
        .random-img {
            flex: 0 0 80px;
            margin-right: 15px;
        }
        
        .random-img img {
            width: 100%;
            height: 60px;
            object-fit: cover;
            border-radius: 4px;
        }
        
        .random-content {
            flex: 1;
        }
        
        .random-title {
            font-size: 14px;
            margin-bottom: 5px;
            line-height: 1.4;
        }
        
        .random-meta {
            font-size: 11px;
        }
        
        /* 底部樣式 */
        footer {
            background: #2c3e50;
            color: white;
            padding: 40px 0 20px;
        }
        
        .footer-content {
            display: flex;
            justify-content: space-between;
            margin-bottom: 30px;
        }
        
        .footer-logo {
            font-size: 22px;
            font-weight: bold;
            margin-bottom: 15px;
        }
        
        .footer-links {
            display: flex;
            gap: 30px;
        }
        
        .footer-column h3 {
            font-size: 18px;
            margin-bottom: 15px;
            padding-bottom: 8px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column li {
            margin-bottom: 8px;
        }
        
        .footer-column a {
            color: rgba(255, 255, 255, 0.7);
        }
        
        .footer-column a:hover {
            color: white;
        }
        
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 14px;
            color: rgba(255, 255, 255, 0.6);
        }
        
        /* 返回頂部按鈕 */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--primary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
            z-index: 999;
        }
        
        .back-to-top.active {
            opacity: 1;
            visibility: visible;
        }
        
        .back-to-top:hover {
            background: #006699;
        }
        
        /* 響應式設計 */
        @media (max-width: 992px) {
            .main-content {
                flex-direction: column;
            }
            
            .article-item {
                flex-direction: column;
            }
            
            .article-img {
                flex: 0 0 100%;
                max-width: 100%;
            }
            
            .article-img img {
                height: 200px;
            }
            
            .footer-content {
                flex-direction: column;
                gap: 30px;
            }
        }
        
        @media (max-width: 768px) {
            .header-top {
                flex-direction: column;
                gap: 15px;
            }
            
            .search-box {
                width: 100%;
            }
            
            .nav-menu {
                flex-wrap: wrap;
            }
            
            .article-meta {
                flex-direction: column;
                gap: 5px;
            }
            
            .footer-links {
                flex-direction: column;
                gap: 20px;
            }
        }