/* Site footer - identical on every page. Do not change. */
/* Sticky footer: footer at bottom of viewport when content is short; no gap below footer */
html {
  min-height: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  min-height: 100vh;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}
body > main,
body > div.container,
body > div.policy-container,
body > div.register-container {
  flex: 1 0 auto;
}
footer {
  flex-shrink: 0;
  margin: 0;
  margin-top: auto;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1;
  background: #0f0f0f;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1rem 2rem;
}
.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  font-size: 0.9rem;
}
.footer-left,
.footer-left p {
  color: #A1A1AA;
  margin: 0;
}
.footer-links {
  display: flex;
  list-style: none;
  gap: 0.5rem;
  align-items: center;
  margin: 0;
  padding: 0;
}
.footer-links a {
  color: #A1A1AA;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-links a:hover {
  color: #CC5500;
}
.footer-links span {
  color: #A1A1AA;
}
.footer-divider {
  color: rgba(255, 255, 255, 0.3);
  margin: 0;
  display: flex;
  align-items: center;
  line-height: 1;
}
@media (max-width: 768px) {
  footer {
    padding: 0.5rem 1rem;
  }
  .footer-content {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
    padding: 0;
  }
  .footer-left,
  .footer-left p {
    font-size: 0.65rem;
  }
  .footer-links {
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
  }
  .footer-links li,
  .footer-links a,
  .footer-divider {
    font-size: 0.65rem;
  }
}
@media (max-width: 480px) {
  footer {
    padding: 0.5rem 0.75rem;
  }
  .footer-content {
    gap: 0.4rem;
  }
  .footer-left,
  .footer-left p {
    font-size: 0.6rem;
  }
  .footer-links {
    gap: 0.5rem;
  }
  .footer-links li,
  .footer-links a,
  .footer-divider {
    font-size: 0.6rem;
  }
}
