*,
*::before,
*::after {
  box-sizing: border-box;
  -webkit-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}

html {
  background-color: #000;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  touch-action: pan-y;
}

body {
  margin: 0;
  min-height: 100vh;
  background-color: #000;
  touch-action: pan-y;
}

.landing-shell {
  width: 100%;
  margin: 0 auto;
}

@media (min-width: 431px) {
  .landing-shell {
    max-width: 430px;
  }
}

.full-width-image {
  width: 100%;
  line-height: 0;
}

.full-width-image > img {
  display: block;
  width: 100%;
  height: auto;
  -webkit-user-drag: none;
}

.full-width-image--hero {
  position: relative;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.25rem 1rem 2rem;
  gap: 0.5rem;
  padding-top: 0;
}

.hero-overlay__button {
  display: block;
  width: 70%;
  height: auto;
}

.hero-overlay__hint-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  flex-wrap: wrap;
}

.hero-overlay__hint {
  margin: 0;
  font-size: 0.75rem;
  font-style: italic;
  line-height: 1.3;
  text-align: center;
  color: #a5a5a5;
  font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, system-ui, "Segoe UI", Roboto, "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.hero-overlay__hint-arrow {
  display: block;
  width: 12px;
  height: auto;
  flex-shrink: 0;
}

.hero-overlay__timer {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  line-height: 1.2;
  color: #fff;
  font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, system-ui, "Segoe UI", Roboto, "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.screen-overlay-trigger {
  cursor: pointer;
}

.screen-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background-color: rgba(0, 0, 0, 0.9);
}

.screen-overlay[hidden] {
  display: none !important;
}

.screen-overlay__close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  z-index: 1;
  margin: 0;
  padding: 0.25rem 0.35rem;
  border: 0;
  background: none;
  color: #fff;
  cursor: pointer;
  font: inherit;
  line-height: 1;
}

.screen-overlay__close:focus {
  outline: none;
}

.screen-overlay__close-x {
  display: block;
  font-size: 2rem;
  font-weight: 300;
  line-height: 1;
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 20000;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000;
}

.page-loader[hidden] {
  display: none !important;
}

.page-loader__spinner {
  width: 2.25rem;
  height: 2.25rem;
  border: 3px solid rgba(255, 255, 255, 0.2);
  border-top-color: #fff;
  border-radius: 50%;
  animation: page-loader-spin 0.75s linear infinite;
}

@keyframes page-loader-spin {
  to {
    transform: rotate(360deg);
  }
}
