/*--------------------------------------------------------------
# Stats Section Styles
--------------------------------------------------------------*/

/* 更新数字和标签颜色 */
.stats-section-enhanced .highlight-text {
  background: linear-gradient(135deg, #0d6efd 0%, #3485fd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  font-size: 42px;
  font-weight: 800;
  text-shadow: 0 2px 10px rgba(13, 110, 253, 0.1);
}

.stats-section-enhanced .stats-label {
  color: #333; /* 深色文字 */
}

.stats-section-enhanced .stats-desc {
  color: #666; /* 中灰色文字 */
}

/* 更新图标容器样式 */
.stats-section-enhanced .stats-icon {
  background-color: rgba(13, 110, 253, 0.1); /* 淡蓝色图标背景 */
  color: #0d6efd; /* 蓝色图标 */
}

/* 确保 stats-card 内的所有文字颜色为黑灰色 */
.stats-card .stats-content .stats-number,
.stats-card .stats-content .stats-label,
.stats-card .stats-content .stats-desc {
  color: #333; /* 深灰色文字 */
}

.stats-card .stats-content .stats-desc {
  color: #666; /* 稍浅一点的灰色文字，用于描述文本 */
}

/* 保持突出显示的数字为蓝色 */
.stats-card .stats-content .highlight-text {
  color: #0d6efd; /* 蓝色数字 */
}

/* 图标保持蓝色 */
.stats-card .stats-icon i {
  color: #0d6efd; /* 蓝色图标 */
}

/* 更新卡片悬停效果 */
.stats-section-enhanced .stats-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.stats-section-enhanced .stats-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  overflow: hidden;
  position: relative;
  height: 100%;
  padding: 30px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.stats-section-enhanced .stats-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.15);
}

.stats-section-enhanced .stats-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.stats-section-enhanced .stats-card:hover::after {
  height: 6px;
  background: rgba(255, 255, 255, 0.4);
}

.stats-section-enhanced .stats-content {
  flex-grow: 1;
}

.stats-section-enhanced .stats-number {
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.stats-section-enhanced .stats-label {
  font-size: 18px;
  color: #fff;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.stats-section-enhanced .stats-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
  line-height: 1.6;
}

.stats-section-enhanced .stats-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.15);
  margin-left: 15px;
  transition: all 0.3s ease;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.stats-section-enhanced .stats-icon i {
  font-size: 24px;
  color: #fff;
  transition: all 0.3s ease;
}

.stats-section-enhanced .stats-card:hover .stats-icon {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.1);
}

/* 添加背景光效 */
.stats-section-enhanced {
  position: relative;
  z-index: 1;
}

.stats-section-enhanced::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
  top: -100px;
  left: -100px;
  border-radius: 50%;
  z-index: -1;
}

.stats-section-enhanced::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
  bottom: -200px;
  right: -100px;
  border-radius: 50%;
  z-index: -1;
}

/* 响应式调整 */
@media (max-width: 992px) {
  .stats-section-enhanced {
    padding: 60px 0;
  }
  
  .stats-section-enhanced .stats-card {
    padding: 25px;
  }
  
  .stats-section-enhanced .highlight-text {
    font-size: 36px;
  }
  
  .stats-section-enhanced .stats-label {
    font-size: 16px;
  }
  
  .stats-section-enhanced .stats-desc {
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .stats-section-enhanced .stats-card {
    padding: 20px;
  }
  
  .stats-section-enhanced .highlight-text {
    font-size: 32px;
  }
  
  .stats-section-enhanced .stats-label {
    font-size: 15px;
  }
  
  .stats-section-enhanced .stats-icon {
    width: 50px;
    height: 50px;
  }
  
  .stats-section-enhanced .stats-icon i {
    font-size: 20px;
  }
}