        :root {
            --primary: #00d294;
            --primary-deep: #009d6b;
            --primary-soft: rgba(0, 210, 148, 0.12);
            --accent: #00c6ff;
            --bg-root: #0b0f19;
            --bg-card: #151c2c;
            --bg-card-hover: #1b2338;
            --bg-lift: #1a2234;
            --text-main: #ffffff;
            --text-sub: #94a3b8;
            --text-muted: #64748b;
            --border-color: rgba(255, 255, 255, 0.07);
            --border-glow: rgba(0, 210, 148, 0.25);
            --radius-lg: 16px;
            --radius-md: 10px;
            --radius-sm: 8px;
            --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.3);
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Noto Sans SC", sans-serif;
            background-color: var(--bg-root);
            color: var(--text-main);
            line-height: 1.6;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* HEADER */
        header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin: 20px auto;
            padding: 20px 0;
            border-bottom: 1px solid var(--border-color);
            position: relative;
            z-index: 10;
        }
        .brand {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 22px;
            font-weight: 800;
            letter-spacing: -0.5px;
            transition: var(--transition);
        }
        .brand:hover {
            opacity: 0.85;
        }
        .brand-icon {
            width: 38px;
            height: 38px;
            background: linear-gradient(135deg, var(--primary), #0091c7);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            font-weight: 800;
            color: #fff;
            box-shadow: 0 4px 14px rgba(0, 210, 148, 0.3);
        }
        .version-badge {
            font-size: 10px;
            background: var(--primary-soft);
            color: var(--primary);
            border: 1px solid rgba(0, 210, 148, 0.35);
            padding: 3px 10px;
            border-radius: 20px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-weight: 600;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 34px;
            align-items: center;
        }
        nav a {
            font-size: 14.5px;
            color: var(--text-sub);
            transition: var(--transition);
            position: relative;
            padding: 6px 0;
            font-weight: 500;
        }
        nav a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            border-radius: 2px;
            transition: width 0.3s ease;
        }
        nav a:hover,
        nav a.active {
            color: #fff;
        }
        nav a:hover::after,
        nav a.active::after {
            width: 100%;
        }

        /* PAGE HEADER */
        .guide-header {
            text-align: center;
            padding: 54px 0 30px;
        }
        .guide-header h1 {
            font-size: 44px;
            font-weight: 900;
            margin-bottom: 14px;
            letter-spacing: -1px;
        }
        .guide-header h1 span {
            background: linear-gradient(135deg, var(--primary), #00e5ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .guide-header p {
            color: var(--text-sub);
            font-size: 16px;
            max-width: 640px;
            margin: 0 auto;
            line-height: 1.6;
        }

        /* CREATIVE: 连接流程三步曲 (可视化步骤) */
        .connect-flow {
            margin-bottom: 70px;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            position: relative;
        }
        .connect-flow::before {
            content: '';
            position: absolute;
            top: 40px;
            left: 20%;
            width: 60%;
            height: 2px;
            background: linear-gradient(90deg, var(--primary), rgba(0,210,148,0.2), var(--primary));
            opacity: 0.3;
            z-index: 0;
        }
        .flow-card {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-lg);
            padding: 30px 20px;
            text-align: center;
            position: relative;
            z-index: 2;
            transition: var(--transition);
            box-shadow: var(--shadow-card);
        }
        .flow-card:hover {
            transform: translateY(-5px);
            border-color: var(--border-glow);
            background: var(--bg-card-hover);
        }
        .flow-card .step-icon {
            width: 60px;
            height: 60px;
            background: var(--primary-soft);
            border: 1px solid var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            margin: 0 auto 18px;
            color: var(--primary);
        }
        .flow-card h3 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 8px;
        }
        .flow-card p {
            font-size: 13.5px;
            color: var(--text-sub);
            line-height: 1.6;
        }

        /* CREATIVE: 连接状态判断区 */
        .status-demo {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-lg);
            padding: 40px;
            margin-bottom: 70px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            align-items: center;
        }
        .status-left h2 {
            font-size: 26px;
            font-weight: 800;
            margin-bottom: 10px;
            letter-spacing: -0.5px;
        }
        .status-left p {
            color: var(--text-sub);
            font-size: 14px;
            line-height: 1.7;
            margin-bottom: 20px;
        }
        .status-indicators {
            display: flex;
            gap: 24px;
        }
        .indicator {
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 600;
            font-size: 15px;
        }
        .indicator .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
        }
        .dot.green {
            background: var(--primary);
            box-shadow: 0 0 8px var(--primary);
        }
        .dot.yellow {
            background: #f5a623;
            box-shadow: 0 0 8px #f5a623;
        }
        .status-right .status-card {
            background: rgba(0,210,148,0.05);
            border: 1px solid rgba(0,210,148,0.2);
            border-radius: var(--radius-md);
            padding: 20px;
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 12px;
            transition: var(--transition);
        }
        .status-card:hover {
            border-color: rgba(0,210,148,0.4);
            background: rgba(0,210,148,0.08);
        }
        .status-card .status-icon {
            font-size: 28px;
        }
        .status-card h4 {
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 4px;
        }
        .status-card p {
            font-size: 13px;
            color: var(--text-sub);
        }

        /* CREATIVE: 场景连接模式 */
        .mode-grid {
            margin-bottom: 70px;
        }
        .mode-grid h3 {
            font-size: 24px;
            font-weight: 800;
            text-align: center;
            margin-bottom: 28px;
        }
        .modes {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }
        .mode-card {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-lg);
            padding: 28px 22px;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }
        .mode-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: var(--primary);
            opacity: 0;
            transition: opacity 0.3s;
        }
        .mode-card:hover {
            border-color: rgba(255,255,255,0.15);
            background: var(--bg-card-hover);
            transform: translateY(-4px);
        }
        .mode-card:hover::before {
            opacity: 1;
        }
        .mode-card .mode-icon {
            font-size: 34px;
            margin-bottom: 14px;
        }
        .mode-card h4 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 8px;
        }
        .mode-card p {
            font-size: 13px;
            color: var(--text-sub);
            line-height: 1.6;
        }

        /* CREATIVE: 连接提示速查 */
        .quick-tips {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-lg);
            padding: 36px 40px;
            margin-bottom: 80px;
        }
        .quick-tips h3 {
            font-size: 22px;
            font-weight: 800;
            margin-bottom: 20px;
            text-align: center;
        }
        .tips-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
        }
        .tip-item {
            background: rgba(255,255,255,0.02);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-md);
            padding: 18px 20px;
            transition: var(--transition);
        }
        .tip-item:hover {
            border-color: rgba(0,210,148,0.25);
            background: var(--bg-lift);
        }
        .tip-item h4 {
            font-size: 15px;
            font-weight: 700;
            margin-bottom: 6px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .tip-item p {
            font-size: 13px;
            color: var(--text-sub);
            line-height: 1.5;
        }

        /* FOOTER */
        footer {
            background: #070a10;
            border-top: 1px solid var(--border-color);
            padding: 56px 0 28px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr repeat(3, 1fr);
            gap: 40px;
            margin-bottom: 44px;
        }
        .footer-about p {
            color: var(--text-sub);
            font-size: 13.5px;
            margin-top: 14px;
            max-width: 300px;
            line-height: 1.7;
        }
        .footer-col h4 {
            font-size: 14.5px;
            margin-bottom: 18px;
            color: var(--text-main);
            font-weight: 700;
        }
        .footer-col ul {
            list-style: none;
        }
        .footer-col li {
            margin-bottom: 11px;
        }
        .footer-col a {
            color: var(--text-sub);
            font-size: 13.5px;
            transition: color 0.2s;
        }
        .footer-col a:hover {
            color: var(--primary);
        }
        .footer-bottom {
            border-top: 1px solid var(--border-color);
            padding-top: 26px;
            text-align: center;
            font-size: 13px;
            color: var(--text-muted);
        }

        /* RESPONSIVE */
        @media (max-width: 1024px) {
            .connect-flow {
                grid-template-columns: 1fr 1fr 1fr;
                gap: 14px;
            }
            .connect-flow::before {
                display: none;
            }
            .status-demo {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .modes {
                grid-template-columns: repeat(2, 1fr);
            }
            .tips-grid {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 640px) {
            header {
                flex-direction: column;
                gap: 14px;
            }
            nav ul {
                gap: 16px;
                flex-wrap: wrap;
                justify-content: center;
            }
            .guide-header h1 {
                font-size: 30px;
            }
            .connect-flow {
                grid-template-columns: 1fr;
                gap: 12px;
            }
            .modes {
                grid-template-columns: 1fr;
            }
            .status-demo {
                padding: 24px 20px;
            }
            .status-indicators {
                flex-direction: column;
                gap: 12px;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }
        }