:root {
  --accent: #ff8338;
  --primary: #363645;
  --primary-60: rgba(54, 54, 69, 0.6);
  --white: #ffffff;
  --card-bg: #f5f5f7;
  --surface: #ffffff;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  font-family: system-ui, -apple-system, sans-serif;
}

a {
  color: inherit;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-footer {
  padding: 1rem 2rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.site-footer__support {
  font-size: 0.9375rem;
  line-height: 1.4;
}

.site-footer a {
  font-size: 0.9375rem;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.site-footer a:hover {
  opacity: 0.85;
}
