/* Reset + nền + typography cơ bản + icon. */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Be Vietnam Pro", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  font-size: 15px;
}

a {
  color: var(--accent);
  text-decoration: none;
}

h1 {
  font-size: 1.75rem;
  font-weight: 700;
  text-align: center;
  margin: .2em 0;
}

.muted {
  color: var(--muted);
}

/* Icon FontAwesome inline (xem internal/ui/icon). Màu theo currentColor. */
.fa-icon {
  width: 1em;
  height: 1em;
  vertical-align: -0.125em;
  display: inline-block;
  flex: none;
}

.btn .fa-icon {
  margin-right: .4em;
}

/* <picture> chỉ là bọc nguồn AVIF — không chiếm layout, để CSS img cũ chạy nguyên */
/* picture { display: contents; } */
