:root {
  color-scheme: dark;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #050505;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-height: 100%;
  margin: 0;
  background: #050505;
}

body {
  overflow: hidden;
}

.page {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  max-width: 520px;
  margin: 0 auto;
  overflow: hidden;
  background: #050505;
  isolation: isolate;
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
  object-position: center;
  background: #050505;
}

.bottom-bar {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 84px 22px max(30px, env(safe-area-inset-bottom));
  background: linear-gradient(to top, rgb(0 0 0 / 76%) 0%, rgb(0 0 0 / 46%) 58%, rgb(0 0 0 / 0%) 100%);
}

.sponsor-block {
  width: min(100%, 350px);
  color: #fff;
  text-shadow: 0 2px 12px rgb(0 0 0 / 58%);
}

.sponsor-row {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 40px;
}

.sponsor-check {
  position: relative;
  display: inline-flex;
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #39c980;
  box-shadow: 0 10px 24px rgb(0 0 0 / 34%);
}

.sponsor-check::after {
  position: absolute;
  top: 11px;
  left: 10px;
  width: 17px;
  height: 9px;
  border-right: 4px solid #fff;
  border-bottom: 4px solid #fff;
  content: "";
  transform: rotate(45deg);
}

.sponsor-copy {
  display: grid;
  gap: 1px;
  min-width: 0;
}

.sponsor-copy strong,
.sponsor-copy span {
  display: block;
  color: #fff;
  font-size: 16px;
  font-weight: 720;
  line-height: 1.05;
}

.sponsor-copy span {
  font-size: 15px;
  font-weight: 650;
}

.sponsor-text {
  margin: 10px 0 0;
  color: #fff;
  font-size: 16px;
  font-weight: 680;
  line-height: 1.2;
}

@media (max-width: 420px) {
  .bottom-bar {
    padding-right: 20px;
    padding-left: 20px;
  }

  .sponsor-copy strong {
    font-size: 16px;
  }

  .sponsor-copy span {
    font-size: 15px;
  }

  .sponsor-text {
    font-size: 16px;
  }
}

.signup-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 350px);
  min-height: 46px;
  padding: 12px 20px;
  border: 1px solid rgb(255 255 255 / 16%);
  border-radius: 999px;
  background: #42aef5;
  color: #07111c;
  font-size: 16px;
  font-weight: 720;
  line-height: 1;
  letter-spacing: 0;
  text-decoration: none;
  box-shadow: 0 16px 36px rgb(0 0 0 / 34%);
  -webkit-tap-highlight-color: transparent;
  transition: transform 160ms ease, background 160ms ease;
}

.signup-button:active {
  transform: scale(0.98);
  background: #229deb;
}

@media (min-width: 700px) {
  body {
    display: grid;
    min-height: 100vh;
    place-items: center;
    background: #111;
  }

  .page {
    width: min(100vw, 430px);
    height: min(100vh, 932px);
  }
}
