/*
 * Shared site footer styles.
 *
 * Used on every game page (post-2026-05-18 unification) so the bottom-of-page
 * chrome matches the static pages (about/contact/privacy/terms/blog) and the
 * Daily Challenge archive. Static pages still have their own inline copy of
 * these rules; a future cleanup pass can route all pages through this file.
 *
 * Match the visual identity used on /daily/:
 *   - Light gray bar background
 *   - Centered content with a max-width so links don't sprawl on desktop
 *   - Brand-colour hover on links
 */
/* width:100% + box-sizing:border-box are defensive: 3 games (block-drop,
 * knife-hit, tap-upgrade-explode) set `body { display:flex; align-items:center }`,
 * which sizes flex children to their content width and centers them. Without
 * width:100% the footer would be a narrow strip with the dark body bg leaking
 * on either side. */
footer.bl-footer {
  display: block;
  width: 100%;
  box-sizing: border-box;
  background: #F8F9FA;
  border-top: 1px solid #E5E7EB;
  padding: 2rem 1.5rem;
  margin-top: 3rem;
  font-family: 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;
}
footer.bl-footer .footer-content {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
footer.bl-footer .footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
footer.bl-footer .footer-links a {
  color: #6B7280;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  transition: color 0.15s ease;
}
footer.bl-footer .footer-links a:hover {
  color: #FF6B4A;
}
footer.bl-footer .footer-copy {
  color: #6B7280;
  font-size: 0.875rem;
}
@media (max-width: 640px) {
  footer.bl-footer .footer-content {
    flex-direction: column;
    text-align: center;
  }
  footer.bl-footer .footer-links {
    justify-content: center;
  }
}
