/* 双人四级 - 自定义补充样式
   Tailwind CDN 已处理大部分样式，此处只补充 Tailwind 工具类覆盖不到的细节。
*/

/* iOS Safari 输入框自动缩放防止：font-size >= 16px 可阻止缩放
   已在 HTML 中用 style="font-size:16px;" 内联处理，此处作备份声明 */
input[type="text"],
input[type="password"],
input[type="email"],
textarea,
select {
  font-size: 16px;
}

/* 卡片轻微悬浮动画 */
.card-hover {
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.card-hover:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* 按钮点击反馈 */
button:active,
a.btn:active {
  transform: scale(0.97);
}

/* 滚动条美化（Webkit） */
::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}
::-webkit-scrollbar-track {
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background: #fda4af; /* rose-300 */
  border-radius: 2px;
}
