:root {
    --bg-primary: #f8fafc;
    --bg-secondary: #f1f5f9;
    --bg-card: #ffffff;
    --bg-glass: rgba(255, 255, 255, 0.95);
    --bg-glass-hover: rgba(59, 130, 246, 0.05);
    
    --accent-cyan: #0891b2;
    --accent-purple: #7c3aed;
    --accent-pink: #db2777;
    --accent-blue: #2563eb;
    --accent-green: #059669;
    --accent-gold: #d97706;
    --accent-red: #dc2626;
    
    --text-primary: #1e293b;
    --text-secondary: #475569;
    --text-muted: #94a3b8;
    
    --border-color: #e2e8f0;
    --border-glow: rgba(8, 145, 178, 0.3);
    
    --glow-cyan: 0 0 15px rgba(8, 145, 178, 0.2);
    --glow-purple: 0 0 15px rgba(124, 58, 237, 0.2);
    
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    
    --font-mono: 'JetBrains Mono', 'SF Mono', monospace;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-primary);
    background: var(--bg-primary);
    min-height: 100vh;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 15% 15%, rgba(37, 99, 235, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 85% 85%, rgba(124, 58, 237, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(8, 145, 178, 0.04) 0%, transparent 60%);
    pointer-events: none;
    z-index: -1;
}

.grid-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0,0,0,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,0,0,0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
    z-index: -1;
}

a {
    color: var(--accent-cyan);
    text-decoration: none;
    transition: all 0.2s;
}

a:hover {
    color: var(--accent-purple);
}

.container {
    display: flex;
    min-height: 100vh;
    width: 100%;
}

/* 侧边导航 */
.sidebar {
    width: 200px;
    min-width: 200px;
    background: var(--bg-card);
    border-right: 1px solid var(--border-color);
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    overflow-y: auto;
    z-index: 100;
}

.sidebar::-webkit-scrollbar {
    width: 4px;
}

.sidebar::-webkit-scrollbar-thumb {
    background: var(--accent-cyan);
    border-radius: 3px;
}

.sidebar-header {
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-icon {
    font-size: 20px;
    color: var(--accent-cyan);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; text-shadow: 0 0 10px rgba(8, 145, 178, 0.4); }
    50% { opacity: 0.6; }
}

.sidebar-header h2 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: 0.5px;
}

.nav-tree a:hover {
    background: var(--bg-glass-hover);
    color: var(--accent-cyan);
    padding-left: 14px;
}

.nav-tree li.active > a {
    background: rgba(8, 145, 178, 0.1);
    color: var(--accent-cyan);
    border-left-color: var(--accent-cyan);
    font-weight: 500;
}

@keyframes pulse {
    0%, 100% { opacity: 1; text-shadow: var(--glow-cyan); }
    50% { opacity: 0.6; }
}

.sidebar-header h2 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: 0.5px;
}

.nav-tree {
    list-style: none;
    padding: 12px 0;
}

.nav-tree li {
    margin: 2px 0;
}

.nav-tree a {
    display: block;
    padding: 12px 16px;
    color: var(--text-secondary);
    font-size: 14px;
    transition: all 0.2s;
    border-left: 3px solid transparent;
}

.nav-tree a:hover {
    background: var(--bg-glass-hover);
    color: var(--accent-cyan);
    padding-left: 20px;
}

.nav-tree li.active > a {
    background: rgba(0, 245, 255, 0.08);
    color: var(--accent-cyan);
    border-left-color: var(--accent-cyan);
    font-weight: 600;
}

.nav-category-toggle {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
    padding: 12px 16px;
}

.nav-category-toggle::after {
    content: '▼';
    font-size: 10px;
    transition: transform 0.3s;
}

.nav-category-toggle.active::after {
    transform: rotate(180deg);
}

.nav-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.nav-submenu.expanded {
    max-height: 500px;
}

.nav-submenu li a {
    padding-left: 28px;
    font-size: 13px;
}

/* 主内容区 */
.main-content {
    flex: 1;
    min-width: 0;
    margin-left: 200px;
    padding: 20px 28px;
    background: transparent;
    max-width: calc(100vw - 200px);
    overflow-x: hidden;
}

.main-header {
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-color);
}

.header-badge {
    display: inline-block;
    padding: 2px 8px;
    background: rgba(8, 145, 178, 0.1);
    border: 1px solid rgba(8, 145, 178, 0.2);
    border-radius: 3px;
    font-size: 9px;
    font-weight: 600;
    color: var(--accent-cyan);
    font-family: var(--font-mono);
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.main-header h1 {
    font-size: 26px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
    letter-spacing: -0.5px;
}

.main-header p {
    color: var(--text-secondary);
    font-size: 15px;
    margin-bottom: 8px;
}

.header-meta {
    display: flex;
    gap: 16px;
    font-size: 11px;
    color: var(--text-muted);
}

.meta-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    background: var(--accent-green);
    border-radius: 50%;
    margin-right: 6px;
    animation: blink 2s infinite;
    box-shadow: 0 0 6px var(--accent-green);
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

/* 区块标题 */
.section {
    margin-bottom: 16px;
}

/* player-audience.html 区块样式 */
.audience-analysis > h2,
.demographic-analysis > h2,
.behavioral-insights > h2,
.income-segmentation > h2,
.regional-comparison > h2,
.gender-analysis > h2,
.device-platform-analysis > h2,
.psychological-profiles > h2,
.market-insights > h2,
.time-segmentation > h2,
.target-strategies > h2,
.future-outlook > h2 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--accent-cyan);
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
}

.audience-analysis > h2::before,
.demographic-analysis > h2::before,
.behavioral-insights > h2::before,
.income-segmentation > h2::before,
.regional-comparison > h2::before,
.gender-analysis > h2::before,
.device-platform-analysis > h2::before,
.psychological-profiles > h2::before,
.market-insights > h2::before,
.time-segmentation > h2::before,
.target-strategies > h2::before,
.future-outlook > h2::before {
    content: '◆';
    font-size: 12px;
    color: var(--accent-cyan);
}

.audience-analysis > h2::after,
.demographic-analysis > h2::after,
.behavioral-insights > h2::after,
.income-segmentation > h2::after,
.regional-comparison > h2::after,
.gender-analysis > h2::after,
.device-platform-analysis > h2::after,
.psychological-profiles > h2::after,
.market-insights > h2::after,
.time-segmentation > h2::after,
.target-strategies > h2::after,
.future-outlook > h2::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-purple));
    border-radius: 2px;
}

.section-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 8px;
}

.title-icon {
    color: var(--accent-cyan);
    font-size: 12px;
}

/* 统计卡片 */
.stat-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
    margin-bottom: 16px;
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 10px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.stat-icon {
    font-size: 14px;
    margin-bottom: 4px;
}

.stat-value {
    font-size: 20px;
    font-weight: 700;
    font-family: var(--font-mono);
    color: var(--text-primary);
    margin-bottom: 0;
}

.stat-label {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 16px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--accent-cyan);
}

.stat-card:nth-child(2)::before { background: var(--accent-purple); }
.stat-card:nth-child(3)::before { background: var(--accent-green); }
.stat-card:nth-child(4)::before { background: var(--accent-gold); }
.stat-card:nth-child(5)::before { background: var(--accent-pink); }
.stat-card:nth-child(6)::before { background: var(--accent-blue); }

.stat-card:hover {
    border-color: rgba(8, 145, 178, 0.3);
    box-shadow: var(--glow-cyan);
    transform: translateY(-2px);
}

.stat-icon {
    font-size: 18px;
    margin-bottom: 8px;
}

.stat-value {
    font-size: 18px;
    font-weight: 700;
    font-family: var(--font-mono);
    color: var(--text-primary);
    margin-bottom: 2px;
}

.stat-label {
    font-size: 11px;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.stat-trend {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 500;
    font-family: var(--font-mono);
}

.stat-trend.up {
    background: rgba(5, 150, 105, 0.1);
    color: var(--accent-green);
}

.stat-trend.down {
    background: rgba(220, 38, 38, 0.1);
    color: var(--accent-red);
}

.stat-sparkline {
    margin-top: 8px;
    height: 30px;
}

.stat-sparkline svg {
    width: 100%;
    height: 100%;
}

/* 公司信息网格 */
.company-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 16px;
    margin-bottom: 20px;
}

.info-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
}

.info-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--accent-cyan);
    transition: all 0.3s ease;
}

.info-item:hover {
    border-color: rgba(8, 145, 178, 0.3);
    box-shadow: 0 4px 12px rgba(8, 145, 178, 0.15);
    transform: translateY(-2px);
}

.info-item:hover::before {
    width: 6px;
    background: linear-gradient(180deg, var(--accent-cyan), var(--accent-purple));
}

.info-item h3 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 8px;
}

.info-item h3::before {
    content: '▸';
    color: var(--accent-cyan);
    font-size: 12px;
}

.info-item p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.info-item.positive {
    border-left: none;
}

.info-item.positive::before {
    background: var(--accent-green);
}

.info-item.positive:hover::before {
    background: linear-gradient(180deg, var(--accent-green), #10b981);
}

.info-item.positive h3::before {
    color: var(--accent-green);
}

.info-item.negative {
    border-left: none;
}

.info-item.negative::before {
    background: var(--accent-gold);
}

.info-item.negative:hover::before {
    background: linear-gradient(180deg, var(--accent-gold), #f59e0b);
}

.info-item.negative h3::before {
    color: var(--accent-gold);
}

/* 分析网格 */
.market-position > p,
.financial-performance > p,
.strategic-insights > p,
.future-outlook > p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 24px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(8, 145, 178, 0.06), rgba(124, 58, 237, 0.04));
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--accent-cyan);
}

.market-position h2,
.financial-performance h2,
.strategic-insights h2,
.future-outlook h2 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--accent-cyan);
    position: relative;
}

.market-position h2::after,
.financial-performance h2::after,
.strategic-insights h2::after,
.future-outlook h2::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-purple));
    border-radius: 2px;
}

.analysis-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 20px;
}

.analysis-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
}

.analysis-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-purple));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.analysis-item:hover {
    border-color: rgba(8, 145, 178, 0.3);
    box-shadow: 0 6px 20px rgba(8, 145, 178, 0.12);
    transform: translateY(-3px);
}

.analysis-item:hover::before {
    transform: scaleX(1);
}

.analysis-item h3 {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px dashed var(--border-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.analysis-item h3::before {
    content: '◈';
    font-size: 12px;
    color: var(--accent-cyan);
}

.analysis-item p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* 图表区域 */
.charts-row {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 16px;
    margin-bottom: 20px;
    overflow-x: hidden;
}

.chart-block {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 20px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.chart-header h3 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.chart-tag {
    padding: 2px 8px;
    background: rgba(8, 145, 178, 0.1);
    border-radius: 4px;
    font-size: 10px;
    color: var(--accent-cyan);
    font-family: var(--font-mono);
}

/* 详情介绍区域 */
.detail-intro {
    background: linear-gradient(135deg, rgba(8, 145, 178, 0.08), rgba(124, 58, 237, 0.05));
    border-left: 4px solid var(--accent-cyan);
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
    padding: 20px 24px;
    margin-bottom: 24px;
}

.detail-intro p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-secondary);
}

/* 特点网格 */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 28px;
}

.feature-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 24px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
}

.feature-item:hover {
    border-color: rgba(8, 145, 178, 0.3);
    box-shadow: 0 6px 16px rgba(8, 145, 178, 0.12);
    transform: translateY(-3px);
}

.feature-item h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid;
    border-image: linear-gradient(90deg, var(--accent-cyan), var(--accent-purple)) 1;
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-item h3::before {
    content: '◆';
    font-size: 10px;
    color: var(--accent-cyan);
}

.feature-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-item li {
    padding: 10px 0;
    font-size: 13px;
    color: var(--text-secondary);
    border-bottom: 1px dashed var(--border-color);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.6;
}

.feature-item li:last-child {
    border-bottom: none;
}

.feature-item li::before {
    content: '●';
    color: var(--accent-cyan);
    font-size: 8px;
    margin-top: 6px;
    flex-shrink: 0;
}

.feature-item li strong {
    color: var(--text-primary);
    font-weight: 600;
    min-width: 100px;
}

/* 游戏案例 */
.game-examples {
    margin-bottom: 28px;
}

.game-examples > h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--accent-cyan);
    display: inline-block;
}

.game-examples > h3::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-purple));
    margin-top: 8px;
    border-radius: 2px;
}

.example-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.example-card:hover {
    border-color: rgba(8, 145, 178, 0.4);
    box-shadow: 0 8px 24px rgba(8, 145, 178, 0.15);
    transform: translateX(4px);
}

.example-header {
    background: linear-gradient(90deg, rgba(8, 145, 178, 0.1), rgba(124, 58, 237, 0.08));
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
}

.example-header h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.example-tag {
    display: inline-block;
    padding: 4px 12px;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.example-content {
    padding: 20px;
}

.example-content p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 12px;
    padding-left: 16px;
    border-left: 3px solid var(--border-color);
    transition: all 0.2s ease;
}

.example-content p:hover {
    border-left-color: var(--accent-cyan);
    color: var(--text-primary);
}

.example-content p:last-child {
    margin-bottom: 0;
}

.example-content p strong {
    color: var(--accent-cyan);
    font-weight: 600;
}

/* 市场分析 */
.market-analysis {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.market-analysis h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--accent-purple);
    display: inline-block;
}

.market-analysis h3::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-purple), var(--accent-pink));
    margin-top: 8px;
    border-radius: 2px;
}

/* 发展趋势 */
.development-trends {
    margin-bottom: 24px;
}

.trend-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
}

.trend-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 20px;
    display: flex;
    gap: 16px;
    transition: all 0.3s ease;
}

.trend-item:hover {
    border-color: rgba(8, 145, 178, 0.3);
    box-shadow: 0 4px 12px rgba(8, 145, 178, 0.1);
    transform: translateY(-2px);
}

.trend-icon {
    font-size: 28px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(8, 145, 178, 0.1), rgba(124, 58, 237, 0.1));
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

.trend-content h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.trend-content p {
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* 环形图 */
.donut-chart-container {
    display: flex;
    align-items: center;
    gap: 24px;
}

.donut-chart {
    width: 160px;
    height: 160px;
    position: relative;
    flex-shrink: 0;
}

.donut-chart svg {
    transform: rotate(-90deg);
}

.donut-segment {
    animation: donutGrow 0.8s ease-out forwards;
}

@keyframes donutGrow {
    from { stroke-dasharray: 0 251.2; }
    to { stroke-dasharray: inherit; }
}

.donut-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.donut-value {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    font-family: var(--font-mono);
}

.donut-label {
    font-size: 11px;
    color: var(--text-muted);
}

.chart-legend {
    flex: 1;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    font-size: 12px;
    color: var(--text-secondary);
}

.legend-color {
    width: 10px;
    height: 10px;
    border-radius: 2px;
}

/* 柱状图 */
.bar-chart {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 180px;
    padding-top: 24px;
    gap: 8px;
}

.bar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    height: 100%;
}

.bar {
    width: 100%;
    max-width: 45px;
    background: linear-gradient(180deg, var(--accent-cyan), #0ea5e9);
    border-radius: 4px 4px 0 0;
    position: relative;
    transition: all 0.3s;
    animation: barGrow 0.8s ease-out forwards;
    animation-delay: var(--delay, 0s);
    min-height: 20px;
}

@keyframes barGrow {
    from { height: 0; }
}

.bar.active {
    background: linear-gradient(180deg, var(--accent-cyan), var(--accent-blue));
    box-shadow: 0 4px 12px rgba(8, 145, 178, 0.3);
}

.bar:hover {
    filter: brightness(1.2);
}

.bar-value {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 9px;
    font-family: var(--font-mono);
    color: var(--text-secondary);
    white-space: nowrap;
}

.bar-label {
    margin-top: 6px;
    font-size: 10px;
    color: var(--text-muted);
}

/* 图表容器通用样式 */
.chart-container {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.chart-container h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--accent-cyan);
    display: inline-block;
}

.chart-container h3::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-purple));
    margin-top: 8px;
    border-radius: 2px;
}

.chart-caption {
    font-size: 12px;
    color: var(--text-muted);
    text-align: center;
    margin-top: 16px;
    padding-top: 12px;
    border-top: 1px dashed var(--border-color);
}

/* 横向柱状图 (bar-chart) */
.bar-chart {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 10px 0;
}

.bar-chart-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.bar-chart-label {
    min-width: 80px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-primary);
    text-align: right;
}

.bar-chart-bar-container {
    flex: 1;
    height: 28px;
    background: var(--bg-secondary);
    border-radius: 14px;
    overflow: hidden;
    position: relative;
}

.bar-chart-bar {
    height: 100%;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 12px;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

.bar-chart-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2));
}

.bar-chart-bar:hover {
    filter: brightness(1.1);
    transform: scaleX(1.02);
    transform-origin: left;
}

.bar-chart-value {
    font-size: 11px;
    font-weight: 600;
    color: #fff;
    font-family: var(--font-mono);
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

/* 散点图 */
.scatter-chart {
    position: relative;
    height: 280px;
    background: 
        linear-gradient(90deg, var(--border-color) 1px, transparent 1px),
        linear-gradient(var(--border-color) 1px, transparent 1px);
    background-size: 25% 25%;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
}

.scatter-item {
    position: absolute;
    transform: translate(-50%, 50%);
}

.scatter-point {
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 2px 8px rgba(8, 145, 178, 0.4);
    animation: pulse 2s infinite;
}

.scatter-label {
    position: absolute;
    left: 30px;
    top: -10px;
    font-size: 11px;
    color: var(--text-secondary);
    white-space: nowrap;
    background: var(--bg-card);
    padding: 4px 8px;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* 雷达图/水平进度条 */
.radar-chart {
    padding: 20px 0;
}

.radar-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.radar-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.radar-label {
    min-width: 80px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-primary);
    text-align: right;
}

.radar-bar {
    flex: 1;
    height: 24px;
    background: var(--bg-secondary);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.radar-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    border-radius: 12px;
    transition: width 1s ease;
}

.radar-beijing .radar-bar::after {
    width: 90%;
    background: linear-gradient(90deg, var(--accent-cyan), #0ea5e9);
}

.radar-second .radar-bar::after {
    width: 70%;
    background: linear-gradient(90deg, var(--accent-purple), #a855f7);
}

.radar-third .radar-bar::after {
    width: 50%;
    background: linear-gradient(90deg, var(--accent-gold), #f59e0b);
}

.radar-rural .radar-bar::after {
    width: 30%;
    background: linear-gradient(90deg, var(--accent-green), #10b981);
}

/* 对比柱状图 */
.comparison-bar-chart {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.comparison-group {
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    padding: 20px;
}

.comparison-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--accent-cyan);
}

.comparison-bar-item {
    margin-bottom: 12px;
}

.comparison-label {
    display: block;
    font-size: 12px;
    color: var(--text-secondary);
    margin-bottom: 6px;
}

.comparison-bar {
    height: 24px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 10px;
    transition: all 0.3s ease;
}

.comparison-bar.male {
    background: linear-gradient(90deg, #2563eb, #3b82f6);
}

.comparison-bar.female {
    background: linear-gradient(90deg, #db2777, #ec4899);
}

.comparison-bar:hover {
    filter: brightness(1.1);
    transform: scaleX(1.02);
    transform-origin: left;
}

.comparison-value {
    font-size: 11px;
    font-weight: 600;
    color: #fff;
    font-family: var(--font-mono);
}

/* 图表行样式 (chart-row) */
.chart-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 14px;
    padding: 8px 0;
}

.chart-row .chart-label {
    min-width: 100px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-primary);
}

.chart-row .chart-bar-container {
    flex: 1;
    height: 28px;
    background: var(--bg-secondary);
    border-radius: 14px;
    overflow: hidden;
}

.chart-row .chart-bar {
    height: 100%;
    border-radius: 14px;
    display: flex;
    align-items: center;
    padding-left: 12px;
    transition: all 0.3s ease;
}

.chart-row .chart-bar:hover {
    filter: brightness(1.1);
    transform: scaleX(1.02);
    transform-origin: left;
}

.chart-row .chart-bar.danger {
    background: linear-gradient(90deg, #dc2626, #ef4444);
}

.chart-row .chart-bar.warning {
    background: linear-gradient(90deg, #d97706, #f59e0b);
}

.chart-row .chart-bar.primary {
    background: linear-gradient(90deg, #2563eb, #3b82f6);
}

.chart-row .chart-bar.info {
    background: linear-gradient(90deg, #0891b2, #0ea5e9);
}

.chart-row .chart-bar.success {
    background: linear-gradient(90deg, #059669, #10b981);
}

.chart-row .chart-value {
    min-width: 50px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
    text-align: right;
}

/* 平台对比卡片 */
.platform-comparison-chart {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.platform-card {
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.platform-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent-cyan);
    box-shadow: 0 8px 20px rgba(8, 145, 178, 0.15);
}

.platform-icon {
    font-size: 36px;
    margin-bottom: 12px;
}

.platform-card h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.platform-stats {
    text-align: left;
}

.platform-stat-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px dashed var(--border-color);
    font-size: 12px;
}

.platform-stat-row:last-child {
    border-bottom: none;
}

.platform-stat-row span:first-child {
    color: var(--text-muted);
}

.platform-stat-row span:last-child {
    font-weight: 600;
    color: var(--text-primary);
    font-family: var(--font-mono);
}

/* 分隔市场增长图表 */
.growth-comparison-chart {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.growth-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.growth-label {
    min-width: 120px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-primary);
}

.growth-bar-container {
    flex: 1;
    height: 32px;
    background: var(--bg-secondary);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.growth-bar {
    height: 100%;
    border-radius: 16px;
    display: flex;
    align-items: center;
    padding-left: 16px;
    transition: all 0.5s ease;
}

.growth-bar:hover {
    filter: brightness(1.1);
}

.growth-value {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    font-family: var(--font-mono);
}

/* 数据表格 */
.data-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.data-table th,
.data-table td {
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
}

.data-table th {
    background: linear-gradient(135deg, rgba(8, 145, 178, 0.12), rgba(124, 58, 237, 0.08));
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--accent-cyan);
    font-family: var(--font-mono);
    white-space: nowrap;
    position: sticky;
    top: 0;
    z-index: 10;
}

.data-table th:first-child {
    border-top-left-radius: var(--radius-lg);
}

.data-table th:last-child {
    border-top-right-radius: var(--radius-lg);
}

.data-table td {
    color: var(--text-secondary);
    transition: all 0.2s ease;
}

.data-table tbody tr {
    transition: all 0.2s ease;
}

.data-table tbody tr:nth-child(even) {
    background: rgba(8, 145, 178, 0.02);
}

.data-table tbody tr:hover {
    background: linear-gradient(90deg, rgba(8, 145, 178, 0.08), rgba(124, 58, 237, 0.05));
}

.data-table tbody tr:hover td {
    color: var(--text-primary);
}

.data-table td:first-child {
    font-weight: 600;
    color: var(--text-primary);
}

.data-table tbody tr:last-child td:first-child {
    border-bottom-left-radius: var(--radius-lg);
}

.data-table tbody tr:last-child td:last-child {
    border-bottom-right-radius: var(--radius-lg);
}

.data-table tbody tr:last-child td {
    border-bottom: none;
}

/* 表格容器 - 可滚动 */
.table-container {
    overflow-x: auto;
    margin-bottom: 20px;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.table-container .data-table {
    margin-bottom: 0;
    border-radius: 0;
    border: none;
}

/* 表格行高亮样式 */
.data-table tr.priority-high td {
    background: rgba(220, 38, 38, 0.05);
}

.data-table tr.priority-high:hover td {
    background: rgba(220, 38, 38, 0.1);
}

.data-table tr.priority-medium td {
    background: rgba(217, 119, 6, 0.05);
}

.data-table tr.priority-medium:hover td {
    background: rgba(217, 119, 6, 0.1);
}

.data-table tr.priority-low td {
    background: rgba(5, 150, 105, 0.05);
}

.data-table tr.priority-low:hover td {
    background: rgba(5, 150, 105, 0.1);
}

/* 表格状态标签 */
.table-tag {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.table-tag.success {
    background: rgba(5, 150, 105, 0.15);
    color: #059669;
}

.table-tag.warning {
    background: rgba(217, 119, 6, 0.15);
    color: #d97706;
}

.table-tag.danger {
    background: rgba(220, 38, 38, 0.15);
    color: #dc2626;
}

.table-tag.info {
    background: rgba(8, 145, 178, 0.15);
    color: #0891b2;
}

.table-tag.primary {
    background: rgba(37, 99, 235, 0.15);
    color: #2563eb;
}

/* 通用表格样式 - 覆盖所有表格类 */
table.market-summary-table,
table.company-info-table,
table.market-table,
table.finance-table,
table.impact-table,
table.outlook-table,
table.overview-table,
table.investment-table,
table.strategy-table,
table.social-impact-table,
table.response-table,
table.future-trend-table,
table.audience-table,
table.demographic-table,
table.behavior-table,
table.income-table,
table.regional-table,
table.gender-table,
table.device-table,
table.psychology-table,
table.market-insights-table,
table.market-segment-table,
table.game-type-table,
table.market-detail-table,
table.genre-fusion-table,
table.market-insight-table,
table.challenge-table,
table.funding-table,
table.tech-table,
table.marketing-table,
table.advice-table,
table.tech-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

table.market-summary-table th,
table.company-info-table th,
table.market-table th,
table.finance-table th,
table.impact-table th,
table.outlook-table th,
table.overview-table th,
table.investment-table th,
table.strategy-table th,
table.social-impact-table th,
table.response-table th,
table.future-trend-table th,
table.audience-table th,
table.demographic-table th,
table.behavior-table th,
table.income-table th,
table.regional-table th,
table.gender-table th,
table.device-table th,
table.psychology-table th,
table.market-insights-table th,
table.market-segment-table th,
table.game-type-table th,
table.market-detail-table th,
table.genre-fusion-table th,
table.market-insight-table th,
table.challenge-table th,
table.funding-table th,
table.tech-table th,
table.marketing-table th,
table.advice-table th {
    background: linear-gradient(135deg, rgba(8, 145, 178, 0.12), rgba(124, 58, 237, 0.08));
    font-weight: 600;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--accent-cyan);
    font-family: var(--font-mono);
    padding: 14px 16px;
    text-align: left;
    border-bottom: 2px solid rgba(8, 145, 178, 0.2);
    white-space: nowrap;
}

table.market-summary-table td,
table.company-info-table td,
table.market-table td,
table.finance-table td,
table.impact-table td,
table.outlook-table td,
table.overview-table td,
table.investment-table td,
table.strategy-table td,
table.social-impact-table td,
table.response-table td,
table.future-trend-table td,
table.audience-table td,
table.demographic-table td,
table.behavior-table td,
table.income-table td,
table.regional-table td,
table.gender-table td,
table.device-table td,
table.psychology-table td,
table.market-insights-table td,
table.market-segment-table td,
table.game-type-table td,
table.market-detail-table td,
table.genre-fusion-table td,
table.market-insight-table td,
table.challenge-table td,
table.funding-table td,
table.tech-table td,
table.marketing-table td,
table.advice-table td {
    padding: 12px 16px;
    font-size: 13px;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-color);
    transition: all 0.2s ease;
}

table.market-summary-table tbody tr,
table.company-info-table tbody tr,
table.market-table tbody tr,
table.finance-table tbody tr,
table.impact-table tbody tr,
table.outlook-table tbody tr,
table.overview-table tbody tr,
table.investment-table tbody tr,
table.strategy-table tbody tr,
table.social-impact-table tbody tr,
table.response-table tbody tr,
table.future-trend-table tbody tr,
table.audience-table tbody tr,
table.demographic-table tbody tr,
table.behavior-table tbody tr,
table.income-table tbody tr,
table.regional-table tbody tr,
table.gender-table tbody tr,
table.device-table tbody tr,
table.psychology-table tbody tr,
table.market-insights-table tbody tr,
table.market-segment-table tbody tr,
table.game-type-table tbody tr,
table.market-detail-table tbody tr,
table.genre-fusion-table tbody tr,
table.market-insight-table tbody tr,
table.challenge-table tbody tr,
table.funding-table tbody tr,
table.tech-table tbody tr,
table.marketing-table tbody tr,
table.advice-table tbody tr {
    transition: all 0.2s ease;
}

table.market-summary-table tbody tr:nth-child(even),
table.company-info-table tbody tr:nth-child(even),
table.market-table tbody tr:nth-child(even),
table.finance-table tbody tr:nth-child(even),
table.impact-table tbody tr:nth-child(even),
table.outlook-table tbody tr:nth-child(even),
table.overview-table tbody tr:nth-child(even),
table.investment-table tbody tr:nth-child(even),
table.strategy-table tbody tr:nth-child(even),
table.social-impact-table tbody tr:nth-child(even),
table.response-table tbody tr:nth-child(even),
table.future-trend-table tbody tr:nth-child(even),
table.audience-table tbody tr:nth-child(even),
table.demographic-table tbody tr:nth-child(even),
table.behavior-table tbody tr:nth-child(even),
table.income-table tbody tr:nth-child(even),
table.regional-table tbody tr:nth-child(even),
table.gender-table tbody tr:nth-child(even),
table.device-table tbody tr:nth-child(even),
table.psychology-table tbody tr:nth-child(even),
table.market-insights-table tbody tr:nth-child(even),
table.market-segment-table tbody tr:nth-child(even),
table.game-type-table tbody tr:nth-child(even),
table.market-detail-table tbody tr:nth-child(even),
table.genre-fusion-table tbody tr:nth-child(even),
table.market-insight-table tbody tr:nth-child(even),
table.challenge-table tbody tr:nth-child(even),
table.funding-table tbody tr:nth-child(even),
table.tech-table tbody tr:nth-child(even),
table.marketing-table tbody tr:nth-child(even),
table.advice-table tbody tr:nth-child(even) {
    background: rgba(8, 145, 178, 0.02);
}

table.market-summary-table tbody tr:hover,
table.company-info-table tbody tr:hover,
table.market-table tbody tr:hover,
table.finance-table tbody tr:hover,
table.impact-table tbody tr:hover,
table.outlook-table tbody tr:hover,
table.overview-table tbody tr:hover,
table.investment-table tbody tr:hover,
table.strategy-table tbody tr:hover,
table.social-impact-table tbody tr:hover,
table.response-table tbody tr:hover,
table.future-trend-table tbody tr:hover,
table.audience-table tbody tr:hover,
table.demographic-table tbody tr:hover,
table.behavior-table tbody tr:hover,
table.income-table tbody tr:hover,
table.regional-table tbody tr:hover,
table.gender-table tbody tr:hover,
table.device-table tbody tr:hover,
table.psychology-table tbody tr:hover,
table.market-insights-table tbody tr:hover,
table.market-segment-table tbody tr:hover,
table.game-type-table tbody tr:hover,
table.market-detail-table tbody tr:hover,
table.genre-fusion-table tbody tr:hover,
table.market-insight-table tbody tr:hover,
table.challenge-table tbody tr:hover,
table.funding-table tbody tr:hover,
table.tech-table tbody tr:hover,
table.marketing-table tbody tr:hover,
table.advice-table tbody tr:hover {
    background: linear-gradient(90deg, rgba(8, 145, 178, 0.08), rgba(124, 58, 237, 0.05));
}

table.market-summary-table tbody tr:hover td,
table.company-info-table tbody tr:hover td,
table.market-table tbody tr:hover td,
table.finance-table tbody tr:hover td,
table.impact-table tbody tr:hover td,
table.outlook-table tbody tr:hover td,
table.overview-table tbody tr:hover td,
table.investment-table tbody tr:hover td,
table.strategy-table tbody tr:hover td,
table.social-impact-table tbody tr:hover td,
table.response-table tbody tr:hover td,
table.future-trend-table tbody tr:hover td,
table.audience-table tbody tr:hover td,
table.demographic-table tbody tr:hover td,
table.behavior-table tbody tr:hover td,
table.income-table tbody tr:hover td,
table.regional-table tbody tr:hover td,
table.gender-table tbody tr:hover td,
table.device-table tbody tr:hover td,
table.psychology-table tbody tr:hover td,
table.market-insights-table tbody tr:hover td,
table.market-segment-table tbody tr:hover td,
table.game-type-table tbody tr:hover td,
table.market-detail-table tbody tr:hover td,
table.genre-fusion-table tbody tr:hover td,
table.market-insight-table tbody tr:hover td,
table.challenge-table tbody tr:hover td,
table.funding-table tbody tr:hover td,
table.tech-table tbody tr:hover td,
table.marketing-table tbody tr:hover td,
table.advice-table tbody tr:hover td {
    color: var(--text-primary);
}

table.market-summary-table td:first-child,
table.company-info-table td:first-child,
table.market-table td:first-child,
table.finance-table td:first-child,
table.impact-table td:first-child,
table.outlook-table td:first-child,
table.overview-table td:first-child,
table.investment-table td:first-child,
table.strategy-table td:first-child,
table.social-impact-table td:first-child,
table.response-table td:first-child,
table.future-trend-table td:first-child,
table.audience-table td:first-child,
table.demographic-table td:first-child,
table.behavior-table td:first-child,
table.income-table td:first-child,
table.regional-table td:first-child,
table.gender-table td:first-child,
table.device-table td:first-child,
table.psychology-table td:first-child,
table.market-insights-table td:first-child,
table.market-segment-table td:first-child,
table.game-type-table td:first-child,
table.market-detail-table td:first-child,
table.genre-fusion-table td:first-child,
table.market-insight-table td:first-child,
table.challenge-table td:first-child,
table.funding-table td:first-child,
table.tech-table td:first-child,
table.marketing-table td:first-child,
table.advice-table td:first-child {
    font-weight: 600;
    color: var(--text-primary);
}

/* player-audience.html 专用表格样式 */
table.heatmap-table,
table.technology-impact-table,
table.time-table,
table.strategy-recommendation-table,
table.future-trends-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

table.heatmap-table th,
table.technology-impact-table th,
table.time-table th,
table.strategy-recommendation-table th,
table.future-trends-table th {
    background: linear-gradient(135deg, rgba(8, 145, 178, 0.12), rgba(124, 58, 237, 0.08));
    font-weight: 600;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--accent-cyan);
    font-family: var(--font-mono);
    padding: 14px 16px;
    text-align: left;
    border-bottom: 2px solid rgba(8, 145, 178, 0.2);
    white-space: nowrap;
}

table.heatmap-table td,
table.technology-impact-table td,
table.time-table td,
table.strategy-recommendation-table td,
table.future-trends-table td {
    padding: 12px 16px;
    font-size: 13px;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-color);
    transition: all 0.2s ease;
}

table.heatmap-table tbody tr,
table.technology-impact-table tbody tr,
table.time-table tbody tr,
table.strategy-recommendation-table tbody tr,
table.future-trends-table tbody tr {
    transition: all 0.2s ease;
}

table.heatmap-table tbody tr:nth-child(even),
table.technology-impact-table tbody tr:nth-child(even),
table.time-table tbody tr:nth-child(even),
table.strategy-recommendation-table tbody tr:nth-child(even),
table.future-trends-table tbody tr:nth-child(even) {
    background: rgba(8, 145, 178, 0.02);
}

table.heatmap-table tbody tr:hover,
table.technology-impact-table tbody tr:hover,
table.time-table tbody tr:hover,
table.strategy-recommendation-table tbody tr:hover,
table.future-trends-table tbody tr:hover {
    background: linear-gradient(90deg, rgba(8, 145, 178, 0.08), rgba(124, 58, 237, 0.05));
}

table.heatmap-table tbody tr:hover td,
table.technology-impact-table tbody tr:hover td,
table.time-table tbody tr:hover td,
table.strategy-recommendation-table tbody tr:hover td,
table.future-trends-table tbody tr:hover td {
    color: var(--text-primary);
}

table.heatmap-table td:first-child,
table.technology-impact-table td:first-child,
table.time-table td:first-child,
table.strategy-recommendation-table td:first-child,
table.future-trends-table td:first-child {
    font-weight: 600;
    color: var(--text-primary);
}

.rank {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: var(--bg-secondary);
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    font-family: var(--font-mono);
}

.rank-1 { background: linear-gradient(135deg, #f59e0b, #fbbf24); color: #000; }
.rank-2 { background: linear-gradient(135deg, #94a3b8, #cbd5e1); color: #000; }
.rank-3 { background: linear-gradient(135deg, #b45309, #d97706); color: #fff; }

.trend-up { color: var(--accent-green); font-weight: 600; font-family: var(--font-mono); }
.trend-down { color: var(--accent-red); font-weight: 600; font-family: var(--font-mono); }

/* tech-analysis.html 表格样式 */
table.table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 24px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

table.table th {
    background: linear-gradient(135deg, rgba(8, 145, 178, 0.12), rgba(124, 58, 237, 0.08));
    font-weight: 600;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--accent-cyan);
    font-family: var(--font-mono);
    padding: 14px 16px;
    text-align: left;
    border-bottom: 2px solid rgba(8, 145, 178, 0.2);
    white-space: nowrap;
}

table.table td {
    padding: 14px 16px;
    font-size: 13px;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-color);
    transition: all 0.2s ease;
    vertical-align: top;
}

table.table tbody tr {
    transition: all 0.2s ease;
}

table.table tbody tr:nth-child(even) {
    background: rgba(8, 145, 178, 0.02);
}

table.table tbody tr:hover {
    background: linear-gradient(90deg, rgba(8, 145, 178, 0.08), rgba(124, 58, 237, 0.05));
}

table.table tbody tr:hover td {
    color: var(--text-primary);
}

table.table td:first-child {
    font-weight: 600;
    color: var(--text-primary);
}

table.table td ul {
    margin: 0;
    padding-left: 0;
    list-style: none;
}

table.table td li {
    margin-bottom: 6px;
    font-size: 12px;
    line-height: 1.5;
    padding-left: 14px;
    position: relative;
}

table.table td li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--accent-cyan);
    font-size: 10px;
}

table.table td li:last-child {
    margin-bottom: 0;
}

table.table td strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* policy-impact.html 表格样式 */
table.policy-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

table.policy-table th {
    background: linear-gradient(135deg, rgba(8, 145, 178, 0.12), rgba(124, 58, 237, 0.08));
    font-weight: 600;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--accent-cyan);
    font-family: var(--font-mono);
    padding: 14px 16px;
    text-align: left;
    border-bottom: 2px solid rgba(8, 145, 178, 0.2);
    white-space: nowrap;
}

table.policy-table td {
    padding: 12px 16px;
    font-size: 13px;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-color);
    transition: all 0.2s ease;
    vertical-align: top;
    line-height: 1.6;
}

table.policy-table tbody tr {
    transition: all 0.2s ease;
}

table.policy-table tbody tr:nth-child(even) {
    background: rgba(8, 145, 178, 0.02);
}

table.policy-table tbody tr:hover {
    background: linear-gradient(90deg, rgba(8, 145, 178, 0.08), rgba(124, 58, 237, 0.05));
}

table.policy-table tbody tr:hover td {
    color: var(--text-primary);
}

table.policy-table td:first-child {
    font-weight: 600;
    color: var(--text-primary);
}

table.policy-table td strong {
    color: var(--text-primary);
    font-weight: 600;
}

table.policy-table td:only-child {
    padding: 0;
}

table.policy-table td table {
    margin: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    border-radius: 0;
}

table.policy-table td table tr {
    background: transparent;
}

table.policy-table td table tr:hover {
    background: transparent;
}

table.policy-table td table td {
    padding: 8px 12px;
    font-size: 12px;
    border-bottom: 1px dashed var(--border-color);
}

table.policy-table td table tr:last-child td {
    border-bottom: none;
}

table.policy-table td table td:first-child {
    width: 100px;
    white-space: nowrap;
}

/* policy-impact.html 经济影响量化分析样式 */
.economic-impact .radar-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 24px;
}

/* micro-dev-strategy.html 区块标题样式 */
.overview > h2,
.challenges > h2,
.survival-strategies > h2,
.success-cases > h2,
.funding-management > h2,
.technology-choice > h2,
.marketing-positioning > h2,
.development-advice > h2,
.future-outlook > h2 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--accent-cyan);
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
}

.overview > h2::before,
.challenges > h2::before,
.survival-strategies > h2::before,
.success-cases > h2::before,
.funding-management > h2::before,
.technology-choice > h2::before,
.marketing-positioning > h2::before,
.development-advice > h2::before,
.future-outlook > h2::before {
    content: '◆';
    font-size: 12px;
    color: var(--accent-cyan);
}

.overview > h2::after,
.challenges > h2::after,
.survival-strategies > h2::after,
.success-cases > h2::after,
.funding-management > h2::after,
.technology-choice > h2::after,
.marketing-positioning > h2::after,
.development-advice > h2::after,
.future-outlook > h2::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-purple));
    border-radius: 2px;
}

/* micro-dev-strategy.html 成功案例样式 */
.success-cases {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 24px;
}

.success-cases > h2 {
    margin-bottom: 8px;
}

.success-cases > .case-study-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.success-cases .case-study {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.success-cases .case-study::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-purple));
}

.success-cases .case-study:hover {
    border-color: rgba(8, 145, 178, 0.4);
    box-shadow: 0 12px 32px rgba(8, 145, 178, 0.15);
    transform: translateY(-4px);
}

.success-cases .case-study h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--accent-cyan);
    display: flex;
    align-items: center;
    gap: 12px;
}

.success-cases .case-study h3::before {
    content: '▸';
    font-size: 16px;
    color: var(--accent-cyan);
}

.success-cases .case-study p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.success-cases .case-study ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.success-cases .case-study li {
    padding: 16px 20px;
    background: linear-gradient(135deg, rgba(8, 145, 178, 0.06), rgba(124, 58, 237, 0.04));
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    font-size: 13px;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.success-cases .case-study li:last-child {
    margin-bottom: 0;
}

.success-cases .case-study li:hover {
    background: linear-gradient(135deg, rgba(8, 145, 178, 0.12), rgba(124, 58, 237, 0.08));
    border-left-color: var(--accent-cyan);
    color: var(--text-primary);
    transform: translateX(4px);
}

.success-cases .case-study li strong {
    color: var(--accent-cyan);
    font-weight: 600;
    display: block;
    margin-bottom: 4px;
}

.economic-impact .radar-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 24px 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.economic-impact .radar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-purple));
}

.economic-impact .radar-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(8, 145, 178, 0.15);
    border-color: rgba(8, 145, 178, 0.3);
}

.economic-impact .radar-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px dashed var(--border-color);
}

.economic-impact .radar-score {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    padding: 16px;
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    font-family: var(--font-mono);
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.economic-impact .radar-card div:last-child {
    font-size: 12px;
    color: var(--text-muted);
}

/* policy-impact.html 核心要点样式 */
.key-takeaways {
    background: linear-gradient(135deg, rgba(8, 145, 178, 0.08), rgba(124, 58, 237, 0.05));
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 20px;
    border-left: 4px solid var(--accent-cyan);
}

.key-takeaways h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--accent-cyan);
    display: flex;
    align-items: center;
    gap: 10px;
}

.key-takeaways h3::before {
    content: '◆';
    font-size: 12px;
    color: var(--accent-cyan);
}

.key-takeaways ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.key-takeaways li {
    padding: 16px 20px;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.key-takeaways li::before {
    content: '▸';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent-cyan);
    font-size: 12px;
    opacity: 0;
    transition: all 0.3s ease;
}

.key-takeaways li:last-child {
    margin-bottom: 0;
}

.key-takeaways li:hover {
    border-color: rgba(8, 145, 178, 0.3);
    box-shadow: 0 4px 12px rgba(8, 145, 178, 0.1);
    transform: translateX(4px);
    color: var(--text-primary);
}

.key-takeaways li:hover::before {
    opacity: 1;
    left: 12px;
}

.key-takeaways li strong {
    color: var(--accent-cyan);
    font-weight: 600;
}

/* policy-impact.html 总结段落样式 */
.conclusion > p {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 20px 24px;
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-secondary);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

/* tech-analysis.html 区块标题样式 */
.tech-analysis-section {
    margin-bottom: 24px;
    overflow-x: hidden;
}

.tech-analysis-section > h2 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--accent-cyan);
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
}

.tech-analysis-section > h2::before {
    content: '◆';
    font-size: 12px;
    color: var(--accent-cyan);
}

.tech-analysis-section > h2::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-purple));
    border-radius: 2px;
}

/* 区块内的卡片 */
.tech-analysis-section .card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
}

.tech-analysis-section .card-text {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-secondary);
}

/* 热力图 */
.heatmap-grid {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.heatmap-row {
    display: grid;
    grid-template-columns: 140px repeat(4, 1fr);
    border-bottom: 1px solid var(--border-color);
}

.heatmap-row:nth-child(even) {
    background: var(--bg-secondary);
}

.heatmap-row:last-child {
    border-bottom: none;
}

.heatmap-header {
    background: rgba(8, 145, 178, 0.06);
}

.heatmap-cell {
    padding: 14px 16px;
    font-size: 14px;
    border-right: 1px solid var(--border-color);
    display: flex;
    align-items: center;
}

.heatmap-cell:last-child {
    border-right: none;
}

.heatmap-header .heatmap-cell {
    font-weight: 600;
    color: var(--accent-cyan);
    font-family: var(--font-mono);
    font-size: 12px;
    background: rgba(8, 145, 178, 0.08);
}

.heat-bar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    background: var(--bg-secondary);
    border-radius: 4px;
    font-family: var(--font-mono);
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    min-width: 60px;
    border: 1px solid var(--border-color);
}

.heat-bar::before {
    display: none;
}

.heat-bar.high {
    background: linear-gradient(135deg, rgba(8, 145, 178, 0.15), rgba(124, 58, 237, 0.15));
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
}

.heat-bar.high {
    color: var(--accent-cyan);
}

/* 两列布局 */
.two-col-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 16px;
    margin-bottom: 20px;
}

/* 饼图 */
.pie-chart-container {
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 16px 0;
}

.pie-chart {
    width: 140px;
    height: 140px;
    flex-shrink: 0;
}

.pie-chart svg {
    width: 100%;
    height: 100%;
}

.pie-legend {
    flex: 1;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-color);
}

.legend-item:last-child {
    border-bottom: none;
}

.legend-color {
    width: 14px;
    height: 14px;
    border-radius: 3px;
    flex-shrink: 0;
}

/* 垂直直方图 */
.bar-v-chart {
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    height: 180px;
    padding: 24px 8px 8px;
    gap: 12px;
}

.bar-v-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    height: 100%;
    max-width: 70px;
}

.bar-v {
    width: 100%;
    background: linear-gradient(180deg, #0891b2, #0ea5e9);
    border-radius: 4px 4px 0 0;
    position: relative;
    transition: all 0.3s;
    min-height: 20px;
    display: flex;
    justify-content: center;
}

.bar-v:hover {
    filter: brightness(1.1);
}

.bar-v-value {
    position: absolute;
    top: -22px;
    font-size: 12px;
    font-weight: 600;
    font-family: var(--font-mono);
    color: var(--text-primary);
}

.bar-v-label {
    margin-top: 8px;
    font-size: 11px;
    color: var(--text-muted);
    text-align: center;
}

/* 用户画像 */
.persona-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.persona-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 12px;
    transition: all 0.3s;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.persona-card:hover {
    border-color: rgba(8, 145, 178, 0.3);
    box-shadow: var(--glow-cyan);
    transform: translateY(-2px);
}

.persona-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border-color);
}

.persona-icon {
    font-size: 16px;
}

.persona-header h4 {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
}

.persona-data {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 10px;
}

.persona-stat {
    text-align: center;
}

.persona-value {
    display: block;
    font-size: 16px;
    font-weight: 700;
    font-family: var(--font-mono);
    color: var(--text-primary);
}

.persona-label {
    font-size: 11px;
    color: var(--text-muted);
}

.persona-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.persona-tags span {
    padding: 3px 8px;
    background: var(--bg-secondary);
    border-radius: 4px;
    font-size: 10px;
    color: var(--text-muted);
}

/* 时间线 */
.timeline {
    position: relative;
    padding-left: 24px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 6px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--accent-cyan), var(--accent-purple));
}

.timeline-item {
    position: relative;
    padding-bottom: 24px;
}

.timeline-marker {
    position: absolute;
    left: -24px;
    top: 4px;
    width: 14px;
    height: 14px;
    background: var(--bg-primary);
    border: 2px solid var(--accent-cyan);
    border-radius: 50%;
}

.timeline-item:nth-child(2) .timeline-marker { border-color: var(--accent-purple); }
.timeline-item:nth-child(3) .timeline-marker { border-color: var(--accent-pink); }
.timeline-item:nth-child(4) .timeline-marker { border-color: var(--accent-gold); }

.timeline-content {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 14px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.timeline-date {
    font-size: 11px;
    font-family: var(--font-mono);
    color: var(--accent-cyan);
    margin-bottom: 6px;
}

.timeline-content h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.timeline-content p {
    font-size: 12px;
    color: var(--text-muted);
}

/* 标签 */
.tag {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 500;
}

.tag-primary {
    background: rgba(8, 145, 178, 0.1);
    color: var(--accent-cyan);
}

.tag-success {
    background: rgba(5, 150, 105, 0.1);
    color: var(--accent-green);
}

.tag-warning {
    background: rgba(217, 119, 6, 0.1);
    color: var(--accent-gold);
}

/* 动画 */
.fade-in {
    animation: fadeIn 0.5s ease forwards;
    opacity: 0;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in-delay-1 { animation-delay: 0.1s; }
.fade-in-delay-2 { animation-delay: 0.2s; }
.fade-in-delay-3 { animation-delay: 0.3s; }
.fade-in-delay-4 { animation-delay: 0.4s; }

/* 响应式 */
@media (max-width: 1400px) {
    .stat-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .persona-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1200px) {
    .charts-row {
        grid-template-columns: 1fr;
    }
    
    .two-col-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .sidebar {
        width: 100%;
        position: relative;
        height: auto;
        border-right: none;
        border-bottom: 1px solid var(--border-color);
    }
    
    .main-content {
        margin-left: 0;
        padding: 16px;
    }
    
    .main-header h1 {
        font-size: 20px;
    }
    
    .stat-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .persona-grid {
        grid-template-columns: 1fr;
    }
    
    .heatmap-row {
        grid-template-columns: 1fr;
    }
    
    .donut-chart-container {
        flex-direction: column;
    }
}

/* 表格内列表样式优化 */
table td ul,
table td ol {
    margin: 0;
    padding-left: 18px;
}

table td li {
    margin-bottom: 4px;
    font-size: 13px;
    line-height: 1.5;
}

table td li:last-child {
    margin-bottom: 0;
}

/* 表格单元格内的strong标签样式 */
table td strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* 滚动条样式优化 */
.table-container::-webkit-scrollbar {
    height: 8px;
}

.table-container::-webkit-scrollbar-track {
    background: var(--bg-secondary);
    border-radius: 4px;
}

.table-container::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-purple));
    border-radius: 4px;
}

.table-container::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-pink));
}
