.stats {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.stats canvas { 
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.stats .content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 40px 10px;
    pointer-events: none;
}

.stats .content span {
    margin: 0 15px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
    pointer-events: auto;
    display: inline-block;
    transition: transform 0.3s ease;
}

.stats .content span:hover {
    transform: translateY(-2px);
}

.stats-text {
    color: #333; /* 深色文字 */
    font-size: 14px;
    z-index: 1000;
    transition: all 0.3s ease; /* 添加过渡效果 */
}

/* 悬浮效果增强 */
.stats-text:hover {
    color: #000; /* 悬浮时更深的颜色 */
    transform: translateY(-2px); /* 向上浮动效果 */
    text-shadow: 0 2px 4px rgba(0,0,0,0.1); /* 添加文字阴影 */
}

/* 波浪容器样式保持不变 */
.wave-container {
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    pointer-events: none;
}

/* 统计文字样式 */
.stats span,
.stats a {
    color: #333 !important; /* 使用 !important 确保样式生效 */
    font-size: 14px;
    z-index: 1000;
    position: relative;
    transition: all 0.3s ease;
}

/* 悬浮效果 */
.stats span:hover,
.stats a:hover {
    color: #000 !important;
    transform: translateY(-2px);
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

@media screen and (max-width: 768px) {
    .stats {
        height: 150px; /* 增加高度以适应更多内容 */
    }
    
    .stats .content {
        flex-direction: column;
        align-items: flex-start;
        padding: 10px;
    }
    
    .stats .content span {
        margin: 2px 0;
        font-size: 12px;
    }
}