#homescreen {
  position: fixed;
  inset: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 24px;
  overflow-y: auto;
  background: radial-gradient(circle at 50% 15%, #fff3e0 0%, #ffe0ec 45%, #dff2ff 100%);
  color: #2b1f3d;
  font-family: -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.hs-nav {
  width: 100%;
  max-width: 900px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hs-wordmark {
  font-weight: 800;
  font-size: 18px;
}

.hs-nav-link {
  color: #2b1f3d;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 111, 145, 0.14);
}

.hs-nav-link:hover {
  background: rgba(255, 111, 145, 0.24);
}

.hs-card {
  width: 100%;
  max-width: 640px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 111, 145, 0.2);
  border-radius: 20px;
  padding: 40px 32px;
  text-align: center;
  box-shadow: 0 12px 32px rgba(43, 31, 61, 0.12);
}

.hs-emoji {
  width: 72px;
  height: 72px;
  margin-bottom: 8px;
}

.hs-card h1 {
  font-size: 40px;
  margin-bottom: 12px;
}

.hs-tagline {
  font-size: 16px;
  opacity: 0.85;
  line-height: 1.5;
  margin-bottom: 24px;
}

.hs-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 28px;
}

.hs-pills span {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 111, 145, 0.12);
  font-size: 13px;
}

.hs-cta {
  display: block;
  width: 100%;
  padding: 18px;
  border: none;
  border-radius: 14px;
  background: linear-gradient(90deg, #ff6f91, #ffb26b);
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  cursor: pointer;
  margin-bottom: 20px;
}

.hs-cta:hover {
  filter: brightness(1.05);
}

.hs-credit {
  font-size: 13px;
  opacity: 0.7;
}

.hs-credit a {
  color: #d1447a;
  font-weight: 600;
}

.hs-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.hs-stats span {
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
  font-size: 13px;
}

.hs-parent-hint {
  font-size: 16px;
  font-weight: 600;
  opacity: 0.95;
  text-align: center;
  max-width: 480px;
  padding: 14px 22px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(255, 178, 107, 0.4);
}

.hs-parent-hint strong {
  color: #d1447a;
}
