:root {
  --footer-bg: #1a1a1a;
  --footer-text: #f8fafc;
  --footer-accent: #6f42c1;
  --footer-hover: #8a63d2;
  --transition-speed: 0.3s;
  --border-radius: 8px;
}

.footer {
  background: var(--footer-bg);
  color: var(--footer-text);
  padding: 2.5rem 1rem;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--footer-accent) 0%, transparent 100%);
}

.footer > p {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 0.9rem;
  opacity: 0.8;
}

.footer-content-bottom {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

/* Links Section */
.cc-mc-container {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cgu-link, .ml-link, .faq-link, .contact-link {
  color: var(--footer-text);
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius);
  transition: all var(--transition-speed) ease;
  position: relative;
}

.cgu-link::after, .ml-link::after, .faq-link::after, .contact-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--footer-accent);
  transition: all var(--transition-speed) ease;
}

.cgu-link:hover, .ml-link:hover, .faq-link:hover, .contact-link:hover {
  color: var(--footer-hover);
}

.cgu-link:hover::after, .ml-link:hover::after, .faq-link:hover::after, .contact-link:hover::after {
  width: 100%;
  left: 0;
}

/* Social Icons */
.footer-list-social-networks {
  display: flex;
  gap: 1rem;
  margin: 0;
  padding: 0;
}

.icon-content {
  position: relative;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-content a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--footer-text);
  transition: all var(--transition-speed) ease;
  position: relative;
  overflow: hidden;
}

.icon-content a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.icon-content a:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(111, 66, 193, 0.3);
}

.icon-content a:hover::before {
  left: 100%;
}

.icon-content svg {
  width: 20px;
  height: 20px;
  z-index: 1;
}

/* Specific Social Colors */
.icon-content a[data-social="linkedin"]:hover {
  background: #0a66c2;
}

.icon-content a[data-social="github"]:hover {
  background: #24292e;
}

.icon-content a[data-social="discord"]:hover {
  background: #7289da;
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-content-bottom {
      flex-direction: column;
      text-align: center;
  }

  .cc-mc-container {
      justify-content: center;
  }

  .footer-list-social-networks {
      justify-content: center;
  }
}