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

* {
  box-sizing: border-box;
}

html,
body,
.page {
  width: 100%;
  height: 100%;
  min-height: 100%;
  margin: 0;
  overflow: hidden;
  background: #000;
}

.page {
  position: fixed;
  inset: 0;
}

.background-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  user-select: none;
  -webkit-user-drag: none;
}

.launch-surface {
  position: absolute;
  inset: 0;
  display: block;
  color: #36ff79;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

.status-text {
  position: absolute;
  top: 1.05%;
  left: 36%;
  display: flex;
  width: 32%;
  height: 4.1%;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  font-size: clamp(12px, 3.5vw, 18px);
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1;
  text-align: center;
  text-shadow: 0 0 12px rgba(54, 255, 121, 0.45);
  white-space: nowrap;
  animation: pulse 1.2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.62;
  }

  50% {
    opacity: 1;
  }
}
