* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #07142B;
  color: #f9fafb;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  text-align: center;
  height: 100vh;
}

.wrapper {
  max-width: 600px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* Top content centered vertically */
.top {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1; /* fills remaining space */
}

.brand {
  font-size: 4rem;
  font-weight: 700;
  margin: 0 0 0.75rem 0;
}

.subtitle {
  font-size: 1.1rem;
  color: #cbd5f5;
  margin: 0 auto;
  max-width: 520px;
}

/* Push the Indiegogo block to the bottom */
.support-link {
  text-decoration: none;
  margin-top: auto;
}

.support-text {
  margin: 0 0 0.75rem 0;
  font-size: 0.75rem;
  color: #cbd5f5;
  letter-spacing: 0.3px;
}

.support-logo {
  max-width: 180px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 0.75rem auto;
}

.support-link:hover .support-text {
  text-decoration: none;
}
