/* 麥閒 MineShine — 主站自訂樣式
   Tailwind 沒包到的：中文斷行、不換行片語、平衡標題 */

html { scroll-behavior: smooth; }

/* 繁體中文嚴格斷行：避免單字被切散 */
.keep-all {
  word-break: keep-all;
  line-break: strict;
  overflow-wrap: break-word;
}

/* 標題平衡換行 */
.balance {
  text-wrap: balance;
}

/* 品牌 / 型號 / 金額 / 英數混排：不可在中間換行 */
.nb {
  white-space: nowrap;
}

/* 桌機才出現的手動換行（手機自動斷） */
@media (max-width: 640px) {
  .md-up { display: none; }
}

/* 卡片懸停微微上浮 */
.card { transition: transform 220ms ease, box-shadow 220ms ease; will-change: transform; }
.card:hover { transform: translateY(-2px); }

/* Turnstile widget 在深色卡片上的對齊 */
.cf-turnstile { display: flex; justify-content: center; min-height: 65px; }

/* 禁止 textarea 的 resize handle 出現雙色（深色背景下不協調） */
textarea { color-scheme: dark; }

/* 隱藏蜜罐欄位 */
.hidden[aria-hidden="true"] { position: absolute; left: -9999px; height: 0; width: 0; overflow: hidden; }
