/* 简化版图标CSS，使用Unicode和简单图形替代Font Awesome */

.fas {
  display: inline-block;
  width: 1em;
  height: 1em;
  margin-right: 0.5em;
  font-style: normal;
  line-height: 1;
  text-align: center;
  font-family: sans-serif;
  font-weight: 900;
  color: inherit;
}

/* 使用Unicode字符作为图标 */
.fa-magic::before {
  content: "✨";
}

.fa-info-circle::before {
  content: "ℹ️";
}

.fa-download::before {
  content: "⬇️";
}

.fa-bolt::before {
  content: "⚡";
}

.fa-film::before {
  content: "🎬";
}

.fa-palette::before {
  content: "🎨";
}

.fa-cloud::before {
  content: "☁️";
} 