:root {
            --ttD-primary: #e05971;
            --ttD-accent: #f8f9fa;
            --ttD-text: #2d3436;
            --ttD-text-light: #636e72;
            --ttD-bg: #ffffff;
            --ttD-shadow: 0 10px 30px rgba(224, 89, 113, 0.08);
            --ttD-radius: 11px;
            --ttD-transition: 0.35s ease;
        }

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

        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            color: var(--ttD-text);
            line-height: 1.7;
            background-color: #fcfcfc;
            word-break: break-word;
            overflow-wrap: break-word;
        }

        /* 导航复用样式 */
        .ttD-nexus {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(0,0,0,0.05);
        }

        .ttD-orbit {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            height: 70px;
        }

        .ttD-logo {
            min-width: 0;
        }

        .ttD-logo img {
            height: 32px;
            display: block;
        }

        .ttD-pulse {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
        }

        .ttD-pulse a {
            text-decoration: none;
            color: var(--ttD-text);
            font-size: 15px;
            font-weight: 500;
            transition: var(--ttD-transition);
            position: relative;
        }

        .ttD-pulse a:hover, .ttD-pulse a.active {
            color: var(--ttD-primary);
        }

        .ttD-pulse a.active::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--ttD-primary);
        }

        /* 核心容器 */
        .ttD-vault {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* Hero: vertical_stack 布局 */
        .ttD-flare {
            padding: 100px 0 60px;
            text-align: center;
            background: radial-gradient(circle at top right, rgba(224, 89, 113, 0.05), transparent);
        }

        .ttD-apex {
            display: flex;
            flex-direction: column;
            align-items: center;
            max-width: 800px;
            margin: 0 auto;
        }

        .ttD-flare h1 {
            font-size: clamp(2rem, 5vw, 3.5rem);
            line-height: 1.2;
            margin-bottom: 24px;
            color: #1a1a1a;
            word-break: keep-all;
        }

        .ttD-flare p {
            font-size: 1.25rem;
            color: var(--ttD-text-light);
            margin-bottom: 40px;
            line-height: 1.6;
        }

        .ttD-ping {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 14px 36px;
            background-color: var(--ttD-primary);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            transition: var(--ttD-transition);
            box-shadow: 0 4px 15px rgba(224, 89, 113, 0.3);
        }

        .ttD-ping:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(224, 89, 113, 0.4);
        }

        /* 内容板块 */
        .ttD-scope {
            padding: 80px 0;
        }

        .ttD-vista {
            margin-bottom: 50px;
        }

        .ttD-vista h2 {
            font-size: 2rem;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .ttD-cradle {
            display: flex;
            flex-wrap: wrap;
            gap: 24px;
        }

        /* 频道卡片组件 */
        .ttD-shard {
            min-width: 0;
            flex: 1 1 calc(33.333% - 24px);
            background: white;
            padding: 30px;
            border-radius: var(--ttD-radius);
            border: 1px solid rgba(0,0,0,0.04);
            transition: var(--ttD-transition);
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .ttD-shard:hover {
            transform: translateY(-5px);
            box-shadow: var(--ttD-shadow);
            border-color: rgba(224, 89, 113, 0.2);
        }

        .ttD-pod {
            width: 50px;
            height: 50px;
            background: rgba(224, 89, 113, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 10px;
        }

        .ttD-pod svg {
            width: 24px;
            height: 24px;
            fill: var(--ttD-primary);
        }

        .ttD-shard h3 {
            font-size: 1.25rem;
            margin: 0;
        }

        .ttD-shard p {
            font-size: 0.95rem;
            color: var(--ttD-text-light);
            margin: 0;
        }

        .ttD-bolt {
            margin-top: auto;
            color: var(--ttD-primary);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            display: inline-flex;
            align-items: center;
            gap: 5px;
        }

        /* 列表容器 */
        .ttD-waft {
            background: #f8f9fa;
            border-radius: var(--ttD-radius);
            padding: 40px;
            margin-top: 40px;
        }

        .ttD-flux {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-top: 25px;
        }

        .ttD-flux span {
            background: white;
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 0.85rem;
            border: 1px solid rgba(0,0,0,0.05);
            color: var(--ttD-text-light);
        }

        /* 页脚 */
        .ttD-echo {
            background: #1a1a1a;
            color: rgba(255,255,255,0.7);
            padding: 80px 0 40px;
            margin-top: 100px;
        }

        .ttD-haven {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
        }

        .ttD-echo h4 {
            color: white;
            font-size: 1.5rem;
            margin-bottom: 20px;
        }

        .ttD-echo a {
            color: rgba(255,255,255,0.5);
            text-decoration: none;
            transition: var(--ttD-transition);
            display: block;
            margin-bottom: 10px;
        }

        .ttD-echo a:hover {
            color: var(--ttD-primary);
        }

        .ttD-echo-bottom {
            margin-top: 60px;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.05);
            text-align: center;
            font-size: 0.9rem;
        }

        @media (max-width: 1024px) {
            .ttD-shard {
                flex: 1 1 calc(50% - 24px);
            }
        }

        @media (max-width: 768px) {
            .ttD-orbit {
                height: auto;
                padding: 15px 20px;
            }
            .ttD-pulse {
                width: 100%;
                margin-top: 15px;
                gap: 15px;
                justify-content: center;
            }
            .ttD-shard {
                flex: 1 1 100%;
            }
            .ttD-flare {
                padding: 60px 0 40px;
            }
            .ttD-haven {
                flex-direction: column;
            }
        }

.ttD-hdr-nexus {
    font-family: var(--ttD-font-sans);
    line-height: 1.7;
    color: var(--ttD-text);
}
.ttD-hdr-nexus,
.ttD-hdr-nexus *,
.ttD-hdr-nexus *::before,
.ttD-hdr-nexus *::after {
    box-sizing: border-box;
}

.ttD-hdr-nexus nav,
.ttD-hdr-nexus div,
.ttD-hdr-nexus section,
.ttD-hdr-nexus article,
.ttD-hdr-nexus aside,
.ttD-hdr-nexus p,
.ttD-hdr-nexus h1,
.ttD-hdr-nexus h2,
.ttD-hdr-nexus h3,
.ttD-hdr-nexus h4,
.ttD-hdr-nexus h5,
.ttD-hdr-nexus h6,
.ttD-hdr-nexus a {
    margin: 0;
    padding: 0;
    font: inherit;
    color: inherit;
    letter-spacing: inherit;
    line-height: inherit;
}

.ttD-hdr-nexus p,
.ttD-hdr-nexus h1,
.ttD-hdr-nexus h2,
.ttD-hdr-nexus h3,
.ttD-hdr-nexus h4,
.ttD-hdr-nexus h5,
.ttD-hdr-nexus h6 {
    text-decoration: none;
}

.ttD-hdr-nexus img {
    display: block;
    max-width: 100%;
    height: auto;
    border: 0;
}

.ttD-hdr-nexus {
    box-shadow: none;
    filter: none;
    text-shadow: none;
    background-image: none;
    border-top: none;
    border-left: none;
    border-right: none;
    outline: none;
}

.ttD-hdr-nexus a[href="index.html"],
.ttD-hdr-nexus a[href="setup.html"],
.ttD-hdr-nexus a[href="connect.html"],
.ttD-hdr-nexus a[href="club.html"],
.ttD-hdr-nexus a[href="geek.html"] {
    --aisite-shell-nav-padding: 0;
    --aisite-shell-nav-margin: 0;
    --aisite-shell-nav-line-height: normal;
    --aisite-shell-nav-display: inline;
    --aisite-shell-nav-height: auto;
    --aisite-shell-nav-min-height: auto;
}

.ttD-hdr-nexus a[href="index.html"],
.ttD-hdr-nexus a[href="index.html"]:hover,
.ttD-hdr-nexus a[href="index.html"]:focus,
.ttD-hdr-nexus a[href="index.html"]:active,
.ttD-hdr-nexus a[href="index.html"].active,
.ttD-hdr-nexus a[href="index.html"][aria-current="page"],
.ttD-hdr-nexus a[href="setup.html"],
.ttD-hdr-nexus a[href="setup.html"]:hover,
.ttD-hdr-nexus a[href="setup.html"]:focus,
.ttD-hdr-nexus a[href="setup.html"]:active,
.ttD-hdr-nexus a[href="setup.html"].active,
.ttD-hdr-nexus a[href="setup.html"][aria-current="page"],
.ttD-hdr-nexus a[href="connect.html"],
.ttD-hdr-nexus a[href="connect.html"]:hover,
.ttD-hdr-nexus a[href="connect.html"]:focus,
.ttD-hdr-nexus a[href="connect.html"]:active,
.ttD-hdr-nexus a[href="connect.html"].active,
.ttD-hdr-nexus a[href="connect.html"][aria-current="page"],
.ttD-hdr-nexus a[href="club.html"],
.ttD-hdr-nexus a[href="club.html"]:hover,
.ttD-hdr-nexus a[href="club.html"]:focus,
.ttD-hdr-nexus a[href="club.html"]:active,
.ttD-hdr-nexus a[href="club.html"].active,
.ttD-hdr-nexus a[href="club.html"][aria-current="page"],
.ttD-hdr-nexus a[href="geek.html"],
.ttD-hdr-nexus a[href="geek.html"]:hover,
.ttD-hdr-nexus a[href="geek.html"]:focus,
.ttD-hdr-nexus a[href="geek.html"]:active,
.ttD-hdr-nexus a[href="geek.html"].active,
.ttD-hdr-nexus a[href="geek.html"][aria-current="page"] {
    background: transparent;
    border: none;
    border-bottom: none;
    box-shadow: none;
    outline: none;
    text-decoration: none;
    padding: var(--aisite-shell-nav-padding, 0);
    margin: var(--aisite-shell-nav-margin, 0);
    line-height: var(--aisite-shell-nav-line-height, normal);
    display: var(--aisite-shell-nav-display, inline);
    height: var(--aisite-shell-nav-height, auto);
    min-height: var(--aisite-shell-nav-min-height, auto);
}

.ttD-hdr-nexus{
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.95);
            border-bottom: 1px solid #eee;
            padding: 1rem 0;
        }

.ttD-hdr-nexus .ttD-hdr-orbit{
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 40px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
        }

.ttD-hdr-nexus .ttD-hdr-logo{
            flex: 0 0 auto;
        }

.ttD-hdr-nexus .ttD-hdr-logo img{
            height: 38px;
            width: auto;
        }

.ttD-hdr-nexus .ttD-hdr-pulse{
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            align-items: center;
        }

.ttD-hdr-nexus .ttD-hdr-pulse a{
            font-weight: 600;
            font-size: 0.95rem;
            color: #666666;
            position: relative;
            padding: 5px 0;
        }

.ttD-hdr-nexus .ttD-hdr-pulse a::after{
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: #e05971;
            transition: width 0.35s ease;
        }

.ttD-hdr-nexus .ttD-hdr-pulse a:hover, .ttD-hdr-nexus .ttD-hdr-pulse a.active{
            color: #e05971;
        }

.ttD-hdr-nexus .ttD-hdr-pulse a.active::after{
            width: 100%;
        }

@media (max-width: 768px){.ttD-hdr-nexus .ttD-hdr-orbit{
                padding: 0 20px;
            }

.ttD-hdr-nexus .ttD-hdr-pulse{
                display: none; 
            }}

.ttD-hdr-nexus {
    background: rgb(255, 255, 255);
    background-image: none;
}

.ttD-ftr-haven {
    font-family: var(--ttD-font-sans);
    line-height: 1.7;
    color: var(--ttD-text);
}
.ttD-ftr-haven,
.ttD-ftr-haven *,
.ttD-ftr-haven *::before,
.ttD-ftr-haven *::after {
    box-sizing: border-box;
}

.ttD-ftr-haven nav,
.ttD-ftr-haven div,
.ttD-ftr-haven section,
.ttD-ftr-haven article,
.ttD-ftr-haven aside,
.ttD-ftr-haven p,
.ttD-ftr-haven h1,
.ttD-ftr-haven h2,
.ttD-ftr-haven h3,
.ttD-ftr-haven h4,
.ttD-ftr-haven h5,
.ttD-ftr-haven h6,
.ttD-ftr-haven a {
    margin: 0;
    padding: 0;
    font: inherit;
    color: inherit;
    letter-spacing: inherit;
    line-height: inherit;
}

.ttD-ftr-haven p,
.ttD-ftr-haven h1,
.ttD-ftr-haven h2,
.ttD-ftr-haven h3,
.ttD-ftr-haven h4,
.ttD-ftr-haven h5,
.ttD-ftr-haven h6 {
    text-decoration: none;
}

.ttD-ftr-haven img {
    display: block;
    max-width: 100%;
    height: auto;
    border: 0;
}

.ttD-ftr-haven {
    box-shadow: none;
    filter: none;
    text-shadow: none;
    background-image: none;
    border-top: none;
    border-left: none;
    border-right: none;
    outline: none;
}

.ttD-ftr-haven a,
.ttD-ftr-haven a:hover,
.ttD-ftr-haven a:focus,
.ttD-ftr-haven a:active {
    background: transparent;
    box-shadow: none;
    outline: none;
    text-decoration: none;
}

.ttD-ftr-haven{
            background: #1a1a1a;
            color: #fff;
            padding: 80px 0 40px;
        }

.ttD-ftr-haven .ttD-ftr-echo{
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 40px;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 60px;
        }

.ttD-ftr-haven .ttD-ftr-echo-brand{
            flex: 2 1 400px;
        }

.ttD-ftr-haven .ttD-ftr-echo-brand h2{
            color: #fff;
            font-size: 2rem;
            margin-bottom: 1.5rem;
        }

.ttD-ftr-haven .ttD-ftr-echo-links{
            flex: 1 1 200px;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

.ttD-ftr-haven .ttD-ftr-echo-links a{
            color: #aaa;
        }

.ttD-ftr-haven .ttD-ftr-echo-links a:hover{
            color: #e05971;
        }

.ttD-ftr-haven .ttD-ftr-copyright{
            margin-top: 60px;
            padding-top: 40px;
            border-top: 1px solid #333;
            text-align: center;
            color: #666;
            font-size: 0.9rem;
            width: 100%;
        }