* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  min-width: 320px;
  max-width: 100%;
  background: #fff5df;
  color: var(--color-ink);
  font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans CJK SC", Arial, sans-serif;
  overflow-x: hidden;
}

body {
  margin: 0;
  width: 100%;
  max-width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background:
    linear-gradient(90deg, rgba(255, 238, 190, 0.7), rgba(255, 250, 240, 0.94) 16%, rgba(255, 250, 240, 0.94) 84%, rgba(255, 238, 190, 0.7)),
    repeating-linear-gradient(135deg, rgba(185, 120, 18, 0.08), rgba(185, 120, 18, 0.08) 1px, transparent 1px, transparent 12px);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid var(--color-gold-500);
  outline-offset: 3px;
}

.site-container {
  width: 100%;
  max-width: 100%;
  margin: 0;
}
