* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  min-height: 100dvh;
}

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  /* Same as app: stars image + dark overlay (rgba(0,0,0,0.5) → rgba(0,0,0,0.985)) */
  background-image: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.5) 0%,
      rgba(0, 0, 0, 0.985) 100%
    ),
    url('stars-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  padding-top: max(24px, env(safe-area-inset-top));
  padding-bottom: max(24px, env(safe-area-inset-bottom));
  position: relative;
  overflow: hidden;
}

.content {
  position: relative;
  z-index: 1;
  max-width: 294px;
}

.moon-img {
  width: 200px;
  height: auto;
  margin: 0 auto 24px;
  display: block;
}

.title {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
  color: #ffffff;
}

.subtitle {
  font-size: 16px;
  line-height: 22px;
  letter-spacing: -0.48px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 8px;
}

.hint {
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.42px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 32px;
}

.btn {
  display: inline-block;
  width: 209px;
  padding: 12px 32px;
  min-height: 44px;
  line-height: 1.3;
  font-size: 18px;
  letter-spacing: -0.54px;
  font-weight: 500;
  font-family: inherit;
  color: #202020;
  background: #ffffff;
  border: none;
  border-radius: 4px;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.2s;
}

.btn:hover {
  opacity: 0.9;
}

.btn:active {
  opacity: 0.85;
}
