/* =====================================================================
   WC2026 — footer + UK responsible-gambling compliance block
   ===================================================================== */
.site-footer {
  margin-top: 40px;
  background: linear-gradient(180deg, rgba(4,19,12,.4), #03100a);
  border-top: 1px solid var(--line);
}
.footer-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 30px 16px 90px;
}

.footer-compliance {
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  text-align: center;
  padding-bottom: 22px; margin-bottom: 22px;
  border-bottom: 1px solid var(--line);
}
.compliance-text p {
  font-size: .82rem; line-height: 1.55; color: var(--muted);
  max-width: 720px; margin: 0 auto 10px;
}
.compliance-text p:last-child { margin-bottom: 0; }
.compliance-text strong { color: var(--cream); }
.compliance-text a { color: var(--gold); text-decoration: underline; }
.compliance-text a:hover { color: var(--gold-soft); }

.footer-badges {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 22px;
  margin-bottom: 22px;
}
.footer-badges li a {
  font-size: .8rem; font-weight: 700; color: var(--cream);
  padding-bottom: 2px; border-bottom: 2px solid transparent;
  transition: color .2s ease, border-color .2s ease;
}
.footer-badges li a:hover { color: var(--gold); border-color: var(--gold); }

.footer-legal, .footer-disclaimer {
  text-align: center; font-size: .72rem; line-height: 1.5; color: var(--muted);
  max-width: 800px; margin: 0 auto;
}
.footer-disclaimer { margin-top: 10px; opacity: .8; font-style: italic; }

@media (min-width: 700px) {
  .footer-compliance { flex-direction: row; text-align: left; gap: 22px; }
  .compliance-text p { margin-left: 0; }
  .footer-inner { padding-bottom: 40px; }
}
