.footer-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.footer-content {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  width: 100%;
  max-width: 72rem;
  margin-bottom: 1.2rem;
}

.footer-left {
  display: flex;
  flex: 2 1 18rem;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.8rem;
  min-width: 0;
}

.footer-logo-container {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.footer-logo {
  display: block;
  width: 3.75rem;
  height: auto;
  border-radius: 0.375rem;
}

.footer-site-name {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
}

.footer-description {
  max-width: 31.25rem;
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.5;
  color: #e0e0e0;
  opacity: 0.5;
}

.footer-socials {
  display: flex;
  gap: 0.7rem;
}

.footer-social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  opacity: 0.7;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.footer-social-btn svg {
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  transition: transform 0.2s ease;
}

.footer-social-btn:hover {
  opacity: 1;
}

.footer-social-btn:hover svg {
  transform: scale(1.04);
}

.footer-social-btn[aria-label="Discord"]:hover svg path {
  fill: url(#footer-social-gradient-discord);
}

.footer-social-btn[aria-label="YouTube"]:hover svg path {
  fill: url(#footer-social-gradient-youtube);
}

.footer-links-container {
  display: flex;
  flex: 0 1 auto;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 2.5rem;
}

.footer-right,
.footer-policies {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.2rem;
  min-width: 0;
}

.footer-right {
  max-width: 7.5rem;
}

.footer-policies {
  max-width: 8.75rem;
}

.footer-links-title {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.35;
  color: #d8d8dc;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #22d3ee;
}

.footer-link-icon,
.footer-links a svg {
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
}

.footer-bottom {
  width: 100%;
  max-width: 72rem;
  padding: 1.2rem 0 1.2rem;
  border-top: 1px solid #232232;
  font-size: 1rem;
  line-height: 1.5;
  color: #b0b0b0;
  text-align: left;
}

