/* 原子级样式覆盖 */
html body#home div#mainContent *:not(script):not(style) {
    background: inherit !important;
    color: inherit !important;
    box-shadow: none !important;
}
/* 优先级提升至最高级 */
html body#home {
    background: #0f172a !important;
    color: #e2epsilon8f0 !important;
}

/* 使用原生DOM路径选择器 */
body div#mainContent div#topics .post {
    background: rgba(15,23,42,0.8) !important;
    border: 1px solid var(--primary) !important;
    box-shadow: 0 0 20px rgba(45,212,191,0.15) !important;
}

/* 导航栏紧急修复 */
#navigator,
#navList,
#blogTitle {
    background: rgba(15,23,42,0.98) !important;
    backdrop-filter: blur(15px) !important;
    border-bottom: 1px solid var(--primary) !important;
}

/* 使用属性选择器精准定位 */
div[class^='post']:not(.custom-bg) {
    background: linear-gradient(
        to bottom right,
        rgba(15,23,42,0.8),
        rgba(15,23,42,0.6)
    ) !important;
}

<script>
// 替代requestAnimationFrame的方案
let lastTime = 0;
const vendors = ['ms', 'moz', 'webkit', 'o'];
for(let x = 0; x < vendors.length && !window.requestAnimationFrame; ++x) {
    window.requestAnimationFrame = window[vendors[x]+'RequestAnimationFrame'];
    window.cancelAnimationFrame = window[vendors[x]+'CancelAnimationFrame'] || 
                                  window[vendors[x]+'CancelRequestAnimationFrame'];
}

// 兼容性动画循环
function compatAnimate() {
    const now = Date.now();
    const delta = now - lastTime;
    if(delta >= 16) { // 60fps补偿
        updateParticles();
        lastTime = now;
    }
    setTimeout(compatAnimate, 16);
}
compatAnimate();
</script>

/* 测试1：字体颜色覆盖 */
body {
    color: #2dd4bf !important;
}

#mainContent {
    background: transparent !important;
    position: relative;
    z-index: 2;
}

/* 导航栏紧急修复 */
#navigator {
    background: rgba(15,23,42,0.95) !important;
    backdrop-filter: blur(10px) !important;
    border-bottom: 1px solid #2dd4bf !important;
}

/* 文章卡片基础样式 */
.forFlow {
    background: rgba(15,23,42,0.6) !important;
    border-radius: 12px !important;
    padding: 2rem !important;
    margin: 2rem 0 !important;
}
/* 页面定制CSS代码 */
:root {
    --primary: #2dd4bf;         /* 主星云色 */
    --secondary: #0d9488;      /* 暗物质色 */
    --space-dark: #0f172a;     /* 宇宙背景 */
    --code-bg: rgba(15,23,42,0.8); /* 代码块背景 */
}

/* 信息统计卡片 */
.blog-stats {
    background: rgba(15,23,42,0.6);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
    backdrop-filter: blur(5px);
    border: 1px solid var(--primary);
    box-shadow: 0 0 20px rgba(45,212,191,0.1);
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1.5rem;
    text-align: center;
}

.stat-item {
    padding: 1rem;
    background: rgba(45,212,191,0.1);
    border-radius: 8px;
    transition: transform 0.3s;
}

.stat-item:hover {
    transform: translateY(-3px);
}

.stat-icon {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

/* 文章内容样式 */
.article-content {
    background: rgba(15,23,42,0.6);
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
    backdrop-filter: blur(5px);
}

.article-title {
    color: var(--primary);
    border-left: 4px solid;
    padding-left: 1rem;
    margin: 1.5rem 0;
    font-size: 1.8rem;
}

.method-list {
    counter-reset: step-counter;
    margin: 2rem 0;
}

.method-item {
    position: relative;
    margin-bottom: 2rem;
    padding-left: 2.5rem;
}

.method-item::before {
    counter-increment: step-counter;
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 28px;
    height: 28px;
    background: var(--primary);
    color: var(--space-dark);
    border-radius: 50%;
    text-align: center;
    line-height: 28px;
    font-weight: bold;
}

.code-block {
    background: var(--code-bg);
    padding: 1.2rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    border: 1px solid rgba(45,212,191,0.3);
    overflow-x: auto;
}

.code-keyword {
    color: #ff79c6;  /* 粉红色 */
}

.code-comment {
    color: #6272a4;  /* 灰蓝色 */
}

/* 总结板块 */
.summary-box {
    background: linear-gradient(145deg, rgba(45,212,191,0.1), rgba(13,148,136,0.2));
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary);
    margin: 2rem 0;
}

/* 响应式布局 */
@media (max-width: 768px) {
    .stat-grid {
        grid-template-columns: 1fr;
    }
    
    .article-content {
        padding: 1.2rem;
    }
    
    .method-item {
        padding-left: 2rem;
    }
}

/* 动态效果 */
@keyframes hologram {
    0% { filter: hue-rotate(0); }
    100% { filter: hue-rotate(360deg); }
}