:root {
            --bg-dark: #090b11;
            --bg-surface: #121624;
            --bg-patch: #1a2035;
            --bg-patch-hover: #222942;
            --primary: #5135db;
            --primary-light: #7054ff;
            --accent-cyan: #00f2fe;
            --accent-green: #00e676;
            --accent-red: #ff5252;
            --text-main: #f1f5f9;
            --text-muted: #94a3b8;
            --border: rgba(81, 53, 219, 0.25);
            --border-glow: rgba(112, 84, 255, 0.4);
            --radius-main: 20px;
            --radius-sm: 12px;
            --radius-pill: 99px;
            --transition: 0.25s ease;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            word-break: break-word;
            overflow-wrap: break-word;
        }

        body {
            background-color: var(--bg-dark);
            color: var(--text-main);
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            line-height: 1.7;
            overflow-x: hidden;
        }

        /* 统一导航栏样式 */
        .crest {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(9, 11, 17, 0.85);
            backdrop-filter: blur(16px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }

        .corral {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
            height: 72px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }

        .mark {
            display: flex;
            align-items: center;
            min-width: 0;
        }

        .mark img {
            height: 36px;
            width: auto;
            display: block;
        }

        .scout {
            display: flex;
            align-items: center;
            gap: 28px;
            flex-wrap: wrap;
            min-width: 0;
        }

        .node {
            color: var(--text-muted);
            text-decoration: none;
            font-size: 15px;
            font-weight: 500;
            transition: color var(--transition);
        }

        .node:hover,
        .node.active {
            color: #ffffff;
        }

        .node.active {
            position: relative;
            color: #ffffff;
            font-weight: 600;
        }

        .node.active::after {
            content: '';
            position: absolute;
            bottom: -24px;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--primary-light);
            box-shadow: 0 0 10px var(--primary-light);
        }

        .spur {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 10px 24px;
            border-radius: var(--radius-pill);
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            color: #ffffff;
            font-size: 14px;
            font-weight: 600;
            text-decoration: none;
            border: 1px solid rgba(255, 255, 255, 0.15);
            box-shadow: 0 8px 24px rgba(81, 53, 219, 0.35);
            transition: all var(--transition);
            min-width: 0;
        }

        .spur:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 30px rgba(112, 84, 255, 0.5);
            border-color: rgba(255, 255, 255, 0.3);
        }

        /* 主容器 */
        .meadow {
            max-width: 1280px;
            margin: 0 auto;
            padding: 40px 24px 80px;
        }

        /* 首屏展示: Mosaic Collage Style */
        .apex {
            padding: 40px 0 60px;
            background: radial-gradient(circle at 80% 20%, rgba(81, 53, 219, 0.3) 0%, transparent 60%),
                        radial-gradient(circle at 10% 90%, rgba(0, 242, 254, 0.12) 0%, transparent 50%);
            border-radius: 28px;
            margin-bottom: 60px;
            position: relative;
        }

        .shell-apex {
            display: flex;
            gap: 40px;
            align-items: center;
            flex-wrap: wrap;
        }

        .cluster-intro {
            flex: 1 1 500px;
            min-width: 0;
        }

        .horn-giant {
            font-size: 46px;
            line-height: 1.2;
            font-weight: 800;
            color: #ffffff;
            letter-spacing: -0.5px;
            margin-bottom: 20px;
        }

        .horn-giant span {
            background: linear-gradient(135deg, #ffffff, var(--accent-cyan));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .lore-lead {
            font-size: 18px;
            color: var(--text-muted);
            margin-bottom: 32px;
            max-width: 580px;
        }

        .cluster-badges {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            margin-bottom: 24px;
        }

        .token {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--border);
            padding: 8px 16px;
            border-radius: var(--radius-pill);
            font-size: 13px;
            color: #e2e8f0;
            backdrop-filter: blur(8px);
        }

        /* Hero Mosaic Visual Block */
        .patch-mosaic {
            flex: 1 1 480px;
            min-width: 0;
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }

        .slate-mini {
            background: var(--bg-surface);
            border: 1px solid var(--border);
            border-radius: var(--radius-main);
            padding: 20px;
            box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
            transition: transform var(--transition), border-color var(--transition);
        }

        .slate-mini:hover {
            transform: translateY(-4px);
            border-color: var(--border-glow);
        }

        .slate-mini.col-w100 {
            flex: 1 1 100%;
        }

        .slate-mini.col-w50 {
            flex: 1 1 calc(50% - 8px);
        }

        /* 顶部信息行 */
        .streak-head {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 12px;
            flex-wrap: wrap;
        }

        .horn-sub {
            font-size: 16px;
            font-weight: 700;
            color: #ffffff;
        }

        .lore-sm {
            font-size: 13px;
            color: var(--text-muted);
        }

        .glyph {
            width: 24px;
            height: 24px;
            fill: none;
            stroke: currentColor;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .glyph-accent {
            color: var(--accent-cyan);
        }

        .glyph-green {
            color: var(--accent-green);
        }

        .glyph-purple {
            color: var(--primary-light);
        }

        /* Section 1: 实盘高手 (Role: intro) */
        .zenith {
            margin-bottom: 80px;
        }

        .cluster-crest {
            margin-bottom: 40px;
            text-align: center;
            max-width: 760px;
            margin-left: auto;
            margin-right: auto;
        }

        .horn-corral {
            font-size: 32px;
            font-weight: 800;
            color: #ffffff;
            margin-bottom: 12px;
        }

        .lore-corral {
            font-size: 16px;
            color: var(--text-muted);
        }

        .cluster-grid2 {
            display: flex;
            gap: 24px;
            flex-wrap: wrap;
        }

        .patch-feature {
            flex: 1 1 450px;
            min-width: 0;
            background: var(--bg-surface);
            border: 1px solid var(--border);
            border-radius: var(--radius-main);
            padding: 32px;
            position: relative;
            overflow: hidden;
            transition: all var(--transition);
        }

        .patch-feature:hover {
            border-color: var(--border-glow);
            box-shadow: 0 20px 48px rgba(81, 53, 219, 0.2);
            transform: translateY(-4px);
        }

        .patch-feature::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, var(--primary), var(--accent-cyan));
        }

        .hoof-graphic {
            margin-top: 24px;
            background: var(--bg-patch);
            border-radius: var(--radius-sm);
            padding: 20px;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        /* Section 2: 上市公司业绩会直播 (Role: acquire) */
        .surge {
            margin-bottom: 80px;
            background: linear-gradient(180deg, rgba(18, 22, 36, 0.6) 0%, rgba(9, 11, 17, 0.9) 100%);
            border: 1px solid var(--border);
            border-radius: 28px;
            padding: 48px 36px;
        }

        .cluster-stream {
            display: flex;
            gap: 32px;
            align-items: center;
            flex-wrap: wrap;
        }

        .slate-stream-info {
            flex: 1 1 420px;
            min-width: 0;
        }

        .patch-livecard {
            flex: 1 1 500px;
            min-width: 0;
            background: var(--bg-patch);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: var(--radius-main);
            padding: 28px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
        }

        .token-live {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(255, 82, 82, 0.2);
            color: var(--accent-red);
            border: 1px solid rgba(255, 82, 82, 0.4);
            padding: 4px 12px;
            border-radius: var(--radius-pill);
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.5px;
            margin-bottom: 16px;
        }

        .token-live-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--accent-red);
            box-shadow: 0 0 8px var(--accent-red);
        }

        .herd-qna {
            margin-top: 20px;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .hoof-chat {
            background: rgba(255, 255, 255, 0.03);
            border-radius: var(--radius-sm);
            padding: 12px 16px;
            font-size: 13px;
        }

        .hoof-chat-user {
            color: var(--accent-cyan);
            font-weight: 600;
            margin-bottom: 4px;
        }

        /* Article: 深度研报与个股讨论 (Role: detail) */
        .vault {
            margin-bottom: 80px;
        }

        .cluster-grid3 {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }

        .patch-topic {
            flex: 1 1 320px;
            min-width: 0;
            background: var(--bg-surface);
            border: 1px solid var(--border);
            border-radius: var(--radius-main);
            padding: 24px;
            transition: transform var(--transition), border-color var(--transition);
        }

        .patch-topic:hover {
            transform: translateY(-4px);
            border-color: var(--primary-light);
            background: var(--bg-patch-hover);
        }

        .streak-tags {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            margin-bottom: 16px;
        }

        .token-tag {
            font-size: 12px;
            color: var(--primary-light);
            background: rgba(112, 84, 255, 0.12);
            padding: 4px 10px;
            border-radius: 6px;
        }

        /* Div: 金融创作者生态 (Role: closing) */
        .bedrock {
            background: linear-gradient(135deg, rgba(81, 53, 219, 0.2) 0%, rgba(18, 22, 36, 0.9) 100%);
            border: 1px solid var(--border-glow);
            border-radius: 28px;
            padding: 56px 40px;
            text-align: center;
        }

        .cluster-ecosystem {
            max-width: 800px;
            margin: 0 auto;
        }

        .cluster-pillars {
            display: flex;
            gap: 24px;
            margin: 36px 0;
            flex-wrap: wrap;
            justify-content: center;
        }

        .patch-pillar {
            flex: 1 1 300px;
            min-width: 0;
            background: rgba(9, 11, 17, 0.6);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: var(--radius-main);
            padding: 24px;
            text-align: left;
        }

        /* Footer 页脚区 */
        .sole {
            background: var(--bg-dark);
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding: 60px 0 40px;
        }

        .haven {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
            display: flex;
            gap: 40px;
            justify-content: space-between;
            flex-wrap: wrap;
        }

        .anchor-brand {
            flex: 1 1 300px;
            min-width: 0;
        }

        .horn-brand {
            font-size: 22px;
            font-weight: 800;
            color: #ffffff;
            margin-bottom: 12px;
            letter-spacing: -0.5px;
        }

        .anchor-links {
            flex: 2 1 600px;
            min-width: 0;
            display: flex;
            gap: 40px;
            flex-wrap: wrap;
            justify-content: flex-end;
        }

        .cluster-col {
            display: flex;
            flex-direction: column;
            gap: 12px;
            min-width: 120px;
        }

        .horn-col {
            font-size: 14px;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 4px;
        }

        .node-sole {
            color: var(--text-muted);
            text-decoration: none;
            font-size: 13px;
            transition: color var(--transition);
        }

        .node-sole:hover {
            color: var(--accent-cyan);
        }

        .streak-copyright {
            max-width: 1280px;
            margin: 40px auto 0;
            padding: 24px 24px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            text-align: center;
            font-size: 13px;
            color: var(--text-muted);
        }

        /* 响应式调整 */
        @media (max-width: 768px) {
            .horn-giant {
                font-size: 32px;
            }
            .horn-corral {
                font-size: 24px;
            }
            .corral {
                height: auto;
                padding: 16px 20px;
                gap: 16px;
            }
            .scout {
                gap: 16px;
            }
            .node.active::after {
                display: none;
            }
            .slate-mini.col-w50 {
                flex: 1 1 100%;
            }
            .surge {
                padding: 28px 20px;
            }
            .anchor-links {
                justify-content: flex-start;
            }
        }

.scout-crest {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.7;
    word-break: keep-all;
    color: var(--text-main);
}
.scout-crest,
.scout-crest *,
.scout-crest *::before,
.scout-crest *::after {
    box-sizing: border-box;
}

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

.scout-crest p,
.scout-crest h1,
.scout-crest h2,
.scout-crest h3,
.scout-crest h4,
.scout-crest h5,
.scout-crest h6 {
    text-decoration: none;
}

.scout-crest img {
    display: block;
    max-width: 100%;
    height: auto;
    border: 0;
}

.scout-crest {
    box-shadow: none;
    filter: none;
    text-shadow: none;
    background-image: none;
    border-top: none;
    border-left: none;
    border-right: none;
    outline: none;
}

.scout-crest a.scout-node {
    --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;
}

.scout-crest a.scout-node,
.scout-crest a.scout-node:hover,
.scout-crest a.scout-node:focus,
.scout-crest a.scout-node:active,
.scout-crest a.scout-node.active,
.scout-crest a.scout-node[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);
}

.scout-crest{
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(9, 11, 17, 0.85);
            backdrop-filter: blur(16px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            padding: 16px 0;
        }

.scout-crest .scout-corral{
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 24px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
        }

.scout-crest .scout-mark{
            display: flex;
            align-items: center;
            min-width: 0;
        }

.scout-crest .scout-mark img{
            height: 38px;
            width: auto;
            display: block;
        }

.scout-crest .scout-scout{
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 12px;
        }

.scout-crest .scout-scout a{
            color: #94a3b8;
            text-decoration: none;
            padding: 8px 16px;
            border-radius: 99px;
            font-size: 15px;
            font-weight: 500;
            transition: all 0.25s ease;
            white-space: nowrap;
        }

.scout-crest .scout-scout a:hover{
            color: #f1f5f9;
            background: rgba(255, 255, 255, 0.05);
        }

.scout-crest .scout-scout a.active{
            color: #ffffff;
            background: #5135db;
            box-shadow: 0 0 20px rgba(81, 53, 219, 0.4);
        }

.scout-crest .scout-spur{
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 12px 28px;
            border-radius: 99px;
            background: linear-gradient(135deg, #5135db, #7054ff);
            color: #ffffff;
            font-weight: 600;
            font-size: 15px;
            text-decoration: none;
            border: 1px solid rgba(255, 255, 255, 0.15);
            box-shadow: 0 8px 24px rgba(81, 53, 219, 0.35);
            transition: all 0.25s ease;
            cursor: pointer;
            white-space: nowrap;
        }

.scout-crest .scout-spur:hover{
            transform: translateY(-2px);
            box-shadow: 0 12px 32px rgba(81, 53, 219, 0.5);
            background: linear-gradient(135deg, #7054ff, #00f2fe);
        }

@media (max-width: 768px){.scout-crest{
                padding: 12px 0;
            }

.scout-crest .scout-corral{
                flex-direction: column;
                gap: 16px;
            }

.scout-crest .scout-scout{
                justify-content: center;
                overflow-x: auto;
                width: 100%;
                padding-bottom: 4px;
            }}

.scout-crest {
    background: rgb(9, 11, 17);
    background-image: none;
}

.haven-sole {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.7;
    word-break: keep-all;
    color: var(--text-main);
}
.haven-sole,
.haven-sole *,
.haven-sole *::before,
.haven-sole *::after {
    box-sizing: border-box;
}

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

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

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

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

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

.haven-sole{
            background: #05070a;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding: 80px 0 40px;
            font-size: 14px;
            color: #94a3b8;
        }

.haven-sole .haven-bedrock{
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 24px;
            display: grid;
            grid-template-columns: 2fr repeat(3, 1fr);
            gap: 48px;
            margin-bottom: 60px;
        }

.haven-sole .haven-brand-horn{
            font-size: 24px;
            font-weight: 800;
            color: #ffffff;
            margin-bottom: 16px;
            letter-spacing: -0.5px;
        }

.haven-sole .haven-brand-lore{
            max-width: 320px;
            line-height: 1.7;
            margin-bottom: 24px;
        }

.haven-sole .haven-col-horn{
            font-size: 16px;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 20px;
        }

.haven-sole .haven-col-herd{
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

.haven-sole .haven-col-herd a{
            color: #94a3b8;
            text-decoration: none;
            transition: color 0.25s ease;
        }

.haven-sole .haven-col-herd a:hover{
            color: #00f2fe;
        }

.haven-sole .haven-lore-streak{
            max-width: 1320px;
            margin: 0 auto;
            padding: 30px 24px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 16px;
        }

@media (max-width: 768px){.haven-sole .haven-bedrock{
                grid-template-columns: 1fr;
                gap: 32px;
            }}