/*
Theme Name: Suguang Accelerator
Author: ChatGPT
Version: 1.0
*/
body {
  margin: 0;
  font-family: "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  background-color: #0a0f1a;
  color: #ffffff;
}
.hero-section {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(to bottom, #0d1c33, #0a0f1a);
}
.logo {
  max-width: 120px;
  margin-bottom: 20px;
}
.slogan {
  font-size: 1.2rem;
  color: #6cc6ff;
  margin-bottom: 30px;
}
.download-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 50px;
}
.download-btn {
  background-color: #0f6cf4;
  padding: 12px 24px;
  border-radius: 8px;
  color: #fff;
  text-decoration: none;
  transition: background 0.3s;
}
.download-btn:hover {
  background-color: #005eff;
}
.features {
  padding: 40px 20px;
  text-align: center;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
  margin-top: 20px;
}
.feature-card {
  background: #1a2437;
  padding: 20px;
  border-radius: 12px;
  font-size: 1.1rem;
}
.timeline {
  padding: 40px 20px;
  background-color: #121826;
}
.timeline-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 20px;
}
.step {
  background: #1e2a44;
  padding: 16px 20px;
  border-radius: 10px;
}
.blog {
  padding: 40px 20px;
}
.posts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 20px;
}
.post-card {
  background: #1a1a2e;
  padding: 20px;
  border-radius: 12px;
}
