* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  min-height: 100%;
  background: #fff;
  color: #111;
  font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans SC", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body {
  max-width: 430px;
  margin: 0 auto;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  padding: env(safe-area-inset-top) 0 env(safe-area-inset-bottom);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px 0;
  min-height: 52px;
}

.nav-home {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: #111;
  text-decoration: none;
}

.nav-capsules {
  display: flex;
  align-items: center;
  height: 32px;
  padding: 0 2px 0 6px;
  border: 1px solid #e6e6e6;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.nav-btn {
  width: 34px;
  height: 32px;
  border: 0;
  background: transparent;
  display: grid;
  place-items: center;
}

.nav-split {
  width: 1px;
  height: 16px;
  background: #e5e5e5;
}

.page {
  flex: 1;
  padding: 86px 40px 24px;
}

h1 {
  text-align: center;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
}

.hint {
  text-align: center;
  color: #2b2b2b;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.8;
  margin-bottom: 64px;
  word-break: break-word;
}

.rows {
  display: grid;
  row-gap: 24px;
}

.row {
  display: grid;
  grid-template-columns: 6.2em 1fr;
  column-gap: 20px;
  align-items: start;
  font-size: 16px;
  line-height: 1.5;
}

.row .k { color: #8c8c8c; }
.row .v { color: #111; word-break: keep-all; white-space: nowrap; }

.empty {
  text-align: center;
  color: #8c8c8c;
  font-size: 15px;
}

.foot {
  text-align: center;
  color: #b3b3b3;
  font-size: 13px;
  line-height: 1.75;
  padding: 24px 28px 40px;
}
