/* Shared site footer - Voltis Labs Games */
.site-footer {
  flex: 0 0 auto;
  z-index: 20;
  padding: 0.85rem 1rem calc(0.85rem + env(safe-area-inset-bottom, 0px));
  background: rgba(7, 7, 12, 0.94);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(246, 242, 247, 0.78);
  font-size: 0.82rem;
  line-height: 1.4;
}

.site-footer__inner {
  width: min(960px, 100%);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem 1.25rem;
}

.site-footer__copy {
  margin: 0;
  color: rgba(246, 242, 247, 0.62);
}

.site-footer__copy a {
  color: rgba(246, 242, 247, 0.88);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.85rem;
  align-items: center;
}

.site-footer__nav a {
  color: rgba(246, 242, 247, 0.78);
  text-decoration: none;
  transition: color 0.15s ease;
}

.site-footer__nav a:hover {
  color: #fff;
}

/* Light surfaces (Sweet Pop marketing page) */
.site-footer--on-light {
  background: rgba(255, 255, 255, 0.72);
  border-top-color: rgba(71, 36, 56, 0.12);
  color: rgba(71, 36, 56, 0.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.site-footer--on-light .site-footer__copy {
  color: rgba(71, 36, 56, 0.62);
}

.site-footer--on-light .site-footer__copy a,
.site-footer--on-light .site-footer__nav a {
  color: rgba(71, 36, 56, 0.78);
}

.site-footer--on-light .site-footer__nav a:hover {
  color: #472438;
}

@media (max-width: 720px) {
  .site-footer__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
