/* 独立样式命名空间，绝不污染主题 */
        .ssgc-cyber-box { 
            background: rgba(30, 30, 35, 0.6); 
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 12px;
            padding: 25px; 
            margin: 30px 0; 
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
            color: #e0e0e0 !important;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        }
        
        /* 强制全局继承白字，清理原生顽固黑字 */
        .ssgc-cyber-box p, .ssgc-cyber-box span, .ssgc-cyber-box li, .ssgc-cyber-box b { 
            color: #e0e0e0 !important; 
            font-size: 15px;
            line-height: 1.7;
        }

        /* 游戏大图修饰：圆角加外阴影 */
        .ssgc-main-banner {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            display: block;
            margin-bottom: 20px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.4);
        }

        /* 元数据转为精致的“游戏标签”排版 */
        .ssgc-tags-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 20px;
        }
        .ssgc-tag-item {
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 13px !important;
            color: #ccc !important;
        }
        .ssgc-tag-item strong {
            color: #66c0f4 !important;
            margin-right: 4px;
        }

        /* 游戏简介框：科幻半透明质感，左侧加入精致的主题色装饰条 */
        .ssgc-brief-panel { 
            background: rgba(102, 192, 244, 0.05); 
            border-left: 4px solid #66c0f4;
            padding: 15px 20px; 
            border-radius: 0 8px 8px 0; 
            margin: 20px 0; 
        }
        .ssgc-brief-panel strong { 
            color: #66c0f4 !important; 
            display: block;
            margin-bottom: 6px;
            font-size: 16px;
        }

        /* 标题统一样式：亮白色带左边小圆点，替代丑陋的下划线 */
        .ssgc-cyber-box h3 { 
            color: #ffffff !important; 
            margin: 35px 0 15px 0;
            font-weight: 600;
            font-size: 20px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .ssgc-cyber-box h3::before {
            content: '';
            display: inline-block;
            width: 6px;
            height: 16px;
            background: #66c0f4;
            border-radius: 3px;
        }

        /* 详情介绍区域内的样式修整 */
        .ssgc-details-body { line-height: 1.8; color: #d5d5d5 !important; }
        .ssgc-details-body img { max-width: 100%; height: auto; border-radius: 6px; margin: 12px 0; box-shadow: 0 4px 10px rgba(0,0,0,0.3); }

        /* 游戏截图群：垂直流排列，加入平滑的缩放和发光反馈特效 */
        .ssgc-shots-list { display: flex; flex-direction: column; gap: 20px; margin: 20px 0; }
        .ssgc-shot-link { display: block; overflow: hidden; border-radius: 8px; background: #000; box-shadow: 0 4px 12px rgba(0,0,0,0.3); }
        .ssgc-shot-img {
            width: 1920px; height: 1080px; max-width: 100%; height: auto; 
            aspect-ratio: 1920 / 1080; object-fit: cover; display: block;
            transition: transform 0.4s ease, opacity 0.4s ease;
        }
        .ssgc-shot-link:hover .ssgc-shot-img {
            transform: scale(1.02);
            opacity: 0.9;
        }

        /* 系统配置卡片：双列布局，极具科技感 */
        .ssgc-spec-grid { 
            display: grid; 
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
            gap: 20px; 
            margin-top: 20px;
        }
        .ssgc-spec-card {
            background: rgba(255, 255, 255, 0.03); 
            border: 1px solid rgba(255, 255, 255, 0.05);
            padding: 20px; 
            border-radius: 8px; 
        }
        .ssgc-spec-card h4 { 
            color: #66c0f4 !important; 
            margin-top: 0; 
            margin-bottom: 12px; 
            font-size: 15px;
            font-weight: bold;
            text-transform: uppercase;
            border-bottom: 1px solid rgba(102, 192, 244, 0.2);
            padding-bottom: 6px;
        }
        .ssgc-spec-card ul { padding-left: 18px; margin: 0; }
        .ssgc-spec-card li { font-size: 13px !important; margin-bottom: 6px; color: #bbb !important; }