#contentContainer {
  /* 內容樣式設置 */
  /* scroll-padding-top: 90px; 確保錨點連結不被頭部遮擋 */
}

/* 確保第一個標題有足夠的頂部邊距 */
#contentContainer h1:first-child {
  padding-top: 12px;
  margin-top: 8px;
}

/* 使內容淡入效果更加平滑 */
.content-fade-in {
  animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
