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

.Security_container__QAtWW {
  min-height: 100vh;
  background: var(--background-color);
  color: var(--active-color);
  font-family: 'Azeret Mono', monospace;
  padding: 0;
  margin: 0;
}

.Security_content__0ifZC {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
  position: relative;
}

.Security_backLink__to7WO {
  display: inline-flex;
  align-items: center;
  color: var(--positive-color);
  font-weight: 500;
  font-size: 15px;
  margin-bottom: 24px;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 8px 12px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.Security_backLink__to7WO:hover {
  background: rgba(0, 0, 0, 0.08);
  transform: translateX(-4px);
}

.Security_backIcon__P1dx9 {
  margin-right: 8px;
  font-size: 14px;
}

.Security_header__gO_rb {
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}

.Security_title__lhJDm {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--positive-color);
  line-height: 1.2;
}

.Security_intro__t0_Qo {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--active-color);
  margin-bottom: 30px;
}

.Security_section__9T3dB {
  margin-bottom: 40px;
  padding: 30px;
  background: rgba(0, 0, 0, 0.03);
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.Security_section__9T3dB:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border-color: rgba(0, 0, 0, 0.2);
}

.Security_sectionTitle__nbXkD {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--positive-color);
  display: flex;
  align-items: center;
  gap: 12px;
}

.Security_sectionTitle__nbXkD::before {
  content: '';
  width: 4px;
  height: 20px;
  background: linear-gradient(135deg, var(--positive-color), var(--strong-color));
  border-radius: 2px;
}

.Security_sectionContent__cob91 {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--active-color);
}

.Security_list__HqWb8 {
  margin: 16px 0;
  padding-left: 20px;
}

.Security_listItem__6_yy5 {
  margin-bottom: 8px;
  line-height: 1.6;
  position: relative;
}

.Security_listItem__6_yy5::before {
  content: '•';
  color: var(--positive-color);
  font-weight: bold;
  position: absolute;
  left: -15px;
}

.Security_highlightBox__B44zp {
  background: rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  padding: 20px;
  margin: 20px 0;
}

.Security_highlightTitle__jHJMH {
  font-weight: 600;
  color: var(--positive-color);
  margin-bottom: 12px;
  font-size: 1.1rem;
}

.Security_highlightList__fakfo {
  margin: 0;
  padding-left: 20px;
}

.Security_highlightItem__K2wg3 {
  margin-bottom: 6px;
  line-height: 1.5;
}

.Security_link__uigws {
  color: var(--positive-color);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}

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

.Security_contactSection__mLY_G {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05));
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  padding: 30px;
  margin-top: 40px;
}

.Security_contactTitle__NxFrn {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--positive-color);
  text-align: center;
}

.Security_contactInfo__RtzuF {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-gap: 20px;
  gap: 20px;
  margin-top: 20px;
}

.Security_contactItem__EkJM2 {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: rgba(0, 0, 0, 0.03);
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.Security_contactItem__EkJM2:hover {
  transform: translateY(-2px);
  background: rgba(0, 0, 0, 0.08);
}

.Security_contactIcon__M64Bu {
  font-size: 1.2rem;
  color: var(--positive-color);
}

.Security_contactText__I5Aa_ {
  font-size: 0.95rem;
  color: var(--active-color);
}

.Security_securityFeatures__Qg8Zl {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  grid-gap: 24px;
  gap: 24px;
  margin-top: 30px;
}

.Security_securityCard__q_gMc {
  padding: 24px;
  background: rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.Security_securityCard__q_gMc::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--positive-color), var(--strong-color));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.Security_securityCard__q_gMc:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  border-color: rgba(0, 0, 0, 0.3);
}

.Security_securityCard__q_gMc:hover::before {
  transform: scaleX(1);
}

.Security_securityIcon__lJolM {
  font-size: 2rem;
  margin-bottom: 16px;
  color: var(--positive-color);
}

.Security_securityTitle__Fukiy {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--main-color);
}

.Security_securityDescription__9ByZL {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--passive-color);
}

/* 响应式设计 */
@media (max-width: 768px) {
  .Security_content__0ifZC {
    padding: 20px 16px;
  }
  
  .Security_title__lhJDm {
    font-size: 2rem;
  }
  
  .Security_section__9T3dB {
    padding: 20px;
  }
  
  .Security_securityFeatures__Qg8Zl {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .Security_contactInfo__RtzuF {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .Security_sectionTitle__nbXkD {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .Security_title__lhJDm {
    font-size: 1.8rem;
  }
  
  .Security_sectionTitle__nbXkD {
    font-size: 1.2rem;
  }
  
  .Security_intro__t0_Qo {
    font-size: 1rem;
  }
} 
