*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
  background: #f5f5f7;
  color: #1d1d1f;
  -webkit-font-smoothing: antialiased;
}

.page {
  max-width: 430px;
  margin: 0 auto;
  min-height: 100vh;
}

/* Header */
.header {
  padding: 52px 24px 28px;
  text-align: center;
}

.header h1 {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 6px;
}

.header .subtitle {
  font-size: 14px;
  color: #86868b;
}

/* App list */
.app-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0 16px 52px;
}

/* Card */
.card {
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.card-top {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 14px;
  text-decoration: none;
  color: inherit;
}

.card-icon {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  object-fit: cover;
  flex-shrink: 0;
  background: #e5e5ea;
}

.card-info {
  flex: 1;
  padding-top: 2px;
}

.card-info h2 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
  line-height: 1.3;
}

.card-info p {
  font-size: 13px;
  color: #6e6e73;
  line-height: 1.5;
}

/* Tags */
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}

.tag {
  font-size: 11px;
  font-weight: 500;
  background: #f0f0f2;
  color: #555;
  padding: 3px 9px;
  border-radius: 20px;
}

/* Comment */
.comment {
  font-size: 13px;
  color: #86868b;
  line-height: 1.65;
}

/* Footer */
.footer {
  text-align: center;
  padding: 20px;
  font-size: 12px;
  color: #86868b;
}
