/* WinSpirit branded footer — usable on both static pages and home (Vue-clone) */
.site-footer {
  margin-top: 3rem;
  padding: 2rem 1rem calc(2.5rem + env(safe-area-inset-bottom));
  background: linear-gradient(180deg, rgba(34, 28, 54, .6) 0%, rgba(17, 14, 27, .96) 100%);
  border-top: 1px solid rgba(88, 72, 139, .48);
  color: #b6bdcc;
  text-align: center;
  font-family: Sora, ui-sans-serif, system-ui, sans-serif;
}

.site-footer__inner {
  display: grid;
  gap: 1rem;
  width: min(82.5rem, calc(100vw - 2rem));
  margin: 0 auto;
}

.site-footer__brand {
  color: #f7f7f7;
  font-size: 1.125rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-decoration: none;
}

.site-footer__brand:hover {
  color: #00eda6;
}

.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .5rem 1.25rem;
  font-size: .9375rem;
}

.site-footer__nav a {
  color: #b6bdcc;
  font-weight: 700;
  text-decoration: none;
  transition: color .15s ease;
}

.site-footer__nav a:hover {
  color: #f7f7f7;
}

.site-footer__disclaimer {
  margin: 0;
  color: #b6bdcc;
  font-size: .875rem;
  line-height: 1.5;
}

.site-footer__copy {
  margin: 0;
  color: rgba(182, 189, 204, .65);
  font-size: .8125rem;
  line-height: 1.5;
}

@media (max-width: 720px) {
  .site-footer {
    padding: 1.75rem .75rem calc(2.5rem + env(safe-area-inset-bottom));
  }

  .site-footer__nav {
    gap: .5rem .875rem;
    font-size: .875rem;
  }
}
