/* 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;
  }
}

/* 页面容器 */
.WordRush_container__oU_yO {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--bg-color, #1a1a1a);
  color: var(--main-color, #ffffff);
}

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

/* 页面头部 */
.WordRush_header__DQHdv {
  width: 100%;
  margin-bottom: 2rem;
  position: relative;
}

.WordRush_backButton__Jzc3V {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--sub-color, #2a2a2a);
  border: 1px solid var(--sub-alt-color, #3a3a3a);
  border-radius: 10px;
  color: var(--main-color, #ffffff);
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.WordRush_backButton__Jzc3V:hover {
  background: var(--hover-color, #3a3a3a);
  border-color: var(--accent-color, #4CAF50);
  transform: translateY(-2px);
}

.WordRush_titleSection__aIr_H {
  text-align: center;
  margin-top: 3rem;
}

.WordRush_title__M2yCv {
  font-size: 3rem;
  font-weight: bold;
  margin: 0 0 1rem 0;
  background: linear-gradient(135deg, #ff6b6b 0%, #ffa726 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 20px rgba(255, 107, 107, 0.3);
}

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

/* 内容区域 */
.WordRush_content__9l55z {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  width: 100%;
  max-width: 800px;
}

/* 游戏设置 */
.WordRush_gameSetup__lMGVv {
  width: 100%;
  display: flex;
  justify-content: center;
}

.WordRush_setupCard__7KLv8 {
  background: var(--sub-color, #2a2a2a);
  border-radius: 20px;
  padding: 3rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--sub-alt-color, #3a3a3a);
  width: 100%;
  max-width: 600px;
}

.WordRush_setupCard__7KLv8 h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--main-color, #ffffff);
}

/* 模式选择网格 */
.WordRush_modeGrid__xT6HW {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-gap: 1.5rem;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.WordRush_modeCard__2xSc0 {
  background: var(--sub-alt-color, #3a3a3a);
  border: 2px solid transparent;
  border-radius: 15px;
  padding: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.WordRush_modeCard__2xSc0:hover {
  transform: translateY(-5px);
  border-color: var(--accent-color, #4CAF50);
  box-shadow: 0 10px 25px rgba(76, 175, 80, 0.2);
}

.WordRush_modeCard__2xSc0.WordRush_selected__XmpoH {
  border-color: var(--accent-color, #4CAF50);
  background: rgba(76, 175, 80, 0.1);
  box-shadow: 0 10px 25px rgba(76, 175, 80, 0.3);
}

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

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

.WordRush_modeCard__2xSc0 p {
  font-size: 0.9rem;
  color: var(--sub-color, #cccccc);
  margin: 0 0 1rem 0;
  line-height: 1.4;
}

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

.WordRush_customTimeInput___YMsm {
  background: var(--bg-color, #1a1a1a);
  border: 1px solid var(--sub-color, #3a3a3a);
  border-radius: 8px;
  padding: 0.5rem;
  color: var(--main-color, #ffffff);
  text-align: center;
  font-size: 1.1rem;
  width: 80px;
}

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

/* 设置组 */
.WordRush_settingGroup__1Zxdt {
  margin: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.WordRush_settingGroup__1Zxdt label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  color: var(--main-color, #ffffff);
  cursor: pointer;
}

.WordRush_settingGroup__1Zxdt label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--accent-color, #4CAF50);
}

/* 游戏区域 */
.WordRush_gameArea__pSk5v {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.WordRush_gameHeader__Ew50y {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--sub-color, #2a2a2a);
  border-radius: 15px;
  padding: 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.WordRush_gameStats__sQVk1 {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.WordRush_statItem__dMcQN {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--main-color, #ffffff);
  background: var(--sub-alt-color, #3a3a3a);
  padding: 0.5rem 1rem;
  border-radius: 8px;
}

.WordRush_statItem__dMcQN svg {
  color: var(--accent-color, #4CAF50);
  font-size: 1rem;
}

/* 计时器容器 */
.WordRush_timerContainer__AUqfS {
  display: flex;
  align-items: center;
}

.WordRush_timer__Zvjw_ {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--accent-color, #4CAF50);
  background: var(--sub-alt-color, #3a3a3a);
  padding: 0.75rem 1.5rem;
  border-radius: 10px;
  border: 2px solid var(--accent-color, #4CAF50);
}

.WordRush_gameControls__EBbUa {
  display: flex;
  gap: 0.5rem;
}

.WordRush_controlButton__zKdWS {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: var(--sub-alt-color, #3a3a3a);
  border: 1px solid var(--sub-color, #4a4a4a);
  border-radius: 10px;
  color: var(--main-color, #ffffff);
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.WordRush_controlButton__zKdWS:hover {
  background: var(--hover-color, #4a4a4a);
  border-color: var(--accent-color, #4CAF50);
  transform: translateY(-2px);
}

/* 词汇显示 */
.WordRush_wordDisplay__hHcM9 {
  background: var(--sub-color, #2a2a2a);
  border-radius: 20px;
  padding: 3rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--sub-alt-color, #3a3a3a);
}

.WordRush_wordInfo__6Ya4H {
  margin-bottom: 2rem;
}

.WordRush_currentWord__SwC6E {
  font-size: 3rem;
  font-weight: bold;
  margin: 0 0 1rem 0;
  color: var(--main-color, #ffffff);
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.WordRush_wordProgress__cmRDY {
  font-size: 1rem;
  color: var(--sub-color, #cccccc);
}

.WordRush_inputArea__h_IVA {
  margin-bottom: 2rem;
}

.WordRush_wordInput__FI0jq {
  width: 100%;
  max-width: 400px;
  padding: 1rem 1.5rem;
  font-size: 1.2rem;
  background: var(--bg-color, #1a1a1a);
  border: 2px solid var(--sub-alt-color, #3a3a3a);
  border-radius: 15px;
  color: var(--main-color, #ffffff);
  text-align: center;
  transition: all 0.3s ease;
}

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

.WordRush_wordInput__FI0jq:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.WordRush_inputProgress__6z4W7 {
  margin-top: 1rem;
  width: 100%;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.WordRush_progressBar__9v_16 {
  height: 4px;
  background: var(--sub-alt-color, #3a3a3a);
  border-radius: 2px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.WordRush_progressBar__9v_16 > div {
  height: 100%;
  transition: all 0.3s ease;
}

.WordRush_wordActions__kfkZh {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.WordRush_actionButton__jZnjm {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--sub-alt-color, #3a3a3a);
  border: 1px solid var(--sub-color, #4a4a4a);
  border-radius: 10px;
  color: var(--main-color, #ffffff);
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.WordRush_actionButton__jZnjm:hover {
  background: var(--hover-color, #4a4a4a);
  border-color: var(--accent-color, #4CAF50);
  transform: translateY(-2px);
}

.WordRush_actionButton__jZnjm svg {
  font-size: 1rem;
}

/* 连击效果 */
.WordRush_comboEffect__IdGqK {
  position: absolute;
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--accent-color, #4CAF50);
  text-shadow: 0 0 10px rgba(76, 175, 80, 0.5);
  animation: WordRush_comboAnimation__snU2j 1.5s ease-out forwards;
  pointer-events: none;
  z-index: 1000;
}

@keyframes WordRush_comboAnimation__snU2j {
  0% {
    opacity: 0;
    transform: scale(0.5) translateY(0);
  }
  50% {
    opacity: 1;
    transform: scale(1.2) translateY(-20px);
  }
  100% {
    opacity: 0;
    transform: scale(1) translateY(-40px);
  }
}

/* 游戏结果 */
.WordRush_resultsArea__w_3bk {
  width: 100%;
  display: flex;
  justify-content: center;
}

.WordRush_resultsCard__hdKHr {
  background: var(--sub-color, #2a2a2a);
  border-radius: 20px;
  padding: 3rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--sub-alt-color, #3a3a3a);
  width: 100%;
  max-width: 600px;
  animation: WordRush_fadeIn__Rsnw1 0.5s ease-out;
}

.WordRush_resultsCard__hdKHr h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: var(--main-color, #ffffff);
  background: linear-gradient(135deg, #ff6b6b 0%, #ffa726 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.WordRush_resultsStats__DO5Ge {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  grid-gap: 1.5rem;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.WordRush_resultStat__77uuZ {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.5rem;
  background: var(--sub-alt-color, #3a3a3a);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.WordRush_resultStat__77uuZ:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.WordRush_resultStat__77uuZ svg {
  font-size: 2rem;
  color: var(--accent-color, #4CAF50);
}

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

.WordRush_resultStat__77uuZ span {
  font-size: 0.9rem;
  color: var(--sub-color, #cccccc);
  text-align: center;
}

.WordRush_resultsActions__MjWKp {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* 动画 */
@keyframes WordRush_fadeIn__Rsnw1 {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes WordRush_slideUp__2MQdD {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 响应式设计 */
@media (max-width: 768px) {
  .WordRush_main__n1k5r {
    padding: 1rem;
  }
  
  .WordRush_title__M2yCv {
    font-size: 2.5rem;
  }
  
  .WordRush_subtitle__lCPb2 {
    font-size: 1.1rem;
  }
  
  .WordRush_setupCard__7KLv8, .WordRush_wordDisplay__hHcM9, .WordRush_resultsCard__hdKHr {
    padding: 2rem 1.5rem;
  }
  
  .WordRush_currentWord__SwC6E {
    font-size: 2.5rem;
  }
  
  .WordRush_gameHeader__Ew50y {
    flex-direction: column;
    gap: 1rem;
  }
  
  .WordRush_gameStats__sQVk1 {
    justify-content: center;
  }
  
  .WordRush_statItem__dMcQN {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }
  
  .WordRush_wordHeader__E3IGn {
    flex-direction: column;
    gap: 1rem;
  }
  
  .WordRush_wordActions__kfkZh {
    flex-direction: column;
    align-items: center;
  }
  
  .WordRush_actionButton__jZnjm {
    width: 100%;
    max-width: 200px;
  }
  
  .WordRush_resultsStats__DO5Ge {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .WordRush_resultsActions__MjWKp {
    flex-direction: column;
    align-items: center;
  }
  
  .WordRush_backButton__Jzc3V {
    position: relative;
    margin-bottom: 1rem;
  }
  
  .WordRush_titleSection__aIr_H {
    margin-top: 1rem;
  }
}

@media (max-width: 480px) {
  .WordRush_title__M2yCv {
    font-size: 2rem;
  }
  
  .WordRush_subtitle__lCPb2 {
    font-size: 1rem;
  }
  
  .WordRush_setupCard__7KLv8, .WordRush_wordDisplay__hHcM9, .WordRush_resultsCard__hdKHr {
    padding: 1.5rem 1rem;
  }
  
  .WordRush_currentWord__SwC6E {
    font-size: 2rem;
  }
  
  .WordRush_wordInput__FI0jq {
    font-size: 1rem;
    padding: 0.8rem 1.2rem;
  }
  
  .WordRush_resultsStats__DO5Ge {
    grid-template-columns: 1fr;
  }
  
  .WordRush_backButton__Jzc3V {
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
  }
  
  .WordRush_titleSection__aIr_H {
    margin-top: 0.5rem;
  }
  
  .WordRush_modeGrid__xT6HW {
    grid-template-columns: 1fr;
  }
} 
