.bg-light {
  background-color: var(--dark-lighter) !important;
  color: var(--text-primary) !important;
}

.card {
  border: 1px solid var(--border-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.timeline {
  position: relative;
  padding-left: 30px;
  border-left: 2px solid var(--primary);
}

.timeline-item {
  position: relative;
  padding-bottom: 30px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -36px;
  top: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--primary);
  border: 3px solid var(--dark);
}

.stats-card {
  text-align: center;
  padding: 30px 20px;
}

.stats-number {
  font-size: 2.5rem;
  font-weight: bold;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.team-value {
  border-left: 3px solid var(--primary);
  padding-left: 20px;
  margin-bottom: 25px;
}

.lead {
  font-size: 1.25rem;
  line-height: 1.8;
  color: var(--text-primary);
  opacity: 0.9;
}