:root {
  --ink: #5a3d32;
  --soft: #8a6254;
  --font: "PingFang SC", "Hiragino Sans GB", "Heiti SC", "Microsoft YaHei", sans-serif;
}

* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html,
body {
  margin: 0;
  min-height: 100%;
  font-family: var(--font);
  color: var(--ink);
  background: linear-gradient(180deg, #ffe7d2, #f7c7a8 40%, #cfe6f4);
}

body {
  min-height: 100dvh;
  padding: calc(18px + env(safe-area-inset-top)) 16px calc(24px + env(safe-area-inset-bottom));
}

.hub {
  width: min(720px, 100%);
  margin: 0 auto;
}

.hero {
  text-align: center;
  background: #fff8f1;
  border: 3px solid #fff;
  border-radius: 28px;
  padding: 22px 16px 18px;
  box-shadow: 0 14px 36px rgba(120, 70, 40, 0.16);
}

.faces {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.faces img {
  width: 92px;
  height: 92px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #fff;
  background: #fff3e6;
}

.eyebrow {
  margin: 12px 0 0;
  color: #e46a8c;
  letter-spacing: 0.06em;
  font-size: 14px;
}

h1 {
  margin: 6px 0 8px;
  font-size: clamp(32px, 8vw, 44px);
  font-weight: 700;
}

.lead {
  margin: 0 auto;
  max-width: 22em;
  color: var(--soft);
  line-height: 1.6;
}

.shelf {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.game {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border-radius: 22px;
  background: #fff8f1;
  border: 3px solid #fff;
  color: inherit;
  text-decoration: none;
  box-shadow: 0 8px 0 rgba(230, 180, 140, 0.55);
}

.game:active {
  transform: translateY(4px);
  box-shadow: 0 3px 0 rgba(230, 180, 140, 0.55);
}

.game img {
  width: 88px;
  height: 88px;
  object-fit: cover;
  border-radius: 20px;
}

.game h2 {
  margin: 0 0 4px;
  font-size: 22px;
}

.game p {
  margin: 0;
  color: var(--soft);
  font-size: 14px;
}

.ver {
  display: inline-block;
  margin-top: 6px;
  font-size: 12px;
  color: #b08978;
}

.ios-tip {
  margin: 16px 0 0;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--soft);
  line-height: 1.55;
  font-size: 14px;
}

.foot {
  text-align: center;
  color: #b08978;
  font-size: 12px;
  margin: 16px 0 0;
}

@media (min-width: 700px) {
  .shelf {
    grid-template-columns: 1fr 1fr;
  }
}
