
        :root {
            --t1207-primary: #FF7139;
            --t1207-primary-hover: #e65d2a;
            --t1207-secondary: #0060DF;
            --t1207-bg-dark: #0b0821;
            --t1207-bg-card: rgba(255, 255, 255, 0.05);
            --t1207-text-main: #ffffff;
            --t1207-text-muted: #b1b1b3;
            --t1207-font-clamp-h1: clamp(2rem, 5vw + 1rem, 4rem);
            --t1207-font-clamp-h2: clamp(1.5rem, 3vw + 0.5rem, 2.5rem);
            --t1207-font-clamp-p: clamp(1rem, 1vw + 0.5rem, 1.125rem);
            --t1207-container-width: 1320px;
            --t1207-transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        }

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

        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
            background-color: var(--t1207-bg-dark);
            color: var(--t1207-text-main);
            line-height: 1.6;
            overflow-x: hidden;
            word-break: keep-all;
        }

        /* 导航栏设计 */
        .t1207-header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(11, 8, 33, 0.8);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .t1207-nav-container {
            max-width: var(--t1207-container-width);
            margin: 0 auto;
            padding: 16px 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }

        .t1207-logo {
            flex: 0 0 auto;
            min-width: 0;
        }

        .t1207-logo img {
            height: 40px;
            width: auto;
            display: block;
        }

        .t1207-menu {
            display: flex;
            list-style: none;
            gap: 8px;
            flex-wrap: wrap;
            min-width: 0;
        }

        .t1207-menu-item a {
            text-decoration: none;
            color: var(--t1207-text-muted);
            padding: 8px 16px;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 500;
            transition: var(--t1207-transition);
        }

        .t1207-menu-item a:hover {
            color: var(--t1207-text-main);
            background: rgba(255, 255, 255, 0.1);
        }

        .t1207-menu-item a.t1207-active {
            color: var(--t1207-text-main);
            background: var(--t1207-primary);
        }

        /* Hero 区：非对称布局 */
        .t1207-hero {
            padding: 160px 24px 80px;
            position: relative;
            overflow: hidden;
            background: radial-gradient(circle at 80% 20%, rgba(255, 113, 57, 0.15) 0%, transparent 40%);
        }

        .t1207-hero-inner {
            max-width: var(--t1207-container-width);
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 48px;
        }

        .t1207-hero-content {
            flex: 1;
            min-width: 320px;
            word-break: break-word;
        }

        .t1207-hero-title {
            font-size: var(--t1207-font-clamp-h1);
            line-height: 1.1;
            margin-bottom: 24px;
            font-weight: 800;
            background: linear-gradient(135deg, #fff 0%, #aaa 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .t1207-hero-subtitle {
            font-size: var(--t1207-font-clamp-p);
            color: var(--t1207-text-muted);
            margin-bottom: 40px;
            max-width: 600px;
        }

        .t1207-search-box {
            background: var(--t1207-bg-card);
            border: 2px solid rgba(255, 255, 255, 0.1);
            border-radius: 50px;
            padding: 8px 8px 8px 24px;
            display: flex;
            align-items: center;
            max-width: 500px;
            transition: var(--t1207-transition);
        }

        .t1207-search-box:focus-within {
            border-color: var(--t1207-primary);
            box-shadow: 0 0 20px rgba(255, 113, 57, 0.3);
        }

        .t1207-search-input {
            background: transparent;
            border: none;
            color: #fff;
            flex: 1;
            font-size: 16px;
            outline: none;
            min-width: 0;
        }

        .t1207-search-btn {
            background: var(--t1207-primary);
            color: #fff;
            border: none;
            padding: 12px 24px;
            border-radius: 40px;
            cursor: pointer;
            font-weight: 600;
            transition: var(--t1207-transition);
        }

        .t1207-search-btn:hover {
            background: var(--t1207-primary-hover);
            transform: scale(1.05);
        }

        /* 插件网格区 */
        .t1207-section {
            padding: 80px 24px;
            max-width: var(--t1207-container-width);
            margin: 0 auto;
        }

        .t1207-section-header {
            margin-bottom: 48px;
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            flex-wrap: wrap;
            gap: 24px;
        }

        .t1207-section-title {
            font-size: var(--t1207-font-clamp-h2);
            font-weight: 700;
        }

        .t1207-grid-bento {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 24px;
            min-width: 0;
        }

        .t1207-card {
            background: var(--t1207-bg-card);
            border-radius: 24px;
            padding: 32px;
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: var(--t1207-transition);
            display: flex;
            flex-direction: column;
            gap: 16px;
            position: relative;
            overflow: hidden;
            min-width: 0;
        }

        .t1207-card:hover {
            transform: translateY(-8px);
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(255, 113, 57, 0.3);
        }

        .t1207-card-icon {
            width: 56px;
            height: 56px;
            background: linear-gradient(135deg, var(--t1207-primary), #ff9d6e);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: #fff;
        }

        .t1207-card-title {
            font-size: 20px;
            font-weight: 700;
            color: #fff;
        }

        .t1207-card-desc {
            font-size: 15px;
            color: var(--t1207-text-muted);
            word-break: break-word;
        }

        .t1207-card-meta {
            margin-top: auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 13px;
            color: var(--t1207-primary);
            font-weight: 600;
        }

        /* 极客坊特色区 */
        .t1207-dev-section {
            background: rgba(0, 96, 223, 0.05);
            border-radius: 40px;
            padding: 64px;
            margin: 48px auto;
            display: flex;
            flex-wrap: wrap;
            gap: 48px;
            align-items: center;
        }

        .t1207-dev-text {
            flex: 1;
            min-width: 300px;
        }

        .t1207-badge {
            display: inline-block;
            padding: 4px 12px;
            background: var(--t1207-secondary);
            color: #fff;
            border-radius: 4px;
            font-size: 12px;
            font-weight: 700;
            margin-bottom: 16px;
            text-transform: uppercase;
        }

        /* 页脚 */
        .t1207-footer {
            padding: 96px 24px 48px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            background: #060414;
        }

        .t1207-footer-inner {
            max-width: var(--t1207-container-width);
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 48px;
        }

        .t1207-footer-brand {
            grid-column: span 2;
        }

        .t1207-footer-logo-text {
            font-size: 24px;
            font-weight: 800;
            margin-bottom: 16px;
            letter-spacing: -1px;
        }

        .t1207-footer-link-group h4 {
            font-size: 16px;
            margin-bottom: 24px;
            color: #fff;
        }

        .t1207-footer-link-group ul {
            list-style: none;
        }

        .t1207-footer-link-group li {
            margin-bottom: 12px;
        }

        .t1207-footer-link-group a {
            color: var(--t1207-text-muted);
            text-decoration: none;
            font-size: 14px;
            transition: var(--t1207-transition);
        }

        .t1207-footer-link-group a:hover {
            color: var(--t1207-primary);
        }

        .t1207-copyright {
            margin-top: 64px;
            padding-top: 32px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            text-align: center;
            font-size: 14px;
            color: var(--t1207-text-muted);
        }

        /* 响应式调整 */
        @media (max-width: 768px) {
            .t1207-nav-container {
                flex-direction: column;
                gap: 16px;
            }
            .t1207-menu {
                justify-content: center;
            }
            .t1207-hero {
                padding-top: 180px;
                text-align: center;
            }
            .t1207-search-box {
                margin: 0 auto;
            }
            .t1207-dev-section {
                padding: 32px;
            }
            .t1207-footer-brand {
                grid-column: span 1;
            }
        }
    