
        /* 继承主站的暗色主题与玻璃态效果 */
        :root {
            --bg-primary: #000;
            --bg-secondary: #111827;
            --bg-glass: rgba(255, 255, 255, 0.03);
            --border-glass: rgba(255, 255, 255, 0.08);
            --text-primary: #fff;
            --text-secondary: #9ca3af;
            --accent-blue: #0066FF;
        }
        body {
            background-color: var(--bg-primary);
            color: var(--text-primary);
            font-family: 'Inter', system-ui, -apple-system, sans-serif;
        }
        .glass-card {
            background: var(--bg-glass);
            backdrop-filter: blur(10px);
            border: 1px solid var(--border-glass);
            border-radius: 1rem;
            transition: all 0.3s ease;
        }
        .glass-card:hover {
            border-color: rgba(255, 255, 255, 0.15);
            background: rgba(255, 255, 255, 0.05);
            transform: translateY(-2px);
        }
        .btn-primary {
            background: linear-gradient(45deg, var(--accent-blue), #0052cc);
            color: white;
            font-weight: 600;
            border-radius: 9999px;
            padding: 0.75rem 2rem;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }
        .btn-primary:hover {
            box-shadow: 0 0 25px rgba(0, 102, 255, 0.4);
            transform: scale(1.02);
        }
        .tag {
            display: inline-block;
            padding: 0.35rem 0.9rem;
            background: rgba(0, 102, 255, 0.12);
            border: 1px solid rgba(0, 102, 255, 0.25);
            color: #60a5fa;
            border-radius: 9999px;
            font-size: 0.85rem;
            font-weight: 500;
        }
        .article-divider {
            border: none;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
            margin: 2.5rem 0;
        }
