/* styles/UserDropdown.module.css */
.UserDropdown_dropdown__mjK7P {
  position: relative;
  display: inline-block;
  font-size: 14px; /* 添加这一行来设置整体字体大小 */
}

.UserDropdown_dropdownTrigger__j0nf2 {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--active-color);
  font-size: 14px; /* 为下拉菜单触发器设置字体大小 */
}

.UserDropdown_dropdownTrigger__j0nf2:hover {
  color: var(--positive-color);
}

.UserDropdown_dropdownContent__NrXfB {
  position: absolute;
  top: 100%;
  right: 0;
  background-color: var(--background-color);
  min-width: 200px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  border-radius: 4px;
  z-index: 1000;
  border: 1px solid var(--passive-color);
  font-size: 12px; /* 为下拉菜单内容设置更小的字体大小 */
}

.UserDropdown_dropdownItem__c6t_V {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  width: 100%;
  border: none;
  background: none;
  cursor: pointer;
  text-align: left;
  color: var(--active-color);
  font-size: 12px; /* 为下拉菜单项设置字体大小 */
}

.UserDropdown_dropdownItem__c6t_V:hover {
  background-color: var(--passive-color);
  color: var(--background-color);
}

.UserDropdown_dropdownItem__c6t_V svg {
  color: var(--passive-color);
  font-size: 14px; /* 为图标设置字体大小 */
}

.UserDropdown_dropdownItem__c6t_V:hover svg {
  color: var(--background-color);
}
.Header_nav__F3t74 ul {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
}

.Header_nav__F3t74 ul li {
  padding-left: 1rem;
}

.Header_logo__6vBZG {
  color: var(--strong-color);
  margin-right: 0.5rem;
}


.Header_languageButton__MarJj:hover {
  background: var(--hover-color);
}

.Header_languageButton__MarJj::after {
  font-size: 0.75rem;
}


.Header_languagePicker__WYO16 {
  position: relative;
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
  z-index: 10;
}

.Header_languageDropdown__H7HnV {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 50%;
  transform: translateX(-50%);
  background: var(--sub-color);
  border-radius: 0.5rem;
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 120px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  animation: Header_dropdownFadeIn__fHXm6 0.2s ease;
}



.Header_languageOption__djkdn {
  padding: 0.5rem 1rem;
  border: none;
  background: none;
  color: var(--sub-alt-color);
  cursor: pointer;
  border-radius: 0.25rem;
  text-align: left;
  transition: all 0.2s ease;
}


.Header_languageOption__djkdn:hover {
  background: var(--hover-color);
}

.Header_languageOption__djkdn.Header_active__EB8lX {
  background: var(--main-color);
  color: var(--text-color);
}


.Header_settings__0DsIY {
  display: flex;
  align-items: center; /* 垂直居中对齐 */
  gap: 10px; /* 组件之间的间距 */
}


/* 确保 ThemePicker 和 LanguagePicker 的按钮高度一致 */
.Header_themeButton__Vemnx {  /* 假设你的 ThemePicker 按钮使用这个类名 */
  height: 40px;  /* 设置统一的高度 */
  padding: 8px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.Header_languageButton__MarJj {
  padding: 0.5rem 1rem;
  background: var(--sub-color);
  border: none;
  border-radius: 0.5rem;
  color: var(--text-color);
  cursor: pointer;
  font-size: 0.875rem;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

@keyframes Header_dropdownFadeIn__fHXm6 {
  from {
    opacity: 0;
    transform: translate(-50%, -10px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

/* 添加一些响应式样式 */
@media (max-width: 768px) {
  .Header_languageDropdown__H7HnV {
    width: 200px;
  }
  
  .Header_languageButton__MarJj {
    width: 100%;
    justify-content: space-between;
  }
}

.Header_headerBar__n2_C9 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 2rem;
  background: var(--background-color, #1e1e2e);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  /* 确保始终可见 */
  min-height: 72px;
  width: 100%;
  /* 防止被其他元素覆盖 */
  opacity: 1;
  visibility: visible;
}

.Header_headerBar__n2_C9:hover {
  border-bottom-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.Header_left__9aIGe {
  display: flex;
  align-items: center;
  gap: 20px;
  /* 确保左侧元素可见 */
  opacity: 1;
  visibility: visible;
}

.Header_center__Zh3Nt {
  flex: 1 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.Header_right__K2Msm {
  display: flex;
  align-items: center;
  gap: 24px;
}

.Header_logoLink__IIik4 {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  padding: 12px;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

.Header_logoLink__IIik4::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.5s ease;
}

.Header_logoLink__IIik4:hover::before {
  left: 100%;
}

.Header_logoLink__IIik4:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.Header_logoIcon__u5pMY {
  font-size: 28px;
  color: var(--positive-color, #10b981);
  margin-right: 16px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
  transition: all 0.3s ease;
}

.Header_logoLink__IIik4:hover .Header_logoIcon__u5pMY {
  transform: scale(1.05);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.Header_logoText__Msq47 {
  font-size: 26px;
  font-weight: 800;
  color: var(--active-color, #ffffff);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--active-color, #ffffff), var(--positive-color, #10b981));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.3s ease;
}

.Header_logoLink__IIik4:hover .Header_logoText__Msq47 {
  background: linear-gradient(135deg, var(--positive-color), var(--active-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.Header_iconLink__lVN05 {
  display: flex;
  align-items: center;
  color: var(--passive-color, #a0a0a0);
  font-size: 18px;
  transition: all 0.3s ease;
  text-decoration: none;
  padding: 10px;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

.Header_iconLink__lVN05::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
}

.Header_iconLink__lVN05:hover::before {
  width: 100%;
  height: 100%;
}

.Header_iconLink__lVN05:hover {
  color: var(--positive-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.Header_icon__BPVd4 {
  font-size: 18px;
  transition: all 0.3s ease;
}

.Header_iconLink__lVN05:hover .Header_icon__BPVd4 {
  transform: scale(1.1);
}

.Header_loginButton__BhBIj {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--positive-color), var(--active-color));
  border: none;
  color: var(--background-color);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  padding: 12px 20px;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.Header_loginButton__BhBIj::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.Header_loginButton__BhBIj:hover::before {
  left: 100%;
}

.Header_loginButton__BhBIj:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
  background: linear-gradient(135deg, var(--active-color), var(--positive-color));
}

.Header_loginButton__BhBIj .Header_icon__BPVd4 {
  font-size: 16px;
  margin-right: 8px;
}

/* 响应式设计 */
@media (max-width: 1024px) {
  .Header_headerBar__n2_C9 {
    padding: 0 1.5rem;
    height: 68px;
  }
  
  .Header_left__9aIGe {
    gap: 16px;
  }
  
  .Header_right__K2Msm {
    gap: 20px;
  }
  
  .Header_logoIcon__u5pMY {
    font-size: 24px;
    margin-right: 12px;
  }
  
  .Header_logoText__Msq47 {
    font-size: 22px;
  }
  
  .Header_iconLink__lVN05 {
    padding: 8px;
    font-size: 16px;
  }
  
  .Header_icon__BPVd4 {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .Header_headerBar__n2_C9 {
    padding: 0 1rem;
    height: 64px;
  }
  
  .Header_left__9aIGe {
    gap: 12px;
  }
  
  .Header_right__K2Msm {
    gap: 16px;
  }
  
  .Header_logoIcon__u5pMY {
    font-size: 22px;
    margin-right: 10px;
  }
  
  .Header_logoText__Msq47 {
    font-size: 20px;
    letter-spacing: 1px;
  }
  
  .Header_iconLink__lVN05 {
    padding: 6px;
    font-size: 14px;
  }
  
  .Header_icon__BPVd4 {
    font-size: 14px;
  }
  
  .Header_loginButton__BhBIj {
    padding: 10px 16px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .Header_headerBar__n2_C9 {
    padding: 0 0.75rem;
    height: 60px;
  }
  
  .Header_left__9aIGe {
    gap: 8px;
  }
  
  .Header_right__K2Msm {
    gap: 12px;
  }
  
  .Header_logoIcon__u5pMY {
    font-size: 20px;
    margin-right: 8px;
  }
  
  .Header_logoText__Msq47 {
    font-size: 18px;
    letter-spacing: 0.5px;
  }
  
  .Header_iconLink__lVN05 {
    padding: 4px;
    font-size: 12px;
  }
  
  .Header_icon__BPVd4 {
    font-size: 12px;
  }
  
  .Header_loginButton__BhBIj {
    padding: 8px 12px;
    font-size: 12px;
  }
}


.ThemePicker_trigger__RjzXk {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  background: var(--hover-color);
  border: 1px solid var(--passive-color);
  border-radius: 6px;
  color: var(--active-color);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  min-width: 120px;
}

.ThemePicker_trigger__RjzXk:hover {
  background: var(--passive-color);
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.ThemePicker_triggerContent__9p45i {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
}

.ThemePicker_themeColor__egbbZ {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  border: 1px solid var(--passive-color);
  flex-shrink: 0;
}

.ThemePicker_content__4NVst {
  background: var(--background-color);
  border: 1px solid var(--passive-color);
  border-radius: 8px;
  padding: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(10px);
  z-index: 1000;
}

.ThemePicker_item__gUi7W {
  display: flex;
  align-items: center;
  padding: 10px 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.15s ease;
  color: var(--active-color);
  font-size: 14px;
  font-weight: 500;
  margin: 2px 0;
}

.ThemePicker_item__gUi7W:hover {
  background: var(--hover-color);
  transform: translateX(2px);
}

.ThemePicker_activeItem__ADDH_ {
  background: var(--positive-color);
  color: var(--background-color);
}

.ThemePicker_activeItem__ADDH_:hover {
  background: var(--positive-color);
  color: var(--background-color);
}

.ThemePicker_itemContent__slMwP {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
}

.ThemePicker_themeName__lpXJ1 {
  flex: 1 1;
  text-transform: capitalize;
}

.ThemePicker_checkmark__nOFdt {
  color: var(--background-color);
  font-weight: bold;
  margin-left: auto;
}

.ThemePicker_arrow__Vpt01 {
  fill: var(--background-color);
  stroke: var(--passive-color);
  stroke-width: 1;
}
.Footer_footer__Tl1eP {
  background: var(--background-color);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 1.5rem 2rem;
  box-shadow: 0 -1px 3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.Footer_footer__Tl1eP:hover {
  border-top-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.15);
}

.Footer_footerContainer__nH_FT {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
}

.Footer_footerLeft__0LOiI {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.Footer_footerRight__rF0Vq {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.Footer_footerLink__hOMry {
  display: inline-flex;
  align-items: center;
  color: var(--passive-color);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 6px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.Footer_footerLink__hOMry::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
}

.Footer_footerLink__hOMry:hover::before {
  width: 100%;
  height: 100%;
}

.Footer_footerLink__hOMry:hover {
  color: var(--positive-color);
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.Footer_footerIcon__Ij_gE {
  margin-right: 6px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.Footer_footerLink__hOMry:hover .Footer_footerIcon__Ij_gE {
  transform: scale(1.1);
}

.Footer_footerText__UQsE6 {
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.Footer_footerLink__hOMry:hover .Footer_footerText__UQsE6 {
  color: var(--positive-color);
}

.Footer_themeSection__ajJyd {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.Footer_themeSection__ajJyd:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.Footer_themeIcon__9Eql5 {
  font-size: 14px;
  color: var(--passive-color);
  transition: all 0.3s ease;
}

.Footer_themeSection__ajJyd:hover .Footer_themeIcon__9Eql5 {
  color: var(--positive-color);
  transform: scale(1.1);
}

.Footer_copyright__0_Me0 {
  text-align: center;
  color: var(--passive-color);
  font-size: 12px;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  opacity: 0.8;
}

/* 响应式设计 */
@media (max-width: 1024px) {
  .Footer_footer__Tl1eP {
    padding: 1.25rem 1.5rem;
  }
  
  .Footer_footerContainer__nH_FT {
    gap: 1.5rem;
  }
  
  .Footer_footerLeft__0LOiI {
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .Footer_footer__Tl1eP {
    padding: 1rem 1rem;
  }
  
  .Footer_footerContainer__nH_FT {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
  
  .Footer_footerLeft__0LOiI {
    gap: 1rem;
    justify-content: center;
  }
  
  .Footer_footerRight__rF0Vq {
    gap: 0.75rem;
  }
  
  .Footer_footerLink__hOMry {
    font-size: 13px;
    padding: 6px 10px;
  }
  
  .Footer_footerIcon__Ij_gE {
    font-size: 13px;
    margin-right: 5px;
  }
  
  .Footer_footerText__UQsE6 {
    font-size: 13px;
  }
  
  .Footer_themeSection__ajJyd {
    padding: 6px 10px;
  }
  
  .Footer_themeIcon__9Eql5 {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .Footer_footer__Tl1eP {
    padding: 0.75rem 0.75rem;
  }
  
  .Footer_footerContainer__nH_FT {
    gap: 0.75rem;
  }
  
  .Footer_footerLeft__0LOiI {
    gap: 0.75rem;
  }
  
  .Footer_footerRight__rF0Vq {
    gap: 0.5rem;
  }
  
  .Footer_footerLink__hOMry {
    font-size: 12px;
    padding: 5px 8px;
  }
  
  .Footer_footerIcon__Ij_gE {
    font-size: 12px;
    margin-right: 4px;
  }
  
  .Footer_footerText__UQsE6 {
    font-size: 12px;
  }
  
  .Footer_themeSection__ajJyd {
    padding: 5px 8px;
  }
  
  .Footer_themeIcon__9Eql5 {
    font-size: 12px;
  }
  
  .Footer_copyright__0_Me0 {
    font-size: 11px;
    margin-top: 0.75rem;
    padding-top: 0.75rem;
  }
}

@keyframes Animations_slide-up__H9xDX {
  from {
    opacity: 0;
    transform: translateY(10%);
  }
  to {
    opacity: 1;
    transform: translateY(0%);
  }
}
@keyframes Animations_slide-down__UVjWg {
  from {
    opacity: 0;
    transform: translateY(-10%);
  }
  to {
    opacity: 1;
    transform: translateY(0%);
  }
}
@keyframes Animations_slide-right__spVH3 {
  from {
    opacity: 0;
    transform: translateX(-10%);
  }
  to {
    opacity: 1;
    transform: translateY(0%);
  }
}
@keyframes Animations_slide-left__TP6Ld {
  from {
    opacity: 0;
    transform: translateX(10%);
  }
  to {
    opacity: 1;
    transform: translateY(0%);
  }
}
@keyframes Animations_fade-in___KA_I {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.Animations_slideUp__92My9 {
  animation-name: Animations_slide-up__H9xDX;
  animation-duration: 0.75s;
  animation-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
  animation-fill-mode: forwards;
}
.Animations_slideOutUp__wueAH {
  animation-name: Animations_slide-up__H9xDX;
  animation-duration: 0.75s;
  animation-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
  animation-fill-mode: backwards;
}
.Animations_slideDown__qR06b {
  animation-name: Animations_slide-down__UVjWg;
  animation-duration: 0.75s;
  animation-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
  animation-fill-mode: forwards;
}
.Animations_slideOutDown__qrfKs {
  animation-name: Animations_slide-down__UVjWg;
  animation-duration: 0.75s;
  animation-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
  animation-fill-mode: backwards;
}
.Animations_slideRight__DXgb4 {
  animation-name: Animations_slide-right__spVH3;
  animation-duration: 0.75s;
  animation-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
  animation-fill-mode: forwards;
}
.Animations_slideOutRight__AsdaW {
  animation-name: Animations_slide-right__spVH3;
  animation-duration: 0.75s;
  animation-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
  animation-fill-mode: backwards;
}
.Animations_slideLeft__KqDnP {
  animation-name: Animations_slide-left__TP6Ld;
  animation-duration: 0.75s;
  animation-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
  animation-fill-mode: forwards;
}
.Animations_slideOutLeft__K_E6K {
  animation-name: Animations_slide-left__TP6Ld;
  animation-duration: 0.75s;
  animation-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
  animation-fill-mode: backwards;
}
.Animations_fadeIn__pKF8o {
  animation-name: Animations_fade-in___KA_I;
  animation-duration: 0.75s;
  animation-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
  animation-fill-mode: forwards;
}
.Animations_fadeOut__ykig4 {
  animation-name: Animations_fade-in___KA_I;
  animation-duration: 0.75s;
  animation-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
  animation-fill-mode: backwards;
}

.Button_button__HxzDS {
  font-family: inherit;
  font-size: 1rem;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 100px;
  outline: none;
}

.Button_button__HxzDS:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
}

.Button_button__HxzDS:focus {
  box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.3);
}

.Button_theme___rfVp {
  font-size: 0.6rem;
  padding: 0 0.5rem;
  min-width: auto;
}

.Button_theme___rfVp:hover {
  color: var(--positive-color);
}

.Button_set__NlqWg {
  color: var(--active-color);
  border-color: var(--active-color);
  border-style: solid;
  border-width: 0.1rem;
  padding: 0.5rem;
  min-width: auto;
  background: transparent;
}

.Button_set__NlqWg:hover {
  color: var(--positive-color);
  border-color: var(--positive-color);
}

.Button_primary__THcya {
  background: var(--accent-color, #4CAF50);
  color: white;
  border: 2px solid var(--accent-color, #4CAF50);
}

.Button_primary__THcya:hover:not(:disabled) {
  background: #45a049;
  border-color: #45a049;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.Button_secondary__yn6de {
  background: var(--sub-alt-color, #3a3a3a);
  color: var(--main-color, #ffffff);
  border: 2px solid var(--sub-alt-color, #3a3a3a);
}

.Button_secondary__yn6de:hover:not(:disabled) {
  background: var(--sub-color, #2a2a2a);
  border-color: var(--main-color, #ffffff);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
}

.Button_outline__bAJhc {
  background: transparent;
  color: var(--main-color, #ffffff);
  border: 2px solid var(--main-color, #ffffff);
}

.Button_outline__bAJhc:hover:not(:disabled) {
  background: var(--main-color, #ffffff);
  color: var(--bg-color, #1a1a1a);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.Button_success__GWZOM {
  background: #4CAF50;
  color: white;
  border: 2px solid #4CAF50;
}

.Button_success__GWZOM:hover:not(:disabled) {
  background: #45a049;
  border-color: #45a049;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

/* 响应式设计 */
@media (max-width: 768px) {
  .Button_button__HxzDS {
    font-size: 0.95rem;
    padding: 0.7rem 1.2rem;
    min-width: 80px;
  }
}

@media (max-width: 480px) {
  .Button_button__HxzDS {
    font-size: 0.9rem;
    padding: 0.6rem 1rem;
    min-width: 70px;
  }
}

.LeaderboardPage_container__IuN3a {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--bg-color, #1a1a1a);
  color: var(--main-color, #ffffff);
}

.LeaderboardPage_main__3rw_B {
  flex: 1 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.LeaderboardPage_header__s_JuH {
  text-align: center;
  margin-bottom: 3rem;
  width: 100%;
}

.LeaderboardPage_title__rbKau {
  font-size: 3rem;
  font-weight: bold;
  margin: 0 0 1rem 0;
  color: var(--main-color, #ffffff);
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.LeaderboardPage_subtitle__OaV0R {
  font-size: 1.3rem;
  color: var(--main-color, #ffffff);
  margin: 0;
  line-height: 1.6;
  opacity: 0.8;
  font-weight: 400;
}

/* 统计卡片区域 */
.LeaderboardPage_statsSection__KiTEv {
  width: 100%;
  margin-bottom: 3rem;
}

.LeaderboardPage_statsGrid__XqxlY {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-gap: 1.5rem;
  gap: 1.5rem;
  width: 100%;
}

.LeaderboardPage_statCard__FUprG {
  background: var(--sub-color, #2a2a2a);
  border-radius: 15px;
  padding: 2rem;
  border: 1px solid var(--sub-alt-color, #3a3a3a);
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.LeaderboardPage_statCard__FUprG:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  border-color: var(--accent-color, #4CAF50);
}

.LeaderboardPage_statIcon__9sBTl {
  font-size: 2.5rem;
  color: var(--accent-color, #4CAF50);
  flex-shrink: 0;
}

.LeaderboardPage_statContent__FJn5v h3 {
  font-size: 2.5rem;
  font-weight: bold;
  margin: 0;
  color: var(--main-color, #ffffff);
}

.LeaderboardPage_statContent__FJn5v span {
  font-size: 1rem;
  color: var(--main-color, #ffffff);
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.7;
  font-weight: 500;
}

/* 控制面板区域 */
.LeaderboardPage_controlsSection__0Y_BJ {
  width: 100%;
  margin-bottom: 2rem;
}

.LeaderboardPage_controlsGrid____97I {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background: var(--sub-color, #2a2a2a);
  border-radius: 15px;
  padding: 2rem;
  border: 1px solid var(--sub-alt-color, #3a3a3a);
}

.LeaderboardPage_tabGroup__0Lfwh {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.LeaderboardPage_tab__VSrYN {
  padding: 0.8rem 1.5rem;
  border: 2px solid var(--sub-alt-color, #3a3a3a);
  background: transparent;
  color: var(--main-color, #ffffff);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
  font-size: 1rem;
}

.LeaderboardPage_tab__VSrYN:hover {
  border-color: var(--accent-color, #4CAF50);
  background: rgba(76, 175, 80, 0.1);
}

.LeaderboardPage_tab__VSrYN.LeaderboardPage_active__FW_ZC {
  background: var(--accent-color, #4CAF50);
  border-color: var(--accent-color, #4CAF50);
  color: white;
}

.LeaderboardPage_filterGroup__NbkyY {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
}

.LeaderboardPage_searchBox__KoAEV {
  position: relative;
  flex: 0 1 300px;
  min-width: 250px;
}

.LeaderboardPage_searchIcon__pBlCb {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--sub-color, #888888);
  font-size: 1rem;
  z-index: 1;
}

.LeaderboardPage_searchInput__79S6i {
  width: 100%;
  padding: 0.8rem 1rem 0.8rem 2.5rem;
  border: 2px solid var(--sub-alt-color, #3a3a3a);
  border-radius: 10px;
  background: var(--bg-color, #1a1a1a);
  color: var(--main-color, #ffffff);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.LeaderboardPage_searchInput__79S6i:focus {
  outline: none;
  border-color: var(--accent-color, #4CAF50);
  box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

.LeaderboardPage_filterControls__iyQ9D {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  flex-wrap: wrap;
  flex: 1 1;
  justify-content: flex-end;
}

.LeaderboardPage_filterSelect__gEbZ_ {
  padding: 0.8rem 1rem;
  border: 2px solid var(--sub-alt-color, #3a3a3a);
  border-radius: 10px;
  background: var(--bg-color, #1a1a1a);
  color: var(--main-color, #ffffff);
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.LeaderboardPage_filterSelect__gEbZ_:focus {
  outline: none;
  border-color: var(--accent-color, #4CAF50);
}

.LeaderboardPage_sortButton__CAUdO {
  padding: 0.8rem 1rem;
  border: 2px solid var(--sub-alt-color, #3a3a3a);
  border-radius: 10px;
  background: var(--bg-color, #1a1a1a);
  color: var(--main-color, #ffffff);
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 50px;
}

.LeaderboardPage_sortButton__CAUdO:hover {
  border-color: var(--accent-color, #4CAF50);
  background: rgba(76, 175, 80, 0.1);
}

.LeaderboardPage_actionGroup__v0avt {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.LeaderboardPage_updateInfo__quGkg {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--main-color, #ffffff);
  font-size: 0.9rem;
  opacity: 0.8;
  font-weight: 400;
}

.LeaderboardPage_updateInfo__quGkg svg {
  color: var(--accent-color, #4CAF50);
}

/* 排行榜表格区域 */
.LeaderboardPage_leaderboardSection__KQDYR {
  width: 100%;
  margin-bottom: 2rem;
}

.LeaderboardPage_tableContainer__dXdaj {
  background: var(--sub-color, #2a2a2a);
  border-radius: 15px;
  border: 1px solid var(--sub-alt-color, #3a3a3a);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.LeaderboardPage_leaderboardTable__dJjRw {
  width: 100%;
  border-collapse: collapse;
  background: var(--sub-color, #2a2a2a);
}

.LeaderboardPage_leaderboardTable__dJjRw th {
  background: var(--bg-color, #1a1a1a);
  color: var(--main-color, #ffffff);
  font-weight: 600;
  font-size: 1rem;
  padding: 1.2rem 1rem;
  text-align: left;
  border-bottom: 2px solid var(--sub-alt-color, #3a3a3a);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.LeaderboardPage_leaderboardTable__dJjRw td {
  padding: 1rem;
  border-bottom: 1px solid var(--sub-alt-color, #3a3a3a);
  font-size: 1rem;
  vertical-align: middle;
}

.LeaderboardPage_leaderboardTable__dJjRw tbody tr {
  transition: all 0.3s ease;
}

.LeaderboardPage_leaderboardTable__dJjRw tbody tr:hover {
  background: rgba(76, 175, 80, 0.05);
  transform: scale(1.01);
}

.LeaderboardPage_leaderboardTable__dJjRw tbody tr.LeaderboardPage_topThree__nS0O6 {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
  border-left: 4px solid var(--accent-color, #4CAF50);
}

.LeaderboardPage_rankCell__T_GRT {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: bold;
  font-size: 1.1rem;
}

.LeaderboardPage_rankNumber__DI33c {
  min-width: 30px;
  text-align: center;
}

.LeaderboardPage_goldCrown__xV8UE {
  color: #FFD700;
  font-size: 1.5rem;
}

.LeaderboardPage_silverCrown___9swg {
  color: #C0C0C0;
  font-size: 1.5rem;
}

.LeaderboardPage_bronzeCrown__XM1jh {
  color: #CD7F32;
  font-size: 1.5rem;
}

.LeaderboardPage_userCell__pPH9f {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.LeaderboardPage_avatar__2gIE4 {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 2px solid var(--sub-alt-color, #3a3a3a);
}

.LeaderboardPage_defaultAvatar__5bpsC {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--sub-alt-color, #3a3a3a);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--main-color, #ffffff);
  font-size: 1.2rem;
}

.LeaderboardPage_username__Bvkdm {
  font-weight: 500;
  color: var(--main-color, #ffffff);
}

.LeaderboardPage_modeBadge__Q851D {
  background: var(--accent-color, #4CAF50);
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.LeaderboardPage_wpmValue__maO3m {
  font-weight: bold;
  font-size: 1.2rem;
  color: var(--accent-color, #4CAF50);
}

.LeaderboardPage_accuracyValue__F1Edf {
  font-weight: 500;
  color: var(--main-color, #ffffff);
}

.LeaderboardPage_dateValue__c7HOm {
  color: var(--main-color, #ffffff);
  font-size: 0.9rem;
  opacity: 0.8;
  font-weight: 400;
}

/* 空状态 */
.LeaderboardPage_emptyState__3_q1h {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--sub-color, #888888);
}

.LeaderboardPage_emptyIcon__YqLut {
  font-size: 4rem;
  color: var(--sub-alt-color, #3a3a3a);
  margin-bottom: 1rem;
}

.LeaderboardPage_emptyState__3_q1h h3 {
  font-size: 1.5rem;
  margin: 0 0 0.5rem 0;
  color: var(--main-color, #ffffff);
}

.LeaderboardPage_emptyState__3_q1h p {
  font-size: 1rem;
  margin: 0;
}

/* 加载状态 */
.LeaderboardPage_loading__m62me {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--sub-color, #888888);
}

.LeaderboardPage_spinner__GWAU5 {
  width: 40px;
  height: 40px;
  border: 4px solid var(--sub-alt-color, #3a3a3a);
  border-top: 4px solid var(--accent-color, #4CAF50);
  border-radius: 50%;
  animation: LeaderboardPage_spin__WpDpf 1s linear infinite;
  margin: 0 auto 1rem;
}

@keyframes LeaderboardPage_spin__WpDpf {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* 错误状态 */
.LeaderboardPage_error__o7hXp {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--negative-color, #f44336);
}

.LeaderboardPage_error__o7hXp p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.LeaderboardPage_loginRequired__bYUVT {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--main-color, #ffffff);
}

.LeaderboardPage_loginRequired__bYUVT .LeaderboardPage_lockIcon__gxiUc {
  font-size: 4rem;
  color: var(--accent-color, #4CAF50);
  margin-bottom: 1rem;
}

.LeaderboardPage_loginRequired__bYUVT h3 {
  font-size: 2rem;
  margin: 1rem 0;
  color: var(--main-color, #ffffff);
}

.LeaderboardPage_loginRequired__bYUVT p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: var(--sub-color, #888888);
  line-height: 1.6;
}

/* 分页区域 */
.LeaderboardPage_paginationSection__OER_4 {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.LeaderboardPage_pagination__0BoLI {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--sub-color, #2a2a2a);
  border-radius: 10px;
  padding: 1rem 2rem;
  border: 1px solid var(--sub-alt-color, #3a3a3a);
}

.LeaderboardPage_pageButton__8RfAd {
  padding: 0.5rem 1rem;
  border: 2px solid var(--sub-alt-color, #3a3a3a);
  border-radius: 8px;
  background: var(--bg-color, #1a1a1a);
  color: var(--main-color, #ffffff);
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.LeaderboardPage_pageButton__8RfAd:hover:not(:disabled) {
  border-color: var(--accent-color, #4CAF50);
  background: rgba(76, 175, 80, 0.1);
}

.LeaderboardPage_pageButton__8RfAd:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.LeaderboardPage_pageInfo__mvpRO {
  color: var(--main-color, #ffffff);
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0.8;
}

/* 响应式设计 */
@media (max-width: 1024px) {
  .LeaderboardPage_statsGrid__XqxlY {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
  
  .LeaderboardPage_filterGroup__NbkyY {
    flex-direction: column;
    align-items: stretch;
  }
  
  .LeaderboardPage_searchBox__KoAEV {
    min-width: auto;
  }
  
  .LeaderboardPage_filterControls__iyQ9D {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .LeaderboardPage_main__3rw_B {
    padding: 1.5rem 1rem;
  }

  .LeaderboardPage_header__s_JuH {
    margin-bottom: 2rem;
  }

  .LeaderboardPage_title__rbKau {
    font-size: 2.5rem;
  }

  .LeaderboardPage_subtitle__OaV0R {
    font-size: 1.1rem;
  }

  .LeaderboardPage_statsGrid__XqxlY {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .LeaderboardPage_statCard__FUprG {
    padding: 1.5rem;
  }

  .LeaderboardPage_statContent__FJn5v h3 {
    font-size: 2rem;
  }

  .LeaderboardPage_controlsGrid____97I {
    padding: 1.5rem;
  }

  .LeaderboardPage_tabGroup__0Lfwh {
    justify-content: center;
  }

  .LeaderboardPage_tab__VSrYN {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
  }

  .LeaderboardPage_leaderboardTable__dJjRw th,
  .LeaderboardPage_leaderboardTable__dJjRw td {
    padding: 0.8rem 0.5rem;
    font-size: 0.9rem;
  }

  .LeaderboardPage_avatar__2gIE4,
  .LeaderboardPage_defaultAvatar__5bpsC {
    width: 30px;
    height: 30px;
  }

  .LeaderboardPage_username__Bvkdm {
    font-size: 0.9rem;
  }

  .LeaderboardPage_modeBadge__Q851D {
    font-size: 0.7rem;
    padding: 0.2rem 0.6rem;
  }
}

@media (max-width: 480px) {
  .LeaderboardPage_main__3rw_B {
    padding: 1rem 0.5rem;
  }

  .LeaderboardPage_title__rbKau {
    font-size: 2rem;
  }

  .LeaderboardPage_subtitle__OaV0R {
    font-size: 1rem;
  }

  .LeaderboardPage_statCard__FUprG {
    padding: 1rem;
  }

  .LeaderboardPage_statIcon__9sBTl {
    font-size: 2rem;
  }

  .LeaderboardPage_statContent__FJn5v h3 {
    font-size: 1.8rem;
  }

  .LeaderboardPage_controlsGrid____97I {
    padding: 1rem;
  }

  .LeaderboardPage_tabGroup__0Lfwh {
    flex-direction: column;
  }

  .LeaderboardPage_tab__VSrYN {
    width: 100%;
    text-align: center;
  }

  .LeaderboardPage_leaderboardTable__dJjRw {
    font-size: 0.8rem;
  }

  .LeaderboardPage_leaderboardTable__dJjRw th,
  .LeaderboardPage_leaderboardTable__dJjRw td {
    padding: 0.6rem 0.3rem;
    font-size: 0.8rem;
  }

  .LeaderboardPage_pagination__0BoLI {
    flex-direction: column;
    gap: 0.5rem;
  }
} 
