  /* 统计卡片组件 - 融入式样式 */
  .stats-section {
    background-color: #13181d;
    padding: 80px 0;
    margin: 60px 0;
    position: relative;
    overflow: hidden;
  }

  .stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
  }

  .stats-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
  }

  .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 0 auto;
    max-width: 1000px;
  }

  .stat-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.05);
	border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }

  .stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  }

  .stat-value {
    font-size: 2.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    background: linear-gradient(to right, #3a7bd5, #00d2ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.5px;
  }


  /* 响应式调整 */
  @media (max-width: 768px) {
    .stats-section {
      padding: 60px 0;
    }
    
    .stats-title {
      font-size: 2rem;
    }
    
    .stats-subtitle {
      font-size: 1rem;
      margin-bottom: 30px;
    }
    
    .stats-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 15px;
    }
    
    .stat-item {
      padding: 20px 10px;
    }
    
    .stat-value {
      font-size: 2rem;
    }
    
    .stats-button-container {
      margin-top: 40px;
    }
  }

  @media (max-width: 480px) {
    .stats-grid {
      grid-template-columns: 1fr;
    }
  }