body {
  font-family: "SF Pro Display", "Inter", "PingFang SC", "Microsoft YaHei",
    system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: #ffffff;
  min-height: 100vh;
}

.iphone-shell {
  width: min(100%, 390px);
  height: 844px;
  border-radius: 48px;
  background: #f8fafc;
  position: relative;
  box-shadow: none;
  border: 10px solid #0f172a;
  overflow: hidden;
}

.iphone-notch {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 34px;
  background: #020617;
  border-radius: 20px;
  z-index: 10;
}

.iphone-status {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  font-size: 14px;
  color: #0f172a;
}

.iphone-body {
  height: calc(100% - 60px);
  overflow-y: auto;
  padding: 24px 24px 40px;
}

.iphone-body::-webkit-scrollbar {
  display: none;
}


