.social-links-container {
  display: flex;
  justify-content: center;
  margin: 3rem 0;
  gap: 2rem;
}

.social-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  transform: translateY(-5px);
}

.social-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.social-link:hover .social-icon {
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  background: var(--gradient-secondary);
}

.social-icon i {
  font-size: 2.4rem;
  color: #fff;
}

.social-name {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text-color);
}

.social-username {
  font-size: 1.4rem;
  color: var(--text-muted);
}

@media screen and (max-width: 768px) {
  .social-links-container {
    flex-wrap: wrap;
  }
  
  .social-icon {
    width: 50px;
    height: 50px;
  }
  
  .social-icon i {
    font-size: 2rem;
  }
}
