/* Enhanced Footer Styles */
.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 20px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  border-radius: 50%;
  color: var(--text-light);
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.social-link:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.footer-links-column a {
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 5px 0;
}

.footer-links-column a i {
  font-size: 0.7rem;
  margin-right: 8px;
  color: var(--primary);
  transition: transform 0.3s ease;
}

.footer-links-column a:hover {
  color: var(--primary);
}

.footer-links-column a:hover i {
  transform: translateX(3px);
}

.footer-app-badges {
  margin-top: 24px;
}

.app-badge-text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 10px;
}

.app-badges {
  display: flex;
  gap: 12px;
}

.app-badge {
  display: flex;
  align-items: center;
  padding: 8px 16px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  color: var(--text-light);
  text-decoration: none;
  transition: all 0.3s ease;
}

.app-badge i {
  margin-right: 8px;
  font-size: 1.2rem;
}

.app-badge:hover {
  background-color: var(--primary);
  transform: translateY(-3px);
}

.footer-bottom {
  position: relative;
  overflow: hidden;
}

.footer-bottom::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, 
    rgba(255,255,255,0) 0%, 
    rgba(255,255,255,0.3) 50%, 
    rgba(255,255,255,0) 100%);
}

.blockchain-networks {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 8px 16px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.blockchain-networks .net-icon {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.blockchain-networks .net-icon:hover {
  transform: scale(1.2);
}

@media (max-width: 768px) {
  .footer-app-badges {
    margin-bottom: 20px;
  }
  
  .blockchain-networks {
    flex-wrap: wrap;
    justify-content: center;
  }
}