.footer-section {
  background-color: #3B3131; /* darker and neutral */
  color: #ccc;
  padding: 50px 20px 30px;
  font-size: 0.9rem;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 50px;
  max-width: 1300px;
  margin: auto;
  border-bottom: 1px solid #2c2c2c;
  padding-bottom: 40px;
  padding-top: 40px;
}

.footer-description {
  flex: 1 1 300px;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.footer-logo {
  width: 60px;
  height: auto;
}

.logo-text {
  font-weight: bold;
  font-size: 1.4rem;
  color: #f5cc49;
}

.footer-tagline {
  margin-bottom: 15px;
  line-height: 1.5;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-icon {
  font-size: 1.3rem;
  color: #ccc;
  transition: color 0.3s;
}

.social-icon:hover {
  color: #ffd700;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  flex: 3 1 700px;
}

.footer-col h4 {
  color: #f5cc49;
  margin-bottom: 12px;
  font-size: 1rem;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  color: #bbb;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: #f5cc49;
  text-decoration: underline;
}

/* Bottom Section */
.footer-bottom {
  max-width: 1300px;
  margin: auto;
  padding-top: 25px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
  color: #888;
  font-size: 0.8rem;
}

.footer-ankama-logo {
  text-align: left;
}

.footer-ankama-logo h4 {
  color: #f5cc49;
  font-size: 1rem;
  margin-bottom: 10px;
}

.footer-ankama-logo ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-ankama-logo {
  margin-left: auto;
  text-align: right;
}

.image-logo {
  margin-right: 25px;
}


.footer-disclaimer, .dev-span {
  font-weight: bold;
}

.ankama-span, .dev-span {
  color: #f5cc49;
  text-decoration: none;
}

.ankama-span:hover {
  text-decoration: underline;
}


.multi-columns {
  column-count: 2;
  column-gap: 40px;
  list-style: none;
  padding: 0;
  margin: 0;
}


.footer-ankama-logo ul li {
  margin-bottom: 10px;
}

.footer-ankama-logo img {
  max-width: 90px;
  height: auto;
  filter: brightness(0.9) contrast(1.2);
  transition: transform 0.3s ease;
}

.footer-ankama-logo img:hover {
  transform: scale(1.05);
}


.footer-actions .support-btn {
  background-color: #f5cc49;
  color: #000;
  border-radius: 4px;
  padding: 8px 14px;
  text-decoration: none;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background 0.3s;
}

.footer-actions .support-btn:hover {
  background-color: #ffe680;
  color: #000;
}

@media screen and (max-width: 768px) {
  .footer-container,
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .footer-columns {
    justify-content: center;
  }

  .footer-actions {
    margin-top: 10px;
  }
}
