/* Statistics Block Styles */
.statistics-block {
  margin-bottom: 2rem;
}

.statistics-header-wrapper {
  margin-bottom: 1rem;
}

.statistics-header {
  background: linear-gradient(135deg, rgba(112, 44, 249, 1), rgba(112, 44, 249, 0.8));
  padding: 0.5rem 1rem;
  text-align: center;
  border-radius: 8px;
}

.statistics-title {
  margin: 0;
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.statistics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.statistics-column {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.statistics-column:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.statistics-column-header {
  background: linear-gradient(135deg, rgba(112, 44, 249, 1), rgba(112, 44, 249, 0.8));
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  text-align: center;
}

.statistics-column-header i {
  color: #ffffff;
  font-size: 1rem;
  width: 20px;
  text-align: center;
}

.statistics-column-title {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 600;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.statistics-list {
  padding: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.statistics-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  border-radius: 8px;
  transition: all 0.2s ease;
  background: linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(250, 250, 255, 1));
  border: 1px solid rgba(112, 44, 249, 0.1);
}

.statistics-item:hover {
  background: linear-gradient(135deg, rgba(112, 44, 249, 0.08), rgba(112, 44, 249, 0.03));
  border-color: rgba(112, 44, 249, 0.2);
  transform: translateX(4px);
  box-shadow: 0 2px 8px rgba(112, 44, 249, 0.15);
}

.statistics-item-position {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(112, 44, 249, 0.9), rgba(112, 44, 249, 0.7));
  border-radius: 50%;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #ffffff;
  flex-shrink: 0;
  box-shadow: 0 2px 4px rgba(112, 44, 249, 0.3);
}

.statistics-item-avatar {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(112, 44, 249, 0.2);
  transition: all 0.2s ease;
}

.statistics-item:hover .statistics-item-avatar {
  border-color: rgba(112, 44, 249, 0.5);
  transform: scale(1.05);
}

.statistics-item-avatar a {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
}

.statistics-item-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.statistics-item-info {
  flex: 1;
  min-width: 0;
}

.statistics-item-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 0.25rem;
  line-height: 1.3;
}

.statistics-item-name a {
  color: #2d3748;
  text-decoration: none;
  transition: color 0.2s ease;
}

.statistics-item-name a:hover {
  color: rgba(112, 44, 249, 0.9);
  text-decoration: none;
}

.statistics-item-team {
  font-size: 0.75rem;
  color: #718096;
  font-weight: 500;
}

.statistics-item-value {
  font-size: 1rem;
  font-weight: 700;
  color: rgba(112, 44, 249, 0.95);
  flex-shrink: 0;
  padding: 0.375rem 0.75rem;
  background: linear-gradient(135deg, rgba(112, 44, 249, 0.1), rgba(112, 44, 249, 0.05));
  border-radius: 6px;
  min-width: 50px;
  text-align: center;
}

.statistics-empty {
  padding: 1rem;
  text-align: center;
  color: #999;
  font-size: 0.875rem;
  font-style: italic;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .statistics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .statistics-grid {
    grid-template-columns: 1fr;
  }
  
  .statistics-column-header {
    padding: 0.625rem 0.875rem;
  }
  
  .statistics-column-title {
    font-size: 0.8125rem;
  }
  
  .statistics-item {
    padding: 0.5rem;
  }
  
  .statistics-item-name {
    font-size: 0.8125rem;
  }
  
  .statistics-item-team {
    font-size: 0.6875rem;
  }
  
  .statistics-item-value {
    font-size: 0.875rem;
  }
}

