/* ========================================
   瀏覽器重置（Reset）
   消除各瀏覽器預設樣式差異，讓跨瀏覽器表現一致
======================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;           /* 錨點平滑滾動 */
  -webkit-text-size-adjust: 100%;    /* 防止 iOS 自動放大文字 */
}

body {
  min-height: 100vh;
  line-height: 1.8;
  text-rendering: optimizeLegibility;
}

img,
picture,
video,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

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

ul,
ol {
  list-style: none;
}
