/* 该吃吃 Support Site 样式 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Arial, sans-serif;
}

body {
  color: #222;
  background: #fafafa;
  line-height: 1.6;
}

.hero {
  text-align: center;
  padding: 60px 20px 40px;
  background: #fff;
  border-bottom: 1px solid #eee;
}

.app-icon {
  width: 96px;
  height: 96px;
  border-radius: 22.5%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.app-name {
  font-size: 32px;
  margin-top: 16px;
  font-weight: 700;
}

.tagline {
  font-size: 16px;
  margin-top: 8px;
  color: #666;
}

.download-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 22px;
  background: #fe2d55;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-size: 15px;
  transition: background 0.3s;
}

.download-btn:hover {
  background: #e32347;
}

main {
  max-width: 960px;
  margin: 0 auto;
  padding: 40px 20px;
}

.features ul {
  list-style: none;
  margin-top: 16px;
}

.features li {
  margin: 8px 0;
  font-size: 15px;
}

.screenshots .gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.screenshots img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s;
}

.screenshots img:hover {
  transform: scale(1.05);
}

.contact {
  margin-top: 40px;
  font-size: 15px;
}

footer {
  text-align: center;
  font-size: 14px;
  padding: 20px 0 40px;
  color: #888;
} 