/* 目前页面无内联<style>，如需自定义样式可在此添加 */

body {
  font-family: 'Inter', sans-serif;
  min-height: 100vh;
  /* overflow: hidden; */
}
html {
  height: 100%;
}
main {
  /* height: 100vh; */
  /* min-height: 100vh; */
}

/* 导航栏滑动下划线效果 */
.nav-underline {
  position: relative;
  display: flex;
  gap: 0.5rem;
}

.nav-underline .nav-link {
  position: relative;
  padding-bottom: 4px;
  transition: color 0.2s;
}

.nav-underline .nav-link::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: #222;
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.3s;
}

.dark .nav-underline .nav-link::after {
  background: #e5e7eb; /* Tailwind的gray-200，亮色下划线 */
}

.nav-underline .nav-link.active::after,
.nav-underline .nav-link:hover::after {
  transform: scaleX(1);
} 