/* 导航 */
.header-site-header {
  position: fixed;
  top: 0;
  width: 100%;
  min-width: 1204px;
  /* height: 80px; */
  background-color: transparent;
  z-index: 1000;
  transition:
    background-color 0.3s ease,
    box-shadow 0.3s ease;
}

/* Scrolled state */
.header-site-header.header-scrolled {
  background-color: #111;
}

.header-inner {
  width: 1204px;
  /* height: 100%; */
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* padding: 0;  */
  padding: 16px 0;
}

/* Logo */
.header-logo {
  width: 82px;
  height: auto;
}

/* 导航链接 */
.header-nav-menu {
  display: flex;
  gap: 40px;
  list-style: none; /* Ensure no bullets */
  /* margin: 0; */
  padding: 0;
  margin-left: 157px;
}

.header-nav-item {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  flex-shrink: 0;
  transition: all 0.2s;
  cursor: pointer;
}

.header-nav-item:hover {
  opacity: 0.8;
}
