/* 顶部滚动进度指示器 */
.scroll-indicator {
    height: 3px;
    background-color: #FBBF24; /* accent color */
    position: fixed;
    top: 0;
    left: 0;
    z-index: 60;
    width: 0%;
    transition: width 0.1s;
}

/* 头部英雄区渐变背景 */
.gradient-bg {
    background: linear-gradient(135deg, #1E3A8A 0%, #3B82F6 100%);
}

/* 数据统计卡片 */
.stat-card {
    background-color: white;
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid #f3f4f6;
    transition: all 0.3s ease;
}

.stat-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transform: translateY(-4px);
}

/* 浮动动画 */
.animate-appear-up {
    /* 初始状态：透明且在下方 30px 的位置 */
    opacity: 0;
    transform: translateY(30px);
    /* 应用动画：1秒完成，缓出效果，forwards表示动画结束后保持最终状态 */
    animation: appearUp 1s ease-out forwards;
}

@keyframes appearUp {
    to {
        /* 最终状态：完全不透明，回到原位 */
        opacity: 1;
        transform: translateY(0);
    }
}

/* 优化内容可见性 */
.content-auto {
    content-visibility: auto;
}