html,
body {
  min-height: 100%;
}

body {
  font-family: Inter, Arial, sans-serif;
  color: var(--text);
  background: var(--page-bg);
}

.page {
  position: relative;
  min-height: 100vh;
  padding: 40px 16px 28px;
}

.backdrop {
  position: fixed;
  inset: 0;
  background-position: var(--background-position, center center);
  background-size: cover;
  background-repeat: no-repeat;
  filter: var(--background-filter);
  opacity: var(--background-opacity);
  pointer-events: none;
  transform: scale(var(--background-scale));
}

.hero-card,
.links,
.footer {
  position: relative;
  z-index: 1;
  max-width: var(--shell-width);
  margin: 0 auto;
}

.legal-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.legal-page .hero-card,
.legal-page .footer {
  max-width: var(--page-width);
  width: 100%;
}
