/* 统计模块样式 - 优化版本 */
.zibll-stats-box {
    width: 100%;
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.2);
}

.zibll-stats-header {
    text-align: center;
    margin-bottom: 20px;
}

.zibll-stats-header span {
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.zibll-stats-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 15px;
}

@media (max-width: 1200px) {
    .zibll-stats-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

@media (max-width: 900px) {
    .zibll-stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .zibll-stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    .zibll-stats-box {
        padding: 15px;
        margin: 10px;
    }
}

@media (max-width: 480px) {
    .zibll-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.zibll-stats-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.zibll-stats-item:hover {
    transform: translateY(-3px);
    background: rgba(255,255,255,0.25);
}

.zibll-stats-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.zibll-stats-icon i {
    color: #fff;
    font-size: 20px;
}

.zibll-stats-info {
    flex: 1;
    min-width: 0;
}

.zibll-stats-number {
    color: #fff;
    font-size: 22px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 5px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.08);
    white-space: nowrap;
    overflow: visible;
    text-overflow: clip;
    word-wrap: normal;
    word-break: keep-all;
}

.zibll-stats-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 12px;
    line-height: 1.1;
    font-weight: 500;
    white-space: nowrap;
}

/* 新增统计项样式 */
.zibll-stats-item.site-days .zibll-stats-icon {
    background: linear-gradient(135deg, #8e44ad 0%, #c0392b 100%);
}

.zibll-stats-item.today_publish_count .zibll-stats-icon {
    background: linear-gradient(135deg, #3498db 0%, #2ecc71 100%);
}

.zibll-stats-item.pending_comments .zibll-stats-icon {
    background: linear-gradient(135deg, #e74c3c 0%, #9b59b6 100%);
}

.zibll-stats-item.avg_view_count .zibll-stats-icon {
    background: linear-gradient(135deg, #1abc9c 0%, #16a085 100%);
}

.zibll-stats-item.hot_tag_count .zibll-stats-icon {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
}

.zibll-stats-item.link_count .zibll-stats-icon {
    background: linear-gradient(135deg, #38f9d7 0%, #43e97b 100%);
}

.zibll-stats-item.mobile_login_count .zibll-stats-icon {
    background: linear-gradient(135deg, #2ecc71 0%, #3498db 100%);
}

.zibll-stats-item.gitee_login_count .zibll-stats-icon {
    background: linear-gradient(135deg, #c71d23 0%, #e53935 100%);
}

.zibll-stats-item.github_login_count .zibll-stats-icon {
    background: linear-gradient(135deg, #333 0%, #555 100%);
}

.zibll-stats-item.baidu_login_count .zibll-stats-icon {
    background: linear-gradient(135deg, #2932e1 0%, #4e6efc 100%);
}

.zibll-stats-item.alipay_login_count .zibll-stats-icon {
    background: linear-gradient(135deg, #1677ff 0%, #0e5ddc 100%);
}
