* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { height: 100%; overflow: hidden; }
body {
    font-family: -apple-system, 'SF Pro Display', 'PingFang SC', sans-serif;
    -webkit-font-smoothing: antialiased; background: #000; color: #fff;
}

/* ===== 容器 ===== */
.phone {
    max-width: min(100%, 430px); height: 100vh; margin: 0 auto;
    position: relative; overflow: hidden;
}

/* ===== 全屏背景 ===== */
.bg-layer {
    position: fixed; top: 0; bottom: 0; left: 50%; transform: translateX(-50%);
    width: 100%; max-width: 430px; z-index: 0;
    transition: background 0.8s ease;
}
.bg-layer::after {
    content: ''; position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    background-size: 128px; opacity: 0.5; pointer-events: none;
}

/* ===== 状态栏 ===== */
.status-bar {
    position: fixed; top: 0; left: 50%; transform: translateX(-50%);
    width: 100%; max-width: min(100%, 430px); height: 54px;
    display: flex; align-items: flex-end; justify-content: space-between;
    padding: 0 28px 8px; font-size: 15px; font-weight: 600;
    z-index: 200; color: rgba(255,255,255,0.9);
}
.dynamic-island {
    position: absolute; top: 16px; left: 0; right: 0; margin: 0 auto;
    width: 120px; height: 28px; background: #000; border-radius: 14px;
}
.status-r { display: flex; gap: 6px; align-items: center; }

/* ===== 顶部导航 ===== */
.top-nav {
    position: fixed; top: 62px; left: 50%; transform: translateX(-50%);
    width: 100%; max-width: min(100%, 430px); padding: 8px 20px 14px;
    z-index: 200; display: flex; justify-content: space-between; align-items: center;
}
.top-nav-left { display: flex; align-items: center; gap: 10px; }
.nav-menu, .nav-search { color: rgba(255,255,255,0.7); cursor: pointer; }
.top-nav-title { font-size: 17px; font-weight: 600; color: rgba(255,255,255,0.9); letter-spacing: 0.5px; }

/* ===== 滑动容器 ===== */
.feed {
    height: 100vh; overflow-y: scroll; scroll-snap-type: y mandatory;
    -webkit-overflow-scrolling: touch; scrollbar-width: none;
    position: relative; z-index: 1;
}
.feed::-webkit-scrollbar { display: none; }

/* ===== 单条资讯卡片 ===== */
.card {
    height: 100vh; width: 100%; scroll-snap-align: start; scroll-snap-stop: always;
    display: flex; flex-direction: column; justify-content: flex-end;
    position: relative; transition: transform 0.3s ease;
    user-select: none; -webkit-user-select: none;
    padding: 110px 0 76px;
}

/* ===== 卡片主视觉区 ===== */
.card-visual {
    flex: 1 1 0; min-height: 0; margin: 0 auto;
    width: calc(100% - 40px); max-width: 370px;
    border-radius: 18px; overflow: hidden; position: relative;
    background: rgba(255,255,255,0.07);
    backdrop-filter: blur(30px); -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255,255,255,0.12);
    padding: 20px 18px;
    display: flex; flex-direction: column; justify-content: flex-start;
    /* 3D 玻璃感 */
    box-shadow: inset 0 0 60px -20px rgba(var(--theme-rgb), 0.12),
                inset 0 1px 0 rgba(255,255,255,0.1),
                0 8px 32px rgba(0,0,0,0.4),
                0 2px 8px rgba(0,0,0,0.3);
}

/* 氛围题图条 */
.card-ambient {
    position: absolute; top: 0; left: 0; right: 0; height: 80px;
    background-size: cover; background-position: center;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,0.35) 0%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0.35) 0%, transparent 100%);
    pointer-events: none; z-index: 0;
    filter: saturate(0.6) brightness(0.65);
}

/* 几何暗纹 — 按类型区分 */
.card-visual::before {
    content: ''; position: absolute; inset: 0; pointer-events: none; z-index: 0;
    opacity: 0.035;
}
.card-visual.tex-grid::before {
    background-image: repeating-linear-gradient(
        0deg, rgba(255,255,255,1) 0px, transparent 1px, transparent 24px
    ), repeating-linear-gradient(
        90deg, rgba(255,255,255,1) 0px, transparent 1px, transparent 24px
    );
}
.card-visual.tex-diag::before {
    background-image: repeating-linear-gradient(
        -45deg, rgba(255,255,255,1) 0px, transparent 1px, transparent 16px
    );
}
.card-visual.tex-dot::before {
    background-image: radial-gradient(circle, rgba(255,255,255,1) 0.5px, transparent 0.5px);
    background-size: 12px 12px;
}
.card-visual.tex-wave::before {
    background-image: repeating-linear-gradient(
        30deg, rgba(255,255,255,1) 0px, transparent 1px, transparent 20px
    );
}
/* 卡片内容相对于暗纹之上 */
.card-visual > *:not(.card-ambient) { position: relative; z-index: 1; flex-shrink: 0; }

/* 信源标签 */
.card-source {
    display: flex; align-items: center; gap: 6px; margin-bottom: 16px;
    font-size: 12px; color: rgba(255,255,255,0.45);
}
.source-badge {
    font-size: 10px; padding: 2px 6px; border-radius: 4px;
    font-weight: 600;
}
.source-badge.verified { background: rgba(214,164,97,0.15); color: #D6A461; }
.source-badge.media { background: rgba(214,164,97,0.12); color: #C9A06A; }
.source-badge.rumor { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.5); }

/* 类型标签 */
.card-type {
    display: inline-flex; align-items: center; gap: 4px;
    font-size: 11px; font-weight: 600; letter-spacing: 0.8px;
    padding: 4px 10px; border-radius: 6px; margin-bottom: 14px;
    width: fit-content;
}
.card-type.funding { background: rgba(214,164,97,0.2); color: #D6A461; }
.card-type.opinion { background: rgba(214,164,97,0.14); color: #C9A06A; }
.card-type.insight { background: rgba(214,164,97,0.12); color: #BFA87A; }
.card-type.institution { background: rgba(214,164,97,0.15); color: #D6A461; }
.card-type.people { background: rgba(214,164,97,0.13); color: #C9A06A; }
.card-type.policy { background: rgba(214,164,97,0.18); color: #D6A461; }
.card-type.dataegg { background: rgba(214,164,97,0.13); color: #C9A06A; }
.card-type.alert { background: rgba(214,164,97,0.18); color: #D6A461; }
.card-type.track-digest { background: rgba(214,164,97,0.12); color: #BFA87A; }
.card-type.editorial { background: rgba(214,164,97,0.14); color: #C9A06A; }
/* 赛道简报 items 列表 */
.digest-list { display: flex; flex-direction: column; gap: 8px; margin: 8px 0; }
.digest-item { display: flex; flex-direction: column; gap: 2px; }
.digest-item-head { display: flex; align-items: center; gap: 6px; }
.digest-item-tag { font-size: 10px; padding: 1px 6px; border-radius: 4px; background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.5); font-weight: 600; flex-shrink: 0; }
.digest-item-tag.policy { background: rgba(214,164,97,0.15); color: #D6A461; }
.digest-item-title { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.8); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.digest-item-summary { font-size: 11px; line-height: 1.5; color: rgba(255,255,255,0.4); display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 1; overflow: hidden; }
/* 线报 badge 区分 */
.scroll-badge.tip { background: rgba(255,80,80,0.25) !important; color: #FF6B6B !important; font-weight: 700; }

/* 标题 */
.card-title {
    font-size: 18px; font-weight: 700; line-height: 1.4;
    color: #fff; letter-spacing: -0.3px; margin-bottom: 10px;
    display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 2; overflow: hidden;
}

/* 关键数据行 */
.card-data {
    display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 10px;
}
.data-chip {
    font-size: 11px; padding: 3px 8px; border-radius: 8px;
    background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.7);
}
.data-chip.highlight { background: rgba(214,164,97,0.15); color: #D6A461; font-weight: 600; }

/* 摘要 */
.card-summary {
    font-size: 13px; font-weight: 500; line-height: 1.7; color: rgba(255,255,255,0.6);
    display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 4; overflow: hidden;
}
.card-summary.sm { font-size: 12px; }

/* AI 点评 — 直接在卡片内 */
.card-ai {
    margin-top: 12px; padding: 10px 14px;
    background: rgba(214,164,97,0.08);
    border-radius: 12px; border: 1px solid rgba(214,164,97,0.12);
    flex-shrink: 0;
}
.card-ai-label {
    font-size: 11px; font-weight: 600; color: #D6A461; font-style: italic;
    margin-bottom: 6px; display: flex; align-items: center; gap: 5px;
}
.card-ai-text {
    font-size: 12px; font-weight: 500; line-height: 1.65; color: rgba(255,255,255,0.7);
    overflow: hidden; display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 3; line-clamp: 3;
}

/* 迷你图表（赛道洞察用） */
.mini-chart {
    margin-top: 14px; height: 60px;
    display: flex; align-items: flex-end; gap: 4px; padding: 0 4px 18px;
}
.mini-bar {
    flex: 1; border-radius: 3px 3px 0 0;
    background: rgba(214,164,97,0.3); transition: height 0.5s ease;
    position: relative;
}
.mini-bar.current { background: #D6A461; }
.mini-bar-label {
    position: absolute; bottom: -15px; left: 50%; transform: translateX(-50%);
    font-size: 8px; color: rgba(255,255,255,0.3); white-space: nowrap;
}

/* ===== 底部信息区 — 汽水布局 ===== */
.card-bottom {
    flex: 0 0 auto; display: flex; flex-direction: column;
    justify-content: flex-end; padding: 10px 20px 0;
    gap: 8px;
}

/* 纵向评论滚动（歌词位置） */
.comment-scroll {
    height: 120px; overflow: hidden;
    position: relative; cursor: pointer;
    mask-image: linear-gradient(to bottom, transparent, #000 20%, #000 80%, transparent);
    -webkit-mask-image: linear-gradient(to bottom, transparent, #000 20%, #000 80%, transparent);
}
.comment-scroll-inner {
    animation: scroll-up 30s linear infinite;
}
.scroll-comment {
    font-size: 13px; line-height: 1.5; color: rgba(255,255,255,0.5);
    padding: 2px 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.scroll-comment .scroll-badge {
    font-size: 10px; padding: 1px 5px; border-radius: 3px;
    margin-right: 6px;
    background: rgba(214,164,97,0.15) !important; color: #D6A461 !important;
}
@keyframes scroll-up {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); }
}

/* 资讯标题（歌名位置） */
.card-bottom-title {
    font-size: 17px; font-weight: 700; color: #fff;
    line-height: 1.35; margin-bottom: 2px;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.card-bottom-meta {
    font-size: 13px; color: rgba(255,255,255,0.4); margin-bottom: 10px;
}

/* 右侧竖排悬浮互动（抖音风格） — fixed，脱离卡片流 */
.card-side-actions {
    position: absolute; right: 6px; bottom: 96px; z-index: 150;
    display: flex; flex-direction: column; align-items: center; gap: 22px;
}
.side-btn {
    display: flex; flex-direction: column; align-items: center; gap: 3px;
    cursor: pointer; -webkit-tap-highlight-color: transparent;
}
.side-btn-icon {
    width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
    transition: transform .15s;
}
.side-btn:active .side-btn-icon { transform: scale(0.85); }
.side-btn-icon svg { width: 38px; height: 38px; fill: rgba(255,255,255,0.95); stroke: none; }
.side-btn-label { font-size: 11px; color: rgba(255,255,255,0.6); font-weight: 500; text-shadow: 0 1px 3px rgba(0,0,0,0.5); }
.side-btn.liked .side-btn-icon svg { fill: #D6A461; }
.side-btn.liked .side-btn-label { color: #D6A461; }
.card-peers-side {
    display: flex; flex-direction: column; align-items: center; gap: 2px;
    font-size: 10px; color: rgba(255,255,255,0.35);
}
.card-peers-side .peers-dot { width: 5px; height: 5px; }

/* ===== 快速投票条 ===== */
.card-vote {
    margin-top: 10px; padding: 8px 12px;
    background: rgba(255,255,255,0.05); border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.06);
    flex-shrink: 0;
}
.card-vote-q { font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.7); }
.card-vote-bar {
    height: 3px; border-radius: 2px; background: rgba(255,255,255,0.08);
    margin: 6px 0 5px; overflow: hidden;
}
.card-vote-fill { height: 100%; border-radius: 2px; background: #D6A461; }
.card-vote-btns { display: flex; align-items: center; gap: 12px; }
.card-vote-btn {
    font-size: 12px; color: rgba(255,255,255,0.45); cursor: pointer;
    transition: color .2s;
}
.card-vote-btn:active { color: #fff; }
.card-vote-btn.bull { color: rgba(214,164,97,0.85); }
.card-vote-btn.bear { color: rgba(255,255,255,0.45); }
.card-vote-count { font-size: 11px; color: rgba(255,255,255,0.2); margin-left: auto; }

/* 关注本轮按钮 */
.card-interact-btn {
    padding: 10px; border-radius: 10px; text-align: center;
    font-size: 13px; font-weight: 600; color: #D6A461; cursor: pointer;
    background: rgba(214,164,97,0.1); border: 1px solid rgba(214,164,97,0.15);
    transition: all .2s;
}
.card-interact-btn.active {
    background: rgba(214,164,97,0.05); color: rgba(255,255,255,0.4);
    border-color: rgba(255,255,255,0.06);
}

/* 一句话点评输入 */
.card-interact-input {
    padding: 8px 12px; border-radius: 10px; min-height: 36px;
    font-size: 13px; color: rgba(255,255,255,0.7);
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.06);
    outline: none; transition: border-color .2s;
}
.card-interact-input:empty::before {
    content: attr(data-placeholder); color: rgba(255,255,255,0.25);
}
.card-interact-input:focus { border-color: rgba(214,164,97,0.3); }

/* 延伸动作按钮组 */
.card-actions-ext {
    display: flex; gap: 8px; flex-shrink: 0; margin-top: auto; padding-top: 12px;
}
.ext-btn {
    flex: 1; display: flex; align-items: center; justify-content: center; gap: 5px;
    padding: 9px 0; border-radius: 10px;
    font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.55); cursor: pointer;
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.06);
    transition: all .2s; text-decoration: none;
}
.ext-btn:active { background: rgba(214,164,97,0.1); color: #D6A461; border-color: rgba(214,164,97,0.15); }
.ext-btn.ext-ai { color: #D6A461; background: rgba(214,164,97,0.08); border-color: rgba(214,164,97,0.12); }

/* ===== 同行在看 + 关联标签 ===== */
.card-bottom-bar {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 6px;
}
.card-peers {
    display: flex; align-items: center; gap: 5px;
    font-size: 11px; color: rgba(255,255,255,0.35);
}
.card-agent-peers {
    font-size: 11px; color: rgba(214,164,97,0.7);
    letter-spacing: 0.2px;
    padding-left: 8px;
    border-left: 1px solid rgba(255,255,255,0.12);
    margin-left: 4px;
}
.peers-dot {
    width: 6px; height: 6px; border-radius: 50%; background: #D6A461;
    animation: peers-pulse 2s ease-in-out infinite;
}
@keyframes peers-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}
.card-tags { display: flex; gap: 6px; }
.card-tag {
    font-size: 10px; padding: 2px 8px; border-radius: 6px;
    background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.35);
    cursor: pointer; transition: all .2s;
}
.card-tag:active { background: rgba(214,164,97,0.15); color: #D6A461; }
/* legacy act-btn removed — replaced by .side-btn */

/* ===== 左滑/右滑反馈 ===== */
.swipe-feedback {
    position: absolute; top: 50%; transform: translateY(-50%);
    z-index: 10; font-size: 14px; font-weight: 600;
    padding: 10px 20px; border-radius: 12px;
    opacity: 0; transition: opacity 0.2s;
    pointer-events: none;
}
.swipe-feedback.left {
    right: 24px; background: rgba(255,69,58,0.2); color: #FF453A;
}
.swipe-feedback.right {
    left: 24px; background: rgba(214,164,97,0.2); color: #D6A461;
}
.swipe-feedback.show { opacity: 1; }

/* 双击星标动画 */
.star-burst {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%) scale(0);
    font-size: 48px; font-weight: 800; color: #D6A461;
    pointer-events: none; z-index: 20;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s;
    opacity: 0;
}
.star-burst.show {
    transform: translate(-50%, -50%) scale(1); opacity: 1;
}

/* ===== 底部 Tab 栏 — 分段式玻璃胶囊 ===== */
.tab-bar {
    position: fixed; bottom: 16px; left: 50%; transform: translateX(-50%);
    width: calc(100% - 24px); max-width: 406px; z-index: 200;
    display: flex; gap: 6px; align-items: center;
}
.tab-segment {
    display: flex; align-items: center; justify-content: space-around;
    padding: 10px 6px;
    background: rgba(30,28,26,0.45);
    backdrop-filter: blur(60px) saturate(1.8); -webkit-backdrop-filter: blur(60px) saturate(1.8);
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 8px 32px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.06);
}
.tab-segment-main { gap: 4px; padding: 4px 8px; flex: 1; min-width: 0; }
.tab-segment-ai {
    padding: 4px 14px;
    flex-shrink: 0;
    background: rgba(214,164,97,0.12);
    border-color: rgba(214,164,97,0.18);
}
.tab-item {
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1px;
    flex: 1; height: 38px; border-radius: 12px;
    color: rgba(255,255,255,0.35); cursor: pointer;
    transition: all .2s;
}
.tab-item:active { transform: scale(0.9); }
.tab-item.active { color: rgba(255,255,255,0.9); background: rgba(255,255,255,0.08); }
.tab-item.tab-ai { color: #D6A461; width: auto; padding: 0 8px; flex-direction: row; gap: 0; }
.tab-item svg { width: 22px; height: 22px; }
.tab-label { font-size: 10px; font-weight: 500; line-height: 1; }


/* ===== 左侧赛道抽屉 ===== */
.drawer-overlay {
    position: fixed; inset: 0; z-index: 300;
    background: rgba(0,0,0,0.5); opacity: 0;
    pointer-events: none; transition: opacity 0.3s;
}
.drawer-overlay.open { opacity: 1; pointer-events: auto; }

.drawer {
    position: fixed; top: 0; left: -300px; bottom: 0;
    width: 280px; z-index: 301;
    backdrop-filter: blur(40px); -webkit-backdrop-filter: blur(40px);
    transition: left 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), background 0.8s ease;
    padding: 70px 20px 40px;
    overflow-y: auto;
}
.drawer.open { left: 0; }

.drawer-title {
    font-size: 22px; font-weight: 700; margin-bottom: 8px; color: #fff;
}
.drawer-subtitle {
    font-size: 13px; color: rgba(255,255,255,0.35); margin-bottom: 28px;
}

/* 模式切换 */
.drawer-modes { display: flex; flex-direction: column; gap: 8px; margin-bottom: 28px; }
.drawer-mode {
    padding: 12px 16px; border-radius: 12px;
    background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.6);
    font-size: 14px; font-weight: 500; cursor: pointer;
    transition: all .2s; text-align: center;
}
.drawer-mode.active {
    background: rgba(214,164,97,0.15); color: #D6A461;
    border: 1px solid rgba(214,164,97,0.2);
}

/* 赛道网格 */
.drawer-section-title {
    font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.3);
    letter-spacing: 1px; margin-bottom: 14px;
}
.drawer-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px 0;
    margin-bottom: 28px;
}
.drawer-item {
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    padding: 12px 0; cursor: pointer;
    transition: all .2s; font-size: 12px; color: rgba(255,255,255,0.5);
}
.drawer-item.active {
    color: #D6A461;
}
.drawer-item-icon {
    font-size: 13px; font-weight: 700; letter-spacing: 0.5px;
    width: 40px; height: 40px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.5);
}
.drawer-item.active .drawer-item-icon {
    background: rgba(214,164,97,0.12); color: #D6A461;
}

/* ===== 底部详情面板 ===== */
.detail-overlay {
    position: fixed; inset: 0; z-index: 300;
    background: rgba(0,0,0,0.3); opacity: 0;
    pointer-events: none; transition: opacity 0.3s;
}
.detail-overlay.open { opacity: 1; pointer-events: auto; }

.detail-panel {
    position: fixed; bottom: -100%; left: 50%; transform: translateX(-50%);
    width: 100%; max-width: min(100%, 430px); max-height: 75vh;
    z-index: 301; border-radius: 20px 20px 0 0;
    background: rgba(20,18,16,0.82);
    backdrop-filter: blur(60px) saturate(1.4); -webkit-backdrop-filter: blur(60px) saturate(1.4);
    transition: bottom 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow-y: auto; padding-bottom: 40px;
}
.detail-panel.open { bottom: 0; }

.detail-handle {
    width: 36px; height: 4px; border-radius: 2px;
    background: rgba(255,255,255,0.2); margin: 10px auto 0;
}
.detail-header { padding: 20px 24px 16px; }
.detail-title { font-size: 18px; font-weight: 700; line-height: 1.4; margin-bottom: 8px; }
.detail-meta { font-size: 12px; color: rgba(255,255,255,0.35); }

/* 投票区 */
.vote-section { padding: 0 24px 20px; }
.vote-question { font-size: 15px; font-weight: 600; margin-bottom: 14px; }
.vote-options { display: flex; gap: 10px; margin-bottom: 10px; }
.vote-btn {
    flex: 1; padding: 12px; border-radius: 12px; text-align: center;
    font-size: 14px; font-weight: 600; cursor: pointer; transition: all .2s;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.04);
}
.vote-btn.bullish:hover, .vote-btn.bullish.selected {
    background: rgba(214,164,97,0.15); border-color: rgba(214,164,97,0.3); color: #D6A461;
}
.vote-btn.bearish:hover, .vote-btn.bearish.selected {
    background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2); color: rgba(255,255,255,0.6);
}
.vote-bar {
    height: 6px; border-radius: 3px; background: rgba(255,255,255,0.06);
    overflow: hidden; margin-bottom: 6px;
}
.vote-bar-fill { height: 100%; border-radius: 3px; transition: width 0.5s ease; }
.vote-bar-fill.bull { background: #D6A461; }
.vote-bar-fill.bear { background: rgba(255,255,255,0.25); }
.vote-count { font-size: 11px; color: rgba(255,255,255,0.3); }

/* 评论区 */
.comments-section { padding: 0 24px; }
.comments-title {
    font-size: 14px; font-weight: 600; margin-bottom: 14px;
    display: flex; align-items: center; gap: 6px;
}
.comments-count {
    font-size: 12px; color: rgba(255,255,255,0.3); font-weight: 400;
}
.comment-item {
    padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.05);
}
.comment-item.hot {
    background: rgba(214,164,97,0.04);
    margin: 0 -8px; padding: 14px 8px;
    border-radius: 10px; border-bottom: none;
    margin-bottom: 2px;
}
.comment-author {
    font-size: 12px; color: rgba(255,255,255,0.4); margin-bottom: 6px;
    display: flex; align-items: center; gap: 6px; flex-wrap: wrap;
}
.comment-author-badge {
    font-size: 10px; padding: 1px 6px; border-radius: 4px;
    background: rgba(214,164,97,0.12); color: #D6A461;
}
/* 线报标签 — 详情面板内，红色突出 */
.comment-tip-badge {
    font-size: 10px; padding: 1px 7px; border-radius: 4px; font-weight: 700;
    background: rgba(255,80,80,0.18); color: #FF6B6B;
    border: 1px solid rgba(255,80,80,0.25);
}
/* 热评标签 */
.comment-hot-badge {
    font-size: 10px; padding: 1px 7px; border-radius: 4px; font-weight: 700;
    background: rgba(214,164,97,0.2); color: #D6A461;
    border: 1px solid rgba(214,164,97,0.3);
}
.comment-text { font-size: 14px; line-height: 1.6; color: rgba(255,255,255,0.7); }
.comment-actions {
    margin-top: 8px; display: flex; gap: 16px;
    font-size: 11px; color: rgba(255,255,255,0.25);
}
.comment-likes { color: rgba(255,255,255,0.35); }
/* 龙虾评论 — 深色突出 */
.comment-item.agent-comment {
    background: rgba(200,40,40,0.05);
    border-left: 2px solid rgba(239,68,68,0.4);
    margin: 0 -8px 0 -14px;
    padding: 12px 8px 12px 12px;
    border-radius: 0 8px 8px 0;
}
.comment-item.agent-comment .comment-text { color: rgba(255,255,255,0.82); }
.comment-author-badge.agent-badge {
    background: rgba(239,68,68,0.15); color: #fca5a5;
}
.comment-agent-tag {
    font-size: 10px; padding: 1px 7px; border-radius: 4px; font-weight: 700;
    background: rgba(239,68,68,0.18); color: #f87171;
    border: 1px solid rgba(239,68,68,0.28);
}
/* 人类评论轻微淡化 */
.comment-item:not(.agent-comment) .comment-author-badge {
    background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.32);
}
.comment-item:not(.agent-comment) .comment-text { color: rgba(255,255,255,0.5); }
/* scroll ticker 龙虾badge */
.scroll-badge.agent-badge {
    background: rgba(239,68,68,0.25) !important;
    color: rgba(252,165,165,0.95) !important;
    font-weight: 700;
}
/* ===== 虾评区 ===== */
.shrimp-rating-section {
    padding: 14px 24px 16px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.shrimp-rating-hd {
    font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.35);
    letter-spacing: 0.8px; text-transform: uppercase; margin-bottom: 10px;
    display: flex; align-items: center; gap: 6px;
}
.shrimp-rating-hd::after {
    content: ''; flex: 1; height: 1px; background: rgba(255,255,255,0.06);
}
.shrimp-rating-body { display: flex; align-items: flex-start; gap: 12px; }
.shrimp-grade-box {
    width: 46px; height: 46px; border-radius: 12px; flex-shrink: 0;
    background: rgba(214,164,97,0.1);
    border: 1.5px solid rgba(214,164,97,0.3);
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; font-weight: 800; color: #D6A461; letter-spacing: -0.5px;
}
.shrimp-grade-info { flex: 1; padding-top: 2px; }
.shrimp-grade-label {
    font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.75); margin-bottom: 4px;
}
.shrimp-grade-reason { font-size: 12px; color: rgba(255,255,255,0.38); line-height: 1.55; }
.shrimp-nodata {
    font-size: 12px; color: rgba(255,255,255,0.28); font-style: italic;
    padding: 10px 14px; background: rgba(255,255,255,0.03);
    border-radius: 8px; border: 1px solid rgba(255,255,255,0.06);
}
/* 多条虾评间距 */
.shrimp-rating-body + .shrimp-rating-body {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(255,255,255,0.05);
}
/* 虾评数量角标 */
.shrimp-rating-count {
    background: rgba(214,164,97,0.12);
    color: rgba(214,164,97,0.7);
    font-size: 10px; font-weight: 700;
    padding: 1px 6px; border-radius: 10px;
    letter-spacing: 0;
}

/* ===== 卡片虾评胶囊条 ===== */
.shrimp-strip {
    display: flex;
    gap: 6px;
    margin-bottom: 8px;
    overflow: hidden;
}
.shrimp-pill {
    display: flex;
    align-items: center;
    gap: 4px;
    background: rgba(214,164,97,0.07);
    border: 1px solid rgba(214,164,97,0.18);
    border-radius: 20px;
    padding: 3px 8px 3px 5px;
    white-space: nowrap;
    flex-shrink: 0;
}
.sp-emoji { font-size: 11px; line-height: 1; }
.sp-name {
    font-size: 11px;
    color: rgba(255,255,255,0.45);
}
.sp-grade {
    font-size: 12px;
    font-weight: 700;
    color: #D6A461;
    margin-left: 2px;
}

/* ===== 融资卡片 — 投资机构 ===== */
.funding-investors { margin-bottom: 10px; }
.investor-lead {
    display: flex; align-items: center; gap: 6px; margin-bottom: 6px;
}
.investor-lead-label {
    font-size: 10px; padding: 1px 5px; border-radius: 3px;
    background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.5); font-weight: 600;
}
.investor-lead-name { font-size: 12px; color: rgba(255,255,255,0.6); }
.investor-follow {
    display: flex; align-items: center; gap: 5px; flex-wrap: wrap;
}
.investor-follow-label {
    font-size: 10px; padding: 1px 5px; border-radius: 3px;
    background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.5); font-weight: 600;
}
.investor-tag {
    font-size: 12px; color: rgba(255,255,255,0.6);
    padding: 2px 7px; border-radius: 4px;
    background: rgba(255,255,255,0.06);
}

/* ===== 融资卡片 — 杂志封面风格 ===== */
.card-visual.funding-hero {
    padding: 0; border: none;
    backdrop-filter: none; -webkit-backdrop-filter: none;
    background: none; overflow: hidden;
}
.funding-bg {
    position: absolute; inset: 0; border-radius: 18px;
    background-size: cover; background-position: center;
}
.funding-overlay {
    position: absolute; inset: 0; border-radius: 18px;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.05) 100%);
}
.funding-content {
    position: relative; z-index: 1; height: 100%;
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 24px 22px;
}
.funding-tags {
    position: absolute; top: 20px; left: 22px; z-index: 1;
    display: flex; gap: 6px;
}
.funding-center {
    text-align: center; margin-bottom: 20px;
}
.funding-amount {
    font-size: 42px; font-weight: 800; color: #D6A461;
    letter-spacing: -1px; line-height: 1.1;
}
.funding-amount::before { content: '¥'; font-size: 24px; font-weight: 600; margin-right: 2px; }
.funding-company {
    font-size: 18px; font-weight: 600; color: rgba(255,255,255,0.9);
    margin-top: 8px;
}
/* 抽象渐变背景 — 每张卡片通过 style 注入 */
.funding-bg.style-warm {
    background-image:
        radial-gradient(ellipse 80% 60% at 20% 30%, rgba(214,164,97,0.35), transparent),
        radial-gradient(ellipse 60% 80% at 80% 70%, rgba(180,120,60,0.2), transparent),
        radial-gradient(ellipse 50% 50% at 50% 50%, rgba(60,40,20,0.3), transparent),
        linear-gradient(160deg, #3D2E1A 0%, #1A1510 100%);
}
.funding-bg.style-cool {
    background-image:
        radial-gradient(ellipse 70% 60% at 75% 25%, rgba(100,160,200,0.25), transparent),
        radial-gradient(ellipse 60% 70% at 25% 75%, rgba(140,100,180,0.15), transparent),
        radial-gradient(ellipse 50% 50% at 50% 50%, rgba(30,40,60,0.3), transparent),
        linear-gradient(160deg, #1A2535 0%, #0E1118 100%);
}
/* 融资时间标签 */
.funding-time {
    position: absolute; top: 20px; right: 22px; z-index: 1;
    font-size: 11px; color: rgba(255,255,255,0.5);
}

/* ===== 政策闪电卡片 ===== */
.policy-signal {
    margin: 10px 0; padding: 10px 14px; border-radius: 10px;
    background: rgba(214,164,97,0.12); border-left: 3px solid #D6A461;
    font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.85); line-height: 1.5;
}
.policy-affected { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 10px; }
.policy-affected-label {
    font-size: 10px; color: rgba(255,255,255,0.35); font-weight: 600;
    align-self: center; margin-right: 2px;
}
.policy-affected-tag {
    font-size: 11px; padding: 3px 8px; border-radius: 6px;
    background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.6);
    cursor: pointer; transition: all .2s;
}
.policy-affected-tag:active { background: rgba(214,164,97,0.15); color: #D6A461; }

/* ===== 机构动态 — 更多显示行数 ===== */
.card[data-type="institution"] .card-ai-text {
    -webkit-line-clamp: 3; line-clamp: 3;
}

/* ===== 数据彩蛋卡片 ===== */
.dataegg-ranking { margin: 10px 0; }
.dataegg-rank-item {
    display: flex; align-items: center; gap: 10px; padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}
.dataegg-rank-num {
    font-size: 16px; font-weight: 800; color: rgba(255,255,255,0.25);
    width: 24px; text-align: center;
}
.dataegg-rank-name { font-size: 13px; color: rgba(255,255,255,0.6); flex: 1; }
.dataegg-rank-bar {
    width: 80px; height: 6px; border-radius: 3px;
    background: rgba(255,255,255,0.06); overflow: hidden;
}
.dataegg-rank-fill { height: 100%; border-radius: 3px; background: rgba(214,164,97,0.4); }
.dataegg-rank-pct { font-size: 12px; color: rgba(255,255,255,0.4); width: 36px; text-align: right; }
.dataegg-rank-item.surprise .dataegg-rank-num { color: #D6A461; }
.dataegg-rank-item.surprise .dataegg-rank-name { color: #D6A461; font-weight: 600; }
.dataegg-rank-item.surprise .dataegg-rank-fill { background: #D6A461; }
.dataegg-rank-item.surprise .dataegg-rank-pct { color: #D6A461; }
.dataegg-highlight {
    margin: 10px 0; padding: 12px 14px; border-radius: 12px;
    background: rgba(214,164,97,0.1); border: 1px solid rgba(214,164,97,0.15);
    text-align: center;
}
.dataegg-highlight-value {
    font-size: 28px; font-weight: 800; color: #D6A461; line-height: 1.2;
}
.dataegg-highlight-label {
    font-size: 13px; color: rgba(255,255,255,0.7); margin-top: 4px;
}
.dataegg-highlight-sub {
    font-size: 11px; color: rgba(255,255,255,0.4); margin-top: 4px;
}

