        :root {
            --primary: #0d9488;
            --primary-deep: #0f766e;
            --primary-dark: #115e59;
            --accent: #f97316;
            --accent-glow: #fb923c;
            --surface: #f8fafc;
            --surface-alt: #f0fdfa;
            --text-main: #1e293b;
            --text-soft: #475569;
            --text-muted: #94a3b8;
            --border-light: #e2e8f0;
            --border-subtle: #f1f5f9;
            --white: #ffffff;
            --shadow-card: 0 1px 3px rgba(0, 0, 0, 0.04), 0 8px 24px rgba(0, 0, 0, 0.05);
            --shadow-elevated: 0 4px 16px rgba(0, 0, 0, 0.06), 0 16px 40px rgba(0, 0, 0, 0.07);
            --radius-sm: 10px;
            --radius: 16px;
            --radius-lg: 22px;
            --transition: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "PingFang SC", "Microsoft YaHei", "Noto Sans SC", sans-serif;
            color: var(--text-main);
            background: linear-gradient(170deg, #f0fdfa 0%, #f8fafc 30%, #fff7ed 70%, #fefce8 100%);
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
            font-size: 15px;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: color var(--transition);
        }
        ul {
            list-style: none;
        }
        .container {
            max-width: 1140px;
            margin: 0 auto;
            padding: 0 22px;
        }
        .flex-between {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        /* Header */
        header {
            background: rgba(255, 255, 255, 0.94);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 1px 0 var(--border-subtle);
            transition: box-shadow var(--transition);
        }
        header.scrolled {
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
        }
        .nav-container {
            height: 64px;
        }
        .logo {
            font-size: 1.38rem;
            font-weight: 800;
            color: var(--primary-deep);
            letter-spacing: -0.3px;
            display: flex;
            align-items: center;
            gap: 7px;
            white-space: nowrap;
        }
        .logo .rocket-icon {
            display: inline-block;
            font-size: 1.55rem;
            animation: hover-float 2.8s ease-in-out infinite;
        }
        @keyframes hover-float {
            0%,
            100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-5px);
            }
        }
        .logo span {
            color: var(--text-main);
            font-weight: 700;
        }
        nav ul {
            display: flex;
            gap: 24px;
            align-items: center;
        }
        nav a {
            font-weight: 500;
            color: var(--text-soft);
            font-size: 0.9rem;
            position: relative;
            padding: 5px 0;
            white-space: nowrap;
        }
        nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            border-radius: 2px;
            transition: width var(--transition);
        }
        nav a:hover::after,
        nav a.active::after {
            width: 100%;
        }
        nav a:hover,
        nav a.active {
            color: var(--primary-deep);
        }
        .nav-cta {
            background: var(--primary);
            color: #fff !important;
            padding: 8px 18px !important;
            border-radius: 22px;
            font-weight: 600 !important;
            font-size: 0.86rem !important;
            transition: background var(--transition), transform var(--transition) !important;
            box-shadow: 0 4px 14px rgba(13, 148, 136, 0.25);
        }
        .nav-cta:hover {
            background: var(--primary-deep);
            transform: translateY(-1px);
            box-shadow: 0 6px 20px rgba(13, 148, 136, 0.35);
        }
        .nav-cta::after {
            display: none !important;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
            flex-direction: column;
            gap: 5px;
            z-index: 1001;
        }
        .mobile-menu-btn span {
            display: block;
            width: 24px;
            height: 2.5px;
            background: var(--text-main);
            border-radius: 3px;
            transition: var(--transition);
        }

        main {
            flex: 1;
            padding: 130px 0 70px;
        }
        .page-header {
            text-align: center;
            margin-bottom: 50px;
        }
        .page-tag {
            display: inline-block;
            padding: 5px 14px;
            background: #f0fdfa;
            color: var(--primary-deep);
            border-radius: 18px;
            font-size: 0.82rem;
            font-weight: 600;
            margin-bottom: 14px;
            letter-spacing: 0.3px;
        }
        .page-header h1 {
            font-size: 2.4rem;
            font-weight: 850;
            margin-bottom: 14px;
            letter-spacing: -0.6px;
            color: var(--text-main);
        }
        .page-header h1 .gradient-text {
            background: linear-gradient(135deg, #0d9488 0%, #0891b2 35%, #f97316 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .page-subtitle {
            font-size: 1.05rem;
            color: var(--text-soft);
            max-width: 680px;
            margin: 0 auto;
            line-height: 1.7;
        }

        /* 搜索条 */
        .search-box {
            max-width: 540px;
            margin: 0 auto 40px;
            display: flex;
            background: #fff;
            border-radius: 30px;
            box-shadow: var(--shadow-card);
            border: 1px solid var(--border-light);
            overflow: hidden;
        }
        .search-box input {
            flex: 1;
            border: none;
            padding: 14px 20px;
            font-size: 0.95rem;
            outline: none;
            color: var(--text-main);
        }
        .search-box button {
            background: var(--primary);
            color: #fff;
            border: none;
            padding: 0 22px;
            font-weight: 600;
            cursor: pointer;
            transition: background var(--transition);
        }
        .search-box button:hover {
            background: var(--primary-deep);
        }

        /* 分类标签 */
        .category-tabs {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 12px;
            margin-bottom: 40px;
        }
        .category-tab {
            padding: 8px 20px;
            border-radius: 22px;
            font-weight: 600;
            font-size: 0.88rem;
            background: #fff;
            border: 1px solid var(--border-light);
            cursor: pointer;
            transition: all var(--transition);
            color: var(--text-soft);
        }
        .category-tab.active,
        .category-tab:hover {
            background: var(--primary);
            color: #fff;
            border-color: var(--primary);
            box-shadow: 0 4px 14px rgba(13, 148, 136, 0.25);
        }

        /* 热门标签云 */
        .tag-cloud {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 10px;
            margin-bottom: 40px;
        }
        .tag-item {
            padding: 6px 16px;
            background: #fff;
            border-radius: 18px;
            font-size: 0.82rem;
            font-weight: 500;
            color: var(--text-soft);
            border: 1px solid var(--border-subtle);
            transition: var(--transition);
            cursor: pointer;
        }
        .tag-item:hover {
            border-color: var(--primary);
            color: var(--primary-deep);
            background: #f0fdfa;
        }

        /* 步骤快速上手 */
        .quickstart-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-bottom: 50px;
        }
        .qs-card {
            background: #fff;
            border-radius: var(--radius);
            padding: 24px 18px;
            text-align: center;
            box-shadow: var(--shadow-card);
            border: 1px solid var(--border-subtle);
            transition: var(--transition);
        }
        .qs-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-elevated);
            border-color: #ccfbf1;
        }
        .qs-step {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--primary);
            color: #fff;
            font-weight: 800;
            font-size: 1.2rem;
            line-height: 40px;
            margin: 0 auto 12px;
        }
        .qs-card h4 {
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 6px;
        }
        .qs-card p {
            font-size: 0.82rem;
            color: var(--text-soft);
            line-height: 1.5;
        }

        /* 手风琴FAQ */
        .faq-block {
            background: #fff;
            border-radius: var(--radius-lg);
            padding: 36px 24px;
            box-shadow: var(--shadow-card);
            margin-bottom: 50px;
            border: 1px solid var(--border-subtle);
        }
        .faq-block h2 {
            font-size: 1.8rem;
            font-weight: 750;
            margin-bottom: 24px;
            text-align: center;
        }
        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
            max-width: 800px;
            margin: 0 auto;
        }
        .faq-item {
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-sm);
            overflow: hidden;
            transition: var(--transition);
            background: #fff;
        }
        .faq-item.open {
            border-color: #ccfbf1;
            box-shadow: var(--shadow-card);
        }
        .faq-question {
            padding: 16px 20px;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: var(--text-main);
            background: #fafafa;
        }
        .faq-question .indicator {
            font-size: 1.2rem;
            color: var(--primary);
            transition: transform 0.3s ease;
        }
        .faq-item.open .faq-question .indicator {
            transform: rotate(45deg);
        }
        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
            font-size: 0.9rem;
            color: var(--text-soft);
            line-height: 1.6;
        }
        .faq-item.open .faq-answer {
            padding: 16px 20px;
            max-height: 300px;
        }

        /* 故障排查卡片 */
        .troubleshoot-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-bottom: 50px;
        }
        .trouble-card {
            background: #fff;
            border-radius: var(--radius);
            padding: 22px 18px;
            box-shadow: var(--shadow-card);
            border-left: 5px solid var(--accent);
            transition: var(--transition);
        }
        .trouble-card:hover {
            box-shadow: var(--shadow-elevated);
            transform: translateX(3px);
        }
        .trouble-card h4 {
            font-weight: 700;
            margin-bottom: 8px;
            color: var(--text-main);
        }
        .trouble-card p {
            font-size: 0.86rem;
            color: var(--text-soft);
            line-height: 1.5;
        }

        /* GitHub */
        .github-banner {
            background: #f0fdfa;
            border: 1px solid #99f6e4;
            border-radius: var(--radius);
            padding: 20px 24px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 18px;
            margin-top: 40px;
        }
        .github-banner p {
            font-weight: 600;
            color: #0f766e;
        }
        .github-banner a {
            background: var(--primary);
            color: #fff;
            padding: 10px 20px;
            border-radius: 24px;
            font-weight: 600;
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .github-banner a:hover {
            background: var(--primary-deep);
        }

        footer {
            background: #0f172a;
            color: #94a3b8;
            padding: 50px 0 18px;
            margin-top: auto;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 34px;
            margin-bottom: 34px;
            border-bottom: 1px solid #1e293b;
            padding-bottom: 34px;
        }
        .footer-brand h3 {
            color: #fff;
            font-size: 1.3rem;
            margin-bottom: 10px;
            font-weight: 700;
        }
        .footer-brand p {
            line-height: 1.68;
            font-size: 0.87rem;
            max-width: 270px;
            color: #94a3b8;
        }
        .footer-col h4 {
            color: #e2e8f0;
            margin-bottom: 14px;
            font-size: 0.95rem;
            font-weight: 600;
        }
        .footer-col ul li {
            margin-bottom: 8px;
        }
        .footer-col a {
            font-size: 0.86rem;
            color: #94a3b8;
        }
        .footer-col a:hover {
            color: #fff;
        }
        .copyright {
            text-align: center;
            font-size: 0.82rem;
            color: #64748b;
        }

        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: flex;
            }
            nav ul {
                position: fixed;
                top: 0;
                right: -100%;
                width: 260px;
                height: 100vh;
                background: #fff;
                flex-direction: column;
                padding: 78px 28px 28px;
                gap: 18px;
                box-shadow: var(--shadow-elevated);
                transition: right var(--transition);
                z-index: 999;
            }
            nav ul.open {
                right: 0;
            }
            .page-header h1 {
                font-size: 2rem;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 22px;
            }
            .github-banner {
                flex-direction: column;
                text-align: center;
            }
        }
        @media (max-width: 480px) {
            .page-header h1 {
                font-size: 1.6rem;
            }
            .quickstart-cards,
            .troubleshoot-grid {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr;
            }
        }