footer {
  background-color: #080808;
  border-top: double 2px transparent;
  background-image: linear-gradient(#080808, #080808), linear-gradient(45deg, #c8a84b, #e8cc80);
  background-origin: border-box;
  background-clip: padding-box, border-box;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem 1.5rem;
}

/* ── Top row: brand + nav columns ── */
.footer-top {
  display: flex;
  gap: 4rem;
  align-items: flex-start;
  margin-bottom: 2.5rem;
}

.footer-brand {
  flex: 0 0 240px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-logo {
  height: 46px;
  width: auto;
  object-fit: contain;
}

.footer-disclaimer {
  font-size: 0.74rem;
  line-height: 1.6;
  color: rgba(237, 237, 237, 0.32);
  margin: 0;
  font-family: 'Inter', sans-serif;
}

.footer-gambleaware img {
  width: 130px;
  opacity: 0.6;
  transition: opacity 0.2s;
}

.footer-gambleaware:hover img {
  opacity: 1;
}

/* ── Link columns ── */
.footer-nav {
  flex: 1;
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  min-width: 110px;
}

.footer-col-title {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #c8a84b;
  margin-bottom: 0.2rem;
  font-family: 'Inter', sans-serif;
}

.footer-col a {
  color: rgba(237, 237, 237, 0.6);
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  text-decoration: none;
  transition: color 0.15s;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.footer-col a:hover {
  color: #e8cc80;
}

.footer-social-link img {
  width: 14px;
  height: 14px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.5;
  flex-shrink: 0;
  transition: opacity 0.15s;
}

.footer-social-link:hover img {
  opacity: 0.85;
}

/* ── Bottom bar ── */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 1.25rem;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-copyright {
  font-size: 0.7rem;
  color: rgba(237, 237, 237, 0.22);
  margin: 0;
  font-family: 'Inter', sans-serif;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  font-size: 0.7rem;
  color: rgba(237, 237, 237, 0.22);
  text-decoration: none;
  transition: color 0.15s;
  font-family: 'Inter', sans-serif;
}

.footer-legal a:hover {
  color: rgba(237, 237, 237, 0.6);
}

/* ── Responsive ── */
@media (max-width: 860px) {
  .footer-top {
    flex-direction: column;
    gap: 2rem;
  }

  .footer-brand {
    flex: none;
    max-width: 380px;
  }

  .footer-nav {
    gap: 2rem;
  }
}

@media (max-width: 600px) {
  .footer-inner {
    padding: 2rem 1.25rem 1.25rem;
  }

  .footer-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem 1rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
  }
}
