/* Live Streaming Statistics Section */
.statistics-section {
  padding: 8rem 4rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.statistics-container {
  max-width: 1400px;
  margin: 0 auto;
}

.statistics-header {
  text-align: center;
  margin-bottom: 6rem;
}

.statistics-title {
  font-size: 4.2rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 2rem;
  line-height: 1.2;
}

.statistics-subtitle {
  font-size: 1.8rem;
  color: #666666;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.statistics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
}

.stat-item {
  background: #ffffff;
  padding: 3rem 2rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.stat-icon {
  width: 80px;
  height: 80px;
  background: #000000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  transition: all 0.3s ease;
}

.stat-icon i {
  font-size: 3.2rem;
  color: #ffffff;
}

.stat-item:hover .stat-icon {
  background: #333333;
  transform: scale(1.1);
}

.stat-number {
  font-size: 4.8rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 1rem;
  line-height: 1;
}

.stat-label {
  font-size: 1.8rem;
  font-weight: 600;
  color: #333333;
  margin-bottom: 1rem;
  display: block;
}

.stat-description {
  font-size: 1.6rem;
  color: #666666;
  line-height: 1.5;
}

@media (max-width: 992px) {
  .statistics-section {
    padding: 6rem 2rem;
  }
  
  .statistics-title {
    font-size: 3.6rem;
  }
  
  .statistics-subtitle {
    font-size: 1.6rem;
  }
  
  .statistics-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .statistics-section {
    padding: 4rem 1.5rem;
  }
  
  .statistics-title {
    font-size: 2.8rem;
  }
  
  .statistics-subtitle {
    font-size: 1.6rem;
  }
  
  .statistics-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .stat-item {
    padding: 2rem 1.5rem;
  }
  
  .stat-number {
    font-size: 3.6rem;
  }
  
  .stat-label {
    font-size: 1.6rem;
  }
  
  .stat-description {
    font-size: 1.6rem;
  }
} 