html {
  scroll-behavior: smooth;
}

:root {
  --primary-color: #00d1b2;
  --secondary-color: #1a1a1a;
  --background-color: #f8f9fa;
  --text-color: #2c3e50;
  --gray-light: #e9ecef;
  --gray-dark: #6c757d;
  --accent-color: #00b09e;
  --white: #ffffff;
  --border-color: #dee2e6;
}

/* 字体 font-family 使用方式 */
@font-face {
  font-family: "Geistcos";
  src: url('/assets/fonts/Geist-VariableFont_wght.ttf') format('truetype');
  font-weight: normal;
  /* 正常或粗细 */
  font-style: normal;
  /* 正常或斜体 */
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Geistcos";
}

body {
  background-color: var(--background-color);
  color: var(--text-color);
  line-height: 1.6;
}

code {
  text-align: left;
}

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: white;
  /* border-bottom: 1px solid #e5e7eb; */
  z-index: 2000;
  padding: 1rem 0;
}

.header-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  min-height: 72px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 32px;
  width: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  height: 48px;
  min-height: 48px;
}

.nav-link {
  color: #374151;
  text-decoration: none;
  font-family: Geistcos;
  font-weight: 400;
  font-size: 16px;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  height: 48px;
  min-height: 48px;
  line-height: 1.2;
  padding: 12px 0;
}

.nav-link:hover {
  color: #3873FF;
}

/* 中文字体对齐优化 */
.nav-menu * {
  font-family: Geistcos;
}

/* Resources Dropdown Styles */
.resources-dropdown,
.solutions-dropdown {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}

.resources-dropdown-btn,
.solutions-dropdown-btn {
  padding: 12px 0;
  border-radius: 4px;
  display: flex;
  gap: 6px;
  align-items: center;
  justify-content: flex-start;
  cursor: pointer;
  line-height: 1.2;
  height: 48px;
  min-height: 48px;
}

.resources-btn,
.solutions-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: 400;
  height: 48px;
  min-height: 48px;
  padding: 0;
  margin: 0;
}

.resources-btn svg {
  transition: transform 0.2s ease;
}

.solutions-btn svg {
  transition: transform 0.2s ease;
}

.resources-dropdown-menu,
.solutions-dropdown-menu {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: calc(100% + 1.3rem);
  left: -40%;
  min-width: 200px;
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 4px !important;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  z-index: 1000;
  transition: all 0.2s ease-in-out;
  transform: translateY(-10px);
  pointer-events: none;
  padding: 10px;
}

.resources-dropdown-menu {
  left: 0;
  top: calc(100% + .3rem);
}

.resources-dropdown-menu.active{
  visibility: visible;
  opacity: 1;
  transform: translate(-40%, 5%);
  pointer-events: auto;
  left: 0;
}
.solutions-dropdown-menu.active {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  left: 50%;
  position: fixed;
  top: 84px;
  transform: translateX(-50% -50%);
}

.resources-dropdown-menu.active {
  transform: 0;
}

.resources-dropdown-menu.active {
  padding: 0;
  transform: translateY(0);
}

.resources-dropdown-menu {
  display: flex;
  width: 218px;
  border-radius: 10px !important;
  border: 1px solid #E4E7ED;
  background: #FFF;
  box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.resources-dropdown-menu .dropdown-content {
  flex: 1;
}

.resources-dropdown-menu .location {
  padding: 43px 30px 30px 30px;
  box-sizing: border-box;
  width: 300px;
  flex-shrink: 0;
  background: linear-gradient(180deg, #E2E9FA -3.21%, #FFF 100%);
}

.resources-dropdown-menu .location h3 {
  color: #333;
  font-family: Geistcos;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 19px;
}

.resources-dropdown-menu .location-item {
  display: flex;
  align-items: center;
  margin-bottom: 22px;
}

.resources-dropdown-menu .location-item:last-child {
  margin-bottom: 0;
}

.resources-dropdown-menu .location-item span {
  margin-left: 10px;
}

.resources-dropdown-menu .dropdown-content {
  display: flex;
  flex-direction: column;
  padding: 20px;

}

.resources-dropdown-menu .dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px !important;
  width: 100%;

  padding: 6px 0 6px 20px;
  color: #374151;
  text-decoration: none;
  font-size: 0.9rem;
  border-radius: 6px !important;
  transition: all 0.2s;
  /* flex: 1; */
  /* border-radius: 0.75rem; */
}

.resources-dropdown-menu .dropdown-item a {
  text-decoration: none;
  color: #111111 !important;
  font-family: Geistcos;
  font-weight: 500;
  font-size: 14px;
  line-height: 100%;
}

.nav-contact {
  background: url('/assets/nav-catact.svg');
  width: 48px;
  height: 48px;
  background-color: #fff;
  box-shadow: 0px 4px 12px 0px #0000000D;
  border-radius: 8px;
}

.nav-about {
  background: url('/assets/nav-about.svg');
  width: 48px;
  flex-shrink: 0;
  height: 48px;
  background-color: #fff;
  box-shadow: 0px 4px 12px 0px #0000000D;
  border-radius: 8px;
}

.nav-part {
  background: url('/assets/nav-part.svg') no-repeat;
  background-size: 100%;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background-color: #fff;
  box-shadow: 0px 4px 12px 0px #0000000D;
  border-radius: 8px;
}

.nav-blog {
  background: url('/assets/nav-blog.svg');
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background-color: #fff;
  box-shadow: 0px 4px 12px 0px #0000000D;
  border-radius: 8px;
}

.solutions-dropdown-menu .dropdown-item {
  display: flex;
  gap: 0.5rem;
  width: 100%;
  text-align: left !important;
  padding: 6px 0 6px 20px;
  color: #374151;
  text-decoration: none;
  font-size: 0.9rem;
  border-radius: 6px !important;
  transition: all 0.2s;
}

.solutions-dropdown-menu .dropdown-item.base {
  font-family: Geistcos;
}

.s-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;

}

.s-icon img {
  width: 100%;
  height: 100%;
}

.solutions-dropdown-menu .dropdown-item h3 {
  font-weight: 700;
  font-size: 16px;
}

.solutions-dropdown-menu .dropdown-item a {
  text-decoration: none;
  color: #111111;
  font-family: Geist;
  font-weight: 500;
  font-size: 14px;
  line-height: 100%;
  font-family: Geistcos;

}

.solutions-dropdown-menu .dropdown-item p {
  font-family: Geistcos;
  font-weight: 400;

  font-size: 14px;
  line-height: 18px;

  color: #666666;
}

.btn_active {
  background-color: #e8e8e8;
}

.resources-dropdown-menu .dropdown-item svg {
  width: 16px;
  height: 16px;
  color: #6b7280;
  flex-shrink: 0;
}

.solutions-dropdown-menu .dropdown-item svg {
  width: 16px;
  height: 16px;
  color: #6b7280;
  flex-shrink: 0;
}

.resources-dropdown-menu .dropdown-item:hover {
  background: #f9fafb;
  color: #6366f1;
}

.solutions-dropdown-menu .dropdown-item:hover {
  background: #f9fafb;
  color: #6366f1;
}

.header-actions {
  display: flex;
  align-items: center;
  /* gap: 1rem; */
}

.install-btn {
  padding: 0.5rem 1rem;
  background: #6366f1;
  color: white;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: background-color 0.2s;
}

.install-btn:hover {
  background: #4f46e5;
}

.signup-btn {
  width: 84px;
  height: 34px;
  opacity: 1;
  border-radius: 100px;
  background: linear-gradient(80.68deg, #157ffd 9.15%, #56a1f9 78.54%);
  line-height: 34px;
  padding: 0;
  outline: none;
  border: none;
  color: #ffffff;
  font-family: Geistcos;
  font-weight: 400;
  font-size: 16px;
  text-align: center;
  vertical-align: middle;
}

.signup-btn:hover {
  border-color: #6366f1;
  color: #fff;
}

.signin-btn {
  font-family: Geistcos;
  font-weight: 400;
  font-size: 16px;
  text-align: center;
  vertical-align: middle;
  outline: none;
  border: none;
  cursor: pointer;
  color: #3873ff;
  background-color: transparent;
}

/* Add margin to main content to account for fixed header */
main {
  margin-top: 70px;
}

/* Navbar Styles */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 4rem;
  background-color: var(--white);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.logo img {
  height: 32px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--accent-color);
}

.platform-icons {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.platform-icons img {
  width: 16px;
  height: 16px;
}

.user-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.theme-toggle {
  background: none;
  border: none;
  color: var(--text-color);
  cursor: pointer;
  font-size: 1.2rem;
}

/* Hero Section */
.hero {
  padding: 5rem 4rem 4rem;
  background-color: var(--white);
  position: relative;
  overflow: hidden;
  /* padding-bottom: 120px; */
}

.hero-text {
  max-width: 1000px;
}

.hero-content {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  /* gap: 4rem; */
}

.hero-text {
  flex: 1;
}

.hero h1 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #000000;
  font-family: Geistcos;
}

/* Hero subtitle styling - 根据截图样式进行一比一复刻 */
.hero .subtitle {
  font-size: 20px;
  /* 增大字体尺寸以匹配截图 */
  font-weight: 300;
  /* 使用更细的字重 */
  color: #666666;
  /* 使用更柔和的灰色 */
  margin-bottom: 2.5rem;
  /* 保持底部间距 */
  line-height: 1.6;
  /* 调整行高比例 */
  font-family: "Geistcos";
  /* 完整字体声明 */
  text-align: center;
  /* 居中对齐 */
  letter-spacing: 0.02em;
  /* 轻微字符间距 *     /* 限制最大宽度 */
  margin-left: auto;
  /* 水平居中 */
  margin-right: auto;
  /* 水平居中 */
  opacity: 0.9;
  /* 轻微透明度 */
}

.hero-statis-bg {
  position: relative;
  width: 1400px;
  margin: auto;
  min-height: 836px;
  /* padding-top: 150px; */
  background: url("../assets/sloving-service-bg.png") no-repeat center;
  background-size: 120% auto;
}

.hero-statis-bg .hero-platform {
  position: absolute;
  width: 457px;
  height: 235px;
  top: 2%;
  right: -2%;
  z-index: 200;
}

.hero-statis-bg .hero-rap-app {
  position: absolute;
  z-index: 200;
  top: 80%;
}

.hero-statis-bg .hero-rap-table {
  position: absolute;
  width: 1100px;
  height: 731px;
  left: 50%;
  top: 15%;
  transform: translate(-50%, 0%);
  z-index: 100;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
}

.start-btn,
.extension-btn {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem 1.5rem;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.start-btn {
  width: 190px;
  height: 50px;
  background: linear-gradient(90deg, #3987fc 0%, #6cd7fe 100%);
  color: var(--white);
}

.extension-btn {
  width: 270px;
  height: 50px;
  border: 1px solid;
  color: #157ffd !important;

  border: 1px solid linear-gradient(90deg, #3987fc 0%, #6cd7fe 100%);
  /* border-image-source: linear-gradient(90deg, #3987FC 0%, #6CD7FE 100%); */
  /* background-color: var(--gray-light); */
  color: var(--text-color);
}

.start-btn:hover,
.extension-btn:hover {
  transform: translateY(-2px);
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image img {
  width: 100%;
  max-width: 600px;
  height: auto;
}

.trusted-by {
  /* margin-top: 6rem; */
  text-align: center;
  overflow: hidden;
  /* background: linear-gradient(90deg, 
        var(--white) 0%, 
        rgba(255,255,255,0) 5%, 
        rgba(255,255,255,0) 95%, 
        var(--white) 100%
    ); */
  background-color: #fafbff;

  padding: 2rem;
}

.trusted-by p {
  font-family: "Geistcos";
  font-weight: 400;
  font-size: 18px;
  color: #939aa9;
  /* color: var(--gray-dark); */
  /* margin-bottom: 2rem; */
}

.logos-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 2rem 0;
  width: 1000px;
  margin: auto;
}

.logos-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
}

.logos-slide img {
  height: 32px;
  width: auto;
  /* opacity: 0.6; */
  transition: all 0.3s ease;
  flex-shrink: 0;
  /* filter: grayscale(100%); */
}

.logos-slide img:hover {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.1);
}

/* Extension Download Section */
.extension-section {
  padding: 5rem 4rem;
  /* background: white; */
  position: relative;
  overflow: hidden;
  background-color: #fff;
}

.extension-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.5;
  }

  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

.extension-container {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.extension-content {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.extension-text {
  width:560px;
}

.extension-icon {
  margin-bottom: 2rem;
}

.extension-text h2 {
  font-size: 24px;
  font-weight: bold;
  color: #333;
  margin-bottom: 1rem;
}

.extension-description {
  font-size: 1rem;
  color: var(--gray-dark);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.extension-desc-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.extension-guide-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 218px;
  height: 50px;
  gap: 0.5rem;
  padding: 0.8rem 1rem;
  /* background-color: var(--accent-color); */
  color: var(--white);
  border: 1px solid;
  border-image-source: linear-gradient(90deg, #3987fc 0%, #6cd7fe 100%) round;
  border-image-slice: 3;
  text-decoration: none;
  border-radius: 100px;
  font-weight: 600;
  transition: all 0.3s ease;
  color: #157ffd;
  font-size: 16px;
  font-family: "Geistcos";
  margin-top: 30px;
  /* background: linear-gradient(90deg, #3987FC 0%, #6CD7FE 100%); */
}

.extension-guide-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 176, 158, 0.2);
}

.extension-preview {
  flex: 1;
}

.browser-mockup {
  background-color: var(--white);
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.browser-header {
  background-color: var(--gray-light);
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.browser-dots {
  display: flex;
  gap: 0.5rem;
}

.browser-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ff5f56;
}

.browser-dots span:nth-child(2) {
  background-color: #ffbd2e;
}

.browser-dots span:nth-child(3) {
  background-color: #27c93f;
}

.browser-url {
  flex: 1;
  background-color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 6px;
  color: var(--gray-dark);
  font-size: 0.9rem;
}

.browser-content {
  background-color: var(--white);
  padding: 2rem;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.browser-content img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

/* FAQ Section */
.faq-section {
  padding: 3rem 2rem;
  background-color: #fff;
  /* background-color: var(--background-color); */
  /* background-color: #fff; */
}

.faq-container {
  max-width: 1000px;
  margin: 0 auto;
}

.faq-section h2 {
  color: #111;
  text-align: center;
  font-family: Geistcos;
  font-size: 36px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 75px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  /* gap: 1rem; */
}

.faq-item {
  background-color: var(--white);
  /* border-radius: 12px; */
  border-top: 1px solid #e4e7ed;
  /* border-bottom: 1px solid var(--border-color); */
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-list:last-child {
  border-bottom: 1px solid #e4e7ed;
}

/* .faq-item:hover {
    border-color: var(--accent-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
} */

.faq-question {
  display: flex;
  color: #333;
  font-family: Geistcos;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
  line-height: 84px;
  cursor: pointer;
  background-color: var(--white);
  transition: background-color 0.3s ease;
}

.faq-item:first-child {
  border: none;
}

/* .faq-question:hover {
    background-color: var(--gray-light);
} */

/* .faq-question span:first-child {
    font-weight: 600;
    color: var(--text-color);
} */

.faq-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  /* transition: transform 0.3s ease; */
}

.faq-toggle img {
  width: 16px;
  height: 16px;
  /* transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1); */
}

/* .faq-item.active .faq-toggle img {
  transform: rotate(180deg);
} */

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0 2rem;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 2rem 1.5rem;
}

.faq-answer p {
  line-height: 1.6;
  color: #666;
  font-family: Geistcos;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  /* 171.429% */
}

/* Footer Styles */
.footer {
  background-color: #1a1a1a;
  padding: 0;
  /* margin-top: 80px; */
  min-width: 1200px;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-box {
  display: flex;
  /* gap: 110px; */
  /* align-items: center; */
  padding: 20px 0;
  justify-content: space-between;
}

.footer-content {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 40px;
  margin-left: 200px;
  /* align-items: center; */
  /* margin-bottom: 40px; */
}

.footer-column h3 {
  color: #ffffff;
  font-family: Geistcos;
  font-weight: 400;
  font-size: 20px;
  margin-bottom: 30px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 30px;
}

.footer-column ul li a {
  color: #AAA;
  text-decoration: none;
  font-family: Geistcos;
  font-weight: 400;
  font-size: 14px;
  display: flex;
  align-items: center;
  width: fit-content;
  /* transition: color 0.3s; */
}

/* .footer-column ul li a:hover {
  color: #ffffff;
} */

.footer-icon {
  width: 20px;
  height: 20px;
  margin-right: 8px;
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #fff;
  transition: transform 0.3s;
}

.social-link:hover {
  transform: translateY(-2px);
}

.social-link img {
  width: 20px;
  height: 20px;
}

.footer-bottom {
  border-top: 1px solid #333;

  height: 48px;

  text-align: center;
  background-color: #000000;
}

.footer-bottom .footer-bottom-content {
  height: 100%;
  max-width: 1400px;
  padding: 0 40px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-bottom p {
  color: #909090;
  font-family: Geistcos;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 12px;
  /* 100% */
}

.company-social {
  text-align: left;
  margin-bottom: 50px;
}

.company-social span {
  font-family: Geistcos;
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  letter-spacing: 0%;
  color: #aaa;
  margin-bottom: 30px;
}

.footer-pay p {
  font-family: Geistcos;
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  text-align: left;
  color: #aaa;
  margin-bottom: 30px;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  color: #cccccc;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #ffffff;
}

/* Company Information Styles */
.footer-company-info {
  padding: 20px 0 15px;
  margin-bottom: 10px;
  background-color: #1a1a1a;
}

.company-details {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 0 20px;
}

.company-title {
  margin-bottom: 10px;
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: nowrap;
}

.title-label {
  color: #cccccc;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
  margin-top: 2px;
}

.company-name {
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  margin: 0;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.company-address {
  margin-bottom: 10px;
  padding: 8px 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.address-label {
  color: #cccccc;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
  margin-top: 2px;
}

.company-address p {
  color: #cccccc;
  font-size: 15px;
  margin: 0;
  line-height: 1.6;
  font-weight: 400;
  flex: 1;
  min-width: 300px;
}

.company-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  margin-top: 10px;
}

.company-contact img {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

.company-contact p {
  width: 100%;
  display: flex;
  align-items: center;
  color: #ffffff;
  font-family: Geistcos;
  font-weight: 400;
  font-size: 14px;
  margin: 0;
  padding: 8px 0;
  text-align: left;
  /* background-color: #333; */
  border-radius: 20px;
  /* box-shadow: 0 2px 4px rgba(0,0,0,0.3); */
  transition: transform 0.2s ease;
  color: #aaa;
}

@media (max-width: 768px) {
  .company-contact {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }

  .company-details {
    padding: 0 15px;
  }

  .company-details h4 {
    font-size: 18px;
  }

  .company-address p {
    font-size: 14px;
  }
}

/* Responsive Footer */
@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .footer-content {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
}

@media (max-width: 1200px) {
  .hero h1 {
    font-size: 16px;
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .hero h1 {
    font-size: 16px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .company-logos {
    gap: 2rem;
  }

  .footer-columns {
    grid-template-columns: repeat(2, 1fr);
  }

  .extension-content {
    flex-direction: column;
    text-align: center;
  }

  .extension-text {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 1rem 2rem;
  }

  .nav-links {
    display: none;
  }

  .hero {
    padding: 6rem 2rem 2rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  /* 响应式设计 - 移动端 subtitle 样式调整 */
  .hero .subtitle {
    font-size: 18px;
    /* 移动端适当减小字体 */
    font-weight: 300;
    /* 保持细字重 */
    line-height: 1.5;
    /* 移动端调整行高 */
    margin-bottom: 2rem;
    /* 减少底部间距 */
    letter-spacing: 0.01em;
    /* 减少字符间距 */
    padding: 0 1rem;
    /* 添加左右内边距 */
  }

  .hero-buttons {
    flex-direction: column;
  }

  .company-logos {
    gap: 1.5rem;
  }

  .company-logos img {
    height: 20px;
  }

  .logos-slide {
    gap: 2rem;
    justify-content: center;
    padding-right: 2rem;
  }

  .logos-slide img {
    height: 24px;
  }

  .logos-container {
    padding: 1.5rem 0;
  }

  .faq-section h2 {
    font-size: 2rem;
  }

  .footer {
    padding: 2rem 2rem 0;
  }

  .footer-columns {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom-content {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .footer-bottom-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .extension-section {
    padding: 3rem 2rem;
  }

  .extension-text h2 {
    font-size: 2rem;
  }

  .browser-mockup {
    margin-top: 2rem;
  }
}

/* Modal Styles */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  display: flex;
  opacity: 1;
}

.modal-content {
  background-color: var(--white);
  border-radius: 12px;
  padding: 2rem;
  max-width: 90%;
  width: 600px;
  transform: translateY(-20px);
  transition: transform 0.3s ease;
  position: relative;
}

.language-modal {
  max-width: 400px;
}

.modal-overlay.active .modal-content {
  transform: translateY(0);
}

/* Login Modal Styles */
.login-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1001;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.login-modal-overlay.show {
  opacity: 1;
}

.login-modal-content {
  background: white;
  border-radius: 16px;
  width: 100%;
  max-width: 900px;
  height: 600px;
  max-height: 90vh;
  overflow: hidden;
  transform: translateY(-20px);
  transition: transform 0.3s ease;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
  position: relative;
}

.login-modal-overlay.show .login-modal-content {
  transform: translateY(0);
}

/* 关闭按钮 */
.login-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  color: #6b7280;
  border-radius: 8px;
  transition: all 0.2s;
  z-index: 10;
}

.login-modal-close:hover {
  background-color: rgba(0, 0, 0, 0.1);
  color: #374151;
}

/* 主容器 - 左右布局 */
.login-modal-container {
  display: flex;
  height: 600px;
}

/* 左侧介绍区域 */
.login-modal-intro {
  background: linear-gradient(135deg, #1e3a8a 0%, #3730a3 100%);
  color: white;
  padding: 40px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.login-modal-intro::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  pointer-events: none;
}

.intro-content {
  position: relative;
  z-index: 1;
}

.intro-logo {
  margin-bottom: 24px;
}

.intro-logo img {
  width: 120px;
  height: auto;
  max-width: 120px;
}

.logo-text {
  font-size: 28px;
  font-weight: 700;
  color: white;
}

.intro-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 32px;
  line-height: 1.3;
}

.intro-features {
  margin-bottom: 32px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 14px;
  line-height: 1.5;
}

.feature-item svg {
  color: #10b981;
  flex-shrink: 0;
}

.intro-rating {
  margin-bottom: 24px;
}

.rating-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.rating-logo {
  background: #ef4444;
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
}

.rating-stars {
  color: #fbbf24;
  font-size: 14px;
}

.rating-text {
  font-size: 14px;
  margin: 0;
  opacity: 0.9;
}

.intro-awards {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.award-item {
  background: rgba(255, 255, 255, 0.2);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

/* 右侧内容区域 */
.login-modal-main {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.login-modal-header {
  padding: 32px 32px 0 32px;
  text-align: center;
}

.login-modal-header h2 {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
  color: #111827;
}

/* 响应式设计 */
@media (max-width: 768px) {
  .login-modal-content {
    max-width: 95vw;
    margin: 20px;
  }

  .login-modal-container {
    flex-direction: column;
    min-height: auto;
  }

  .login-modal-intro {
    padding: 24px;
    order: 2;
  }

  .login-modal-main {
    order: 1;
  }

  .intro-title {
    font-size: 20px;
  }

  .logo-text {
    font-size: 24px;
  }

  .login-modal-header {
    padding: 24px 24px 0 24px;
  }

  .login-modal-body {
    padding: 0 24px 24px 24px;
  }

  /* 邮箱验证页面专用样式 - 优化版本 */
  .verification-step-clean {
    padding: 48px 40px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 36px;
    background: linear-gradient(135deg, #fafbff 0%, #f8fafc 100%);
    border-radius: 20px;
    margin: 16px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }

  .verification-step-clean::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6, #06b6d4);
    border-radius: 20px 20px 0 0;
  }

  .verification-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .verification-icon {
    width: 96px;
    height: 96px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    box-shadow: 0 16px 32px rgba(59, 130, 246, 0.25);
    position: relative;
    animation: iconPulse 2s ease-in-out infinite;
  }

  .verification-icon::after {
    content: "";
    position: absolute;
    inset: -4px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 28px;
    z-index: -1;
    opacity: 0.1;
  }

  @keyframes iconPulse {

    0%,
    100% {
      transform: scale(1);
    }

    50% {
      transform: scale(1.05);
    }
  }

  .verification-icon svg {
    color: white;
    width: 40px;
    height: 40px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
  }

  .verification-title {
    font-size: 32px;
    font-weight: 800;
    background: linear-gradient(135deg, #1e293b 0%, #475569 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    line-height: 1.2;
    letter-spacing: -0.02em;
  }

  .verification-description {
    font-size: 17px;
    color: #64748b;
    line-height: 1.7;
    margin: 0;
    max-width: 420px;
    font-weight: 400;
  }

  .verification-email-info {
    display: flex;
    justify-content: center;
  }

  .email-badge {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 20px 28px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 500;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
  }

  .email-badge::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
  }

  .email-label {
    color: #64748b;
    font-weight: 500;
  }

  .email-value {
    color: #1e293b;
    font-weight: 700;
    font-family: Geistcos;
  }

  .verification-actions-clean {
    display: flex;
    justify-content: center;
  }

  .verification-btn {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    border: none;
    border-radius: 16px;
    padding: 16px 36px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.02em;
  }

  .verification-btn::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;
  }

  .verification-btn:hover::before {
    left: 100%;
  }

  .verification-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 28px rgba(59, 130, 246, 0.4);
  }

  .verification-btn:active {
    transform: translateY(-1px) scale(1.01);
    transition: all 0.1s;
  }

  .verification-btn svg {
    width: 16px;
    height: 16px;
  }

  .verification-help {
    background: linear-gradient(135deg, #fef7cd 0%, #fef3c7 100%);
    border: 1px solid #f59e0b;
    border-radius: 12px;
    padding: 16px 20px;
    margin: 0 auto;
    max-width: 420px;
    position: relative;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.1);
  }

  .verification-help::before {
    content: "💡";
    position: absolute;
    top: -8px;
    left: 16px;
    background: #fbbf24;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
  }

  .help-text {
    color: #92400e;
    font-size: 14px;
    margin: 0;
    font-weight: 600;
    line-height: 1.5;
  }

  .verification-navigation {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
  }

  .nav-link {
    color: #64748b;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 12px 20px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  }

  .nav-link::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent,
        rgba(59, 130, 246, 0.1),
        transparent);
    transition: left 0.5s;
  }

  .nav-link:hover::before {
    left: 100%;
  }

  .nav-link:hover {
    color: #3b82f6;
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    border-color: #93c5fd;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(59, 130, 246, 0.15);
  }

  .nav-link.secondary {
    color: #64748b;
  }

  .nav-link.secondary:hover {
    color: #475569;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    border-color: #cbd5e1;
  }

  /* 响应式设计 - 邮箱验证页面 */
  @media (max-width: 768px) {
    .verification-step-clean {
      padding: 32px 24px;
      gap: 28px;
      margin: 8px;
      border-radius: 16px;
    }

    .verification-icon {
      width: 80px;
      height: 80px;
      border-radius: 20px;
    }

    .verification-icon svg {
      width: 32px;
      height: 32px;
    }

    .verification-title {
      font-size: 28px;
      letter-spacing: -0.01em;
    }

    .verification-description {
      font-size: 16px;
      max-width: 100%;
    }

    .email-badge {
      padding: 16px 20px;
      font-size: 14px;
      border-radius: 12px;
      flex-direction: column;
      gap: 8px;
      text-align: center;
    }

    .verification-btn {
      padding: 14px 28px;
      font-size: 15px;
      border-radius: 12px;
      width: 100%;
      max-width: 280px;
    }

    .verification-navigation {
      flex-direction: column;
      gap: 16px;
      align-items: center;
    }

    .nav-link {
      padding: 10px 16px;
      font-size: 14px;
      border-radius: 10px;
      min-width: 140px;
      text-align: center;
    }

    .verification-help {
      padding: 14px 18px;
      border-radius: 10px;
      margin: 0 16px;
    }

    .verification-help::before {
      top: -6px;
      left: 14px;
      width: 20px;
      height: 20px;
      font-size: 10px;
    }
  }

  @media (max-width: 480px) {
    .verification-step-clean {
      padding: 24px 16px;
      gap: 24px;
      margin: 4px;
    }

    .verification-icon {
      width: 72px;
      height: 72px;
    }

    .verification-title {
      font-size: 24px;
    }

    .verification-description {
      font-size: 15px;
    }

    .email-badge {
      padding: 12px 16px;
      font-size: 13px;
    }

    .verification-btn {
      padding: 12px 24px;
      font-size: 14px;
    }
  }

  /* 移动端社交登录按钮调整 */
  .social-login-section {
    flex-direction: column;
    gap: 12px;
  }

  .social-login-btn.primary {
    width: 100%;
  }

  .secondary-login-buttons {
    justify-content: center;
    gap: 16px;
  }

  .social-login-btn.secondary {
    width: 56px;
    height: 56px;
  }
}

/* 这些样式已经在上面定义过了，删除重复定义 */

.login-modal-body {
  padding: 0 24px 20px 24px;
  overflow-y: auto;
  flex: 1;
}

.social-login-section {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
  margin-bottom: 20px;
}

/* 主要登录按钮 - Google */
.social-login-btn.primary {
  flex: 1;
  min-width: 0;
}

/* 次要登录按钮容器 */
.secondary-login-buttons {
  display: flex;
  gap: 8px;
}

/* 次要登录按钮 - 只显示图标 */
.social-login-btn.secondary {
  width: 48px;
  height: 48px;
  padding: 12px;
  justify-content: center;
  min-width: 48px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  background: white;
  color: #374151;
  transition: all 0.2s;
}

.social-login-btn.secondary:hover {
  background-color: #f9fafb;
  border-color: #d1d5db;
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.social-login-btn.secondary svg {
  width: 24px;
  height: 24px;
}

/* GitHub 按钮特殊样式 */
.github-btn.secondary:hover {
  background-color: #f6f8fa;
  border-color: #24292f;
  color: #24292f;
}

/* Discord 按钮特殊样式 */
.discord-btn.secondary {
  color: #5865f2;
}

.discord-btn.secondary:hover {
  background-color: #f0f1ff;
  border-color: #5865f2;
  color: #4752c4;
}

.social-login-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  background: white;
  color: #374151;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.social-login-btn:hover {
  background-color: #f9fafb;
  border-color: #9ca3af;
}

.google-btn:hover {
  background-color: #fef7f0;
  border-color: #4285f4;
}

.github-btn {
  color: #1f2937;
}

.github-btn:hover {
  background-color: #f3f4f6;
  border-color: #374151;
}

.discord-btn {
  color: #5865f2;
}

.discord-btn:hover {
  background-color: #f0f1ff;
  border-color: #5865f2;
}

.divider {
  display: flex;
  align-items: center;
  margin: 16px 0;
  color: #6b7280;
  font-size: 14px;
}

.divider::before,
.divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #e5e7eb;
}

.divider span {
  padding: 0 16px;
  background: white;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 16px;
}

.form-group label {
  font-size: 14px;
  font-weight: 500;
  color: #374151;
}

.form-group input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 14px;
  transition: all 0.2s;
  background: white;
  box-sizing: border-box;
}

.form-group input:focus {
  outline: none;
  border-color: #6366f1;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.password-input-wrapper {
  position: relative;
  width: 100%;
}

.password-input-wrapper input {
  width: 100%;
  padding-right: 50px;
  box-sizing: border-box;
}

.password-toggle {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #6b7280;
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
  transition: color 0.2s;
}

.password-toggle:hover {
  color: #374151;
}

.form-actions {
  margin-top: 16px;
}

.auth-submit-btn {
  width: 100%;
  padding: 12px 16px;
  background: #2563eb;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s;
}

.auth-submit-btn:hover {
  background: #1d4ed8;
}

.auth-footer {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  margin-top: 16px;
}

.forgot-password {
  color: #6366f1;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.forgot-password:hover {
  color: #4f46e5;
}

.auth-switch {
  font-size: 14px;
  color: #6b7280;
  margin: 0;
}

.auth-switch a {
  color: #6366f1;
  text-decoration: none;
  font-weight: 500;
  margin-left: 4px;
  transition: color 0.2s;
}

.auth-switch a:hover {
  color: #4f46e5;
}

/* 响应式设计 */
@media (max-width: 640px) {
  .login-modal-content {
    margin: 16px;
    max-width: calc(100% - 32px);
  }

  .login-modal-header,
  .login-modal-body {
    padding: 24px;
  }

  .social-login-btn {
    font-size: 13px;
    padding: 10px 12px;
  }
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--border-color);
}

.modal-header h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-color);
}

.modal-close {
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  color: #666;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease;
}

.modal-close:hover {
  color: #333;
}

.modal-body {
  padding: 2rem;
  overflow-y: auto;
  max-height: calc(80vh - 80px);
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 1.5rem;
}

.solution-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem 1rem;
  background-color: var(--gray-light);
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.solution-item:hover {
  transform: translateY(-4px);
  border-color: var(--accent-color);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.solution-icon {
  margin-bottom: 0.8rem;
  transition: transform 0.3s ease;
}

.solution-item:hover .solution-icon {
  transform: scale(1.1);
}

.solution-item span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-color);
  text-align: center;
}

/* Responsive Design for Modal */
@media (max-width: 768px) {
  .modal-content {
    width: 95%;
    max-height: 90vh;
  }

  .solutions-grid {
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 1rem;
  }

  .solution-item {
    padding: 1rem 0.5rem;
  }
}

/* Language Switcher Styles */
.language-switcher {
  position: relative;
  /* margin-right: 1rem; */
  z-index: 1000;
}

.header-actions .space {
  width: 1;
  height: 12px;
  opacity: 1;
  border-left: 1px solid #999999;
  margin: 0 20px;
}

.language-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0.5rem 0;
  background: transparent;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.2s;
  color: #666666;
  font-size: 14px;
  font-weight: 400;
  outline: none;
}

.language-btn:hover,
.language-btn:focus {
  /* background: #f3f4f6; */
  color: #666666;
}

.language-btn.active {
  background: #fff;
  color: #1f2937;
}

.language-btn svg {
  transition: transform 0.2s;
}

.language-btn.active svg {
  transform: rotate(180deg);
}

.language-dropdown {
  font-family: "Source Han Sans CN", Courier, monospace;
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  width: 140px;
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 4px;
  overflow: hidden;
  padding: 10px;
  /* box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); */
  z-index: 1000;
  transition: all 0.2s ease-in-out;
  transform: translateY(-10px);
  pointer-events: none;
  color: #333;
  box-shadow: 0px 2px 12px 0px #0000001a;
}

.language-dropdown.show {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.language-option {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 6px 0 6px 20px;
  border: none;
  border-radius: 6px;
  background: transparent;
  cursor: pointer;
  transition: all 0.2s;
  border-bottom: 1px solid #e5e7eb;
  outline: none;
}

.language-option:last-child {
  border-bottom: none;
}

/* .language-option:first-child {
    border-radius: 0.75rem 0.75rem 0 0;
}

.language-option:last-child {
    border-radius: 0 0 0.75rem 0.75rem;
} */

/* .language-option:hover,
.language-option:focus {
    background: #EEEEEE;
} */

.language-option[data-selected="true"] {
  background: #eeeeee;
}

.language-option .lang-icon {
  font-size: 1.25rem;
  margin-right: 1rem;
  flex-shrink: 0;
  line-height: 1;
}

.language-option .lang-info {
  flex: 1;
  text-align: left;
  min-width: 0;
}

.language-option .lang-name {
  font-size: 0.9rem;
  font-weight: 500;
  color: #111827;
  /* margin-bottom: 0.25rem; */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.language-option[data-selected="true"] .lang-name {
  color: #333 !important;
}

@media (max-width: 768px) {
  .language-dropdown {
    position: fixed;
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    border-radius: 1rem 1rem 0 0;
    transform: translateY(100%);
    margin: 0;
  }

  .language-dropdown.show {
    transform: translateY(0);
  }

  .language-option {
    padding: 1rem 1.5rem;
  }

  .language-option:last-child {
    padding-bottom: calc(1rem + env(safe-area-inset-bottom));
  }
}

/* User Actions */
.user-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.auth-buttons {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* User Profile Styles */
.user-profile {
  position: relative;
  z-index: 1000;
  align-items: center;
  gap: 20px;
}

.user-profile .bashboard-btn {
  width: 120px;
  height: 34px;
  opacity: 1;
  border-radius: 100px;
  background: linear-gradient(80.68deg, #157FFD 9.15%, #56A1F9 78.54%);
  font-family: Geistcos;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  text-align: center;
  vertical-align: middle;
  border: none;
  outline: none;
  color: #fff;
  cursor: pointer;
}

.user-avatar-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem;
  background: transparent;
  border: none;
  outline: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.2s;
  outline: none;
}

.user-avatar-btn:hover,
.user-avatar-btn:focus {
  border-color: #6366f1;
  background: #f9fafb;
}

.user-avatar {
  position: relative;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  overflow: hidden;
  background: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
}

.user-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* display: none; */
}

.user-avatar-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b7280;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.user-avatar-placeholder svg {
  width: 20px;
  height: 20px;
  color: white;
}

.dropdown-arrow {
  transition: transform 0.2s;
  color: #6b7280;
}

.user-avatar-btn:hover .dropdown-arrow,
.user-dropdown.active+.user-avatar-btn .dropdown-arrow {
  transform: rotate(180deg);
}

.user-dropdown {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  width: 280px;
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  z-index: 1000;
  transition: all 0.2s ease-in-out;
  transform: translateY(-10px);
  pointer-events: none;
  padding: 0 20px;
  /* padding-top:0; */
}

.user-dropdown.active {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.user-info {
  padding: 20px 0;
  padding-top: 30px;
  padding-left: 10px;
  /* border-bottom: 1px solid #e5e7eb; */
}

.user-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.25rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.user-email {
  font-family: Geistcos;
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;

  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dropdown-divider {
  /* height: 1px; */
  width: calc(100% - 20px);
  border-bottom: 1px solid #e5e7eb;
  margin: 0 auto;
}

.dropdown-item {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 0.75rem 1rem;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: all 0.2s;
  outline: none;
  font-size: 0.9rem;
  color: #374151;
  gap: 0.75rem;
  border-radius: 0 0 0.75rem 0.75rem;
  margin-bottom: 20px;
}

.dropdown-content .dropdown-item:last-child {
  margin-bottom: 0;
}

.dropdown-item:hover,
.dropdown-item:focus {
  background: #f9fafb;
  color: #111827;
  border-radius: 6px;
}

.dropdown-item svg {
  width: 16px;
  height: 16px;
  color: #6b7280;
  flex-shrink: 0;
}

.sign-out-btn {
  font-family: Geistcos;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;

}

/* .sign-out-btn:hover svg {
  color: #ef4444;
}

.sign-out-btn:hover {
  color: #ef4444;
} */

@media (max-width: 768px) {
  .user-dropdown {
    position: fixed;
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    border-radius: 1rem 1rem 0 0;
    transform: translateY(100%);
    margin: 0;
  }

  .user-dropdown.active {
    transform: translateY(0);
  }

  .user-info {
    padding: 1rem 1.5rem;
  }

  .dropdown-item {
    padding: 0.75rem 1.5rem;
  }

  .dropdown-item:last-child {
    padding-bottom: calc(0.75rem + env(safe-area-inset-bottom));
  }
}

/* Advantages Section */
.advantages-section {
  padding: 80px 0;
  background-color: #fff;
}

.advantages-container {
  max-width: 1280px;
  margin: 0 auto;
}

.advantages-container h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 60px;
  color: #333;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(300px, 1fr));
  gap: 20px;
}

.advantage-item-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.advantage-item-right .item-top {
  display: flex;
  gap: 20px;
  flex: 1;
}

.advantage-item-right .item-bottom {
  /* display: flex;
    gap: 20px; */
  flex: 1;
  height: 100%;
}

.advantage-item-left {
  display: flex;
  gap: 20px;
}

.advantage-item-left .item-left {
  display: flex;
}

.advantage-item-left .item-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.item-right .advantage-card {
  flex: 1;
}

.advantage-item .item-top {
  display: flex;
}

.advantage-card {
  border-radius: 16px;
  background: linear-gradient(180deg, #F7FAFF 0%, #FCFEFF 100%);
  box-shadow: 0 4px 12px 0 rgba(13, 100, 254, 0.10);
  padding: 40px 20px 20px;
  /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.advantage-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

.advantage-icon {
  margin-bottom: 10px;
  display: flex;
  /* justify-content: center; */
  align-items: center;
  /* border-bottom: 1px solid #c4d8f9; */
}

.advantage-icon h3 {
  font-family: Geistcos !important;
  font-weight: 700 !important;
  font-style: Bold !important;
  font-size: 20px !important;

  line-height: 100% !important;
  margin-bottom: 0 !important;

  /* text-wrap: nowrap; */
}

.advantage-icon img {
  margin-right: 12px;
  width: 60px;
  height: 60px;
}

.ai-menu {
  margin-top: 24px;
}

.advantage-card h3 {
  font-size: 1.5rem;
  font-family: Geistcos;
  font-size: 20px;
  margin-bottom: 8px;
  color: #333;
}

.advantage-card p {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
  .advantages-container h2 {
    font-size: 2rem;
    margin-bottom: 40px;
  }

  .advantages-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .advantage-card {
    padding: 20px;
  }
}

/* Pricing Section */
.pricing-section {
  padding: 80px 0;
  background-color: #fff;
}

.pricing-container {
  max-width: 1280px;
  margin: 0 auto;
}

.pricing-container h2 {
  text-align: center;
  font-size: 36px;
  font-weight: 600;
  color: #111;
  font-family: Geistcos;
  margin-bottom: 10px;
}

.pricing-notice {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
  color: #939aa9;
  font-size: 16px;
  font-family: Geistcos;
}

.notice-icon {
  width: 16px;
  height: 16px;
}

.notice-icon {
  width: 20px;
  height: 20px;
}

.pricing-table {
  background: rgba(255, 255, 255, 0.98);
  border-radius: 16px;
  overflow: hidden;
  /* box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08); */
  border: 1px solid #e4e7ed;
  border-left: none;
  border-right: none;
  backdrop-filter: blur(20px);
  overflow: visible;
}

.table-header {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding: 20px 24px;
  background: linear-gradient(135deg,
      rgba(102, 126, 234, 0.1),
      rgba(118, 75, 162, 0.1));
  font-weight: 600;
  color: #1a1a1a;
  font-size: 16px;
  font-family: Geistcos;
  font-weight: 400;
  border-bottom: 1px solid rgba(102, 126, 234, 0.1);
}

.table-body {
  padding: 0;
  overflow: visible;
}

.pricing-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding: 18px 24px;
  align-items: center;
  /* 更平滑的过渡效果，与hover状态保持一致 */
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.pricing-row:last-child {
  border-bottom: none;
}

.pricing-row:hover {
  background: #fff;
  /* 更优雅的放大效果 */
  transform: scale(1.1);
  /* 脱离容器限制 - 使用负margin扩展宽度 */
  margin-left: -50px;
  margin-right: -50px;
  /* 增加padding保持内容居中 */
  padding-left: 70px;
  padding-right: 70px;
  /* 提升层级，确保显示在最上层 */
  z-index: 100;
  /* 增强视觉效果 */
  box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
  border-radius: 10px;
  /* 背景色变化 */
  /* background: linear-gradient(135deg, #764ba2 0%, #667eea 100%); */
}

.captcha-info {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 500;
}

.captcha-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
/* 定价页面 */
.pricing-container .price-note {
  display: flex;
  align-items: center;
  gap: 5px;
}
.price-info {
  display: flex;
  /* flex-direction: column; */
  align-items: center;
  gap: 6px;
  font-weight: 500;
}

.price-main,
.price-secondary {
  display: flex;
  align-items: center;
  gap: 8px;
}
.price-secondary > span {
  font-size: 20px;
}
.price-info > span {
  font-size: 20px;
}
.price-highlight {
  color: #667eea;
  font-weight: 700;
  font-size: 1.05rem;
}

.price-note {
  color: #6b7280;
  font-size: 0.85em;
  margin-left: 4px;
  font-weight: 400;
}

.success-rate {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: #10b981;
  font-weight: 600;
  background: rgba(16, 185, 129, 0.1);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.9rem;
}

.check-icon {
  width: 16px;
  height: 16px;
}

.pricing-cta {
  text-align: center;
  /* margin-top: px; */
  /* padding: 24px; */
  margin-bottom: 40px;
}

.try-now-btn {
  background: linear-gradient(90deg, #3987fc 0%, #6cd7fe 100%);
  color: white;
  border: none;
  padding: 14px 32px;
  border-radius: 100px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  /* box-shadow: 0 4px 16px rgba(0, 176, 158, 0.3); */
}

/* .try-now-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 176, 158, 0.4);
} */

@media (max-width: 1024px) {
  .pricing-table {
    margin: 0 1rem;
  }

  .table-header,
  .pricing-row {
    grid-template-columns: 2fr 1.3fr 1fr;
    padding: 16px 20px;
  }
}

@media (max-width: 768px) {
  .pricing-container h2 {
    font-size: 2rem;
  }

  .pricing-table {
    border-radius: 12px;
    margin: 0;
  }

  .table-header,
  .pricing-row {
    grid-template-columns: 1.8fr 1.2fr 1fr;
    font-size: 0.9rem;
    padding: 14px 16px;
  }

  .table-header {
    font-size: 0.85rem;
  }

  .captcha-info {
    gap: 10px;
  }

  .captcha-icon {
    width: 24px;
    height: 24px;
  }

  .price-note {
    font-size: 0.8em;
  }

  .success-rate {
    padding: 4px 8px;
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {

  .table-header,
  .pricing-row {
    grid-template-columns: 1.5fr 1fr 0.8fr;
    font-size: 0.8rem;
    padding: 12px;
  }

  .table-header {
    font-size: 0.75rem;
  }

  .captcha-icon {
    width: 20px;
    height: 20px;
  }

  .captcha-info {
    gap: 8px;
    font-size: 0.85rem;
  }

  .price-highlight {
    font-size: 0.95rem;
  }

  .success-rate {
    padding: 3px 6px;
    font-size: 0.75rem;
  }

  .pricing-row:hover {
    /* 移动端禁用缩放和边框效果，保持简洁 */
    transform: none;
    border-left: none;
    background: rgba(102, 126, 234, 0.08);
    /* 移动端也添加轻微阴影效果 */
    box-shadow: 0 4px 16px rgba(102, 126, 234, 0.1);
    /* 移动端适度的宽度扩展效果 */
    margin-left: -10px;
    margin-right: -10px;
    padding-left: 22px;
    padding-right: 22px;
    position: relative;
    z-index: 10;
  }
}

/* Hover effects - 子元素的过渡效果 */
.pricing-row:hover .captcha-icon {
  transform: scale(1.1);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.pricing-row:hover .success-rate {
  transform: scale(1.05);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* 在移动端禁用子元素的缩放效果 */
@media (max-width: 480px) {

  .pricing-row:hover .captcha-icon,
  .pricing-row:hover .success-rate {
    transform: none;
  }
}

/* Documentation Section */
.documentation-section {
  padding: 80px 0;
  /* background-color: #fff; */
  background-color: #fafbff;
}

.documentation-container {
  max-width: 1280px;
  margin: 0 auto;
}

.documentation-container h2 {
  text-align: center;
  font-size: 36px;
  font-weight: 600;
  font-family: Geistcos;
  color: #333;
  margin-bottom: 50px;
}

.doc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;

}

.doc-card {
  display: flex;
  align-items: center;
  padding: 40px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  font-family: Geistcos;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0px 4px 12px 0px #0a4fff0d;
  cursor: default !important;
}

.doc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  border-color: transparent;
}

.doc-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

/* .doc-card:hover .doc-icon {
  transform: scale(1.1);
  background: #f0f2ff;
} */

.doc-content {
  flex: 1;
}

.doc-content h3 {
  color: #333;
  font-size: 20px;
  font-weight: 700;

  margin: 0 0 5px;
}

.doc-content p {
  color: #666;
  font-size: 13px;
  margin: 0;
}

.doc-arrow {
  color: #666;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}

.doc-card:hover .doc-arrow {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 768px) {
  .documentation-container h2 {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  .doc-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .doc-card {
    padding: 20px;
  }

  .doc-icon {
    width: 40px;
    height: 40px;
    margin-right: 15px;
  }

  .doc-content h3 {
    font-size: 1.1rem;
  }

  .doc-arrow {
    opacity: 1;
    transform: none;
  }
}

/* Language Modal Styles */
.language-modal {
  max-width: 400px;
}

.language-options {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.language-option {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 6px 0 6px 20px;
  /* border: 1px solid var(--border-color); */
  /* border-radius: 8px; */
  background: none;
  cursor: pointer;
  width: 100%;
  transition: all 0.3s ease;
}

.language-option:hover {
  /* border-color: var(--accent-color); */
  /* background-color: var(--gray-light); */
}

.lang-icon {
  font-size: 1.5rem;
}

.lang-info {
  flex: 1;
  text-align: left;
}

.lang-name {
  font-weight: 600;
  color: var(--text-color);
}

.language-option[data-selected="true"] {
  /* border-color: var(--accent-color); */
  background-color: var(--gray-light);
}

/* Use Cases Section */
.use-cases-section {
  padding: 5rem 4rem;
  background-color: #FAFBFF;
}

.use-cases-container {
  max-width: 1280px;
  margin: 0 auto;
}

.use-cases-content {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 4rem;
  font-family: Geistcos;
}

.use-cases-text {
  text-align: center;
  flex: 1;
  /* max-width: 400px; */
  /* position: sticky;
    top: 100px; */
}

.use-cases-text h2 {
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 10px;
}

.use-cases-description {
  font-size: 16px;
  font-family: Geistcos;
  color: #939aa9;
  line-height: 1.6;
  margin-bottom: 2rem;
  padding: 0 80px;
}

.learn-more-btn {
  width: 232px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1rem;
  text-align: center;
  /* background-color: var(--accent-color); */
  background: linear-gradient(90deg, #3987fc 0%, #6cd7fe 100%);
  color: var(--white);
  text-decoration: none;
  border-radius: 100px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.learn-more-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 176, 158, 0.2);
}

.use-cases-grid {
  flex: 2;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.use-case-card {
  background-color: var(--white);
  box-shadow: 0px 4px 12px 0px #00000008;
  /* border: 1px solid var(--border-color); */
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  cursor: default;
}

.use-case-card:hover {
  transform: translateY(-20px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  border-color: var(--accent-color);
}

.use-case-icon {
  width: 101px;
  height: 101px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  /* background-color: var(--gray-light); */
  border-radius: 12px;
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.use-case-card:hover .use-case-icon {
  /* background-color: var(--accent-color);
    color: var(--white); */
}

.use-case-card h3 {
  font-size: 1.1rem;
  font-weight: 400;
  color: #666;
  font-family: Geistcos;
  margin: 0;
}

@media (max-width: 1024px) {
  .use-cases-content {
    flex-direction: column;
    gap: 2rem;
  }

  .use-cases-text {
    max-width: 100%;
    text-align: center;
    position: static;
  }

  .use-cases-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .use-cases-section {
    padding: 3rem 2rem;
  }

  .use-cases-text h2 {
    font-size: 2rem;
  }

  .use-cases-description {
    font-size: 1rem;
  }

  .use-cases-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .use-case-card {
    padding: 1rem;
  }
}

@media (max-width: 480px) {
  .use-cases-grid {
    grid-template-columns: 1fr;
  }
}

/* How to Use Section */
.how-to-use-section {
  padding: 5rem 4rem;
  padding-bottom: 120px;
  background-color: #fff;
  position: relative;
  overflow: hidden;
  font-family: Geistcos;
}

.how-to-use-container {
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
}


.how-to-use-container h2 {
  font-size: 36px;
  font-weight: 600;
  color: #111;
  margin-bottom: 0.5rem;
  font-family: Geistcos;
}

.how-to-use-container h3 {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 80px;
  color: #939AA9;
  text-align: center;
  font-family: Geistcos;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.api-demo {
  display: flex;
  align-items: center;
  background: var(--white);
  border-radius: 16px;
  gap: 10px;
  /* padding: 3rem; */
  /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); */
}

.api-text {
  flex: 1;
  text-align: left;
}

.api-badge {
  display: inline-block;
  /* background-color: rgba(0, 176, 158, 0.1); */
  color: #157ffd;
  /* border-radius: 20px; */
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 20px;
}

.api-title {
  font-family: Geistcos;
  font-weight: 700;
  font-style: Bold;
  font-size: 24px;
  line-height: 32px;

  margin-bottom: 30px;
}

.api-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  gap: 10px;
}

.api-desc {
  font-family: Geistcos;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;

}

.api-text h4 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-color);
  line-height: 1.3;
}

.api-text p {
  font-size: 1.1rem;
  color: var(--gray-dark);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.docs-btn {
  width: 246px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem 1rem;
  color: var(--white);
  text-decoration: none;
  border-radius: 100px;
  text-align: center;
  justify-content: center;
  font-weight: 600;
  color: #157ffd;
  font-family: Geistcos;
  border: 1px solid #3987fc;
  transition: all 0.3s ease;
  margin-top: 30px;
}

.docs-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 176, 158, 0.2);
}

.code-preview {
  width: 560px;
  flex-direction: column;
  background-color: #e8e9f2;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e8e9f2;
}

.code-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  background-color: #1C1D1F;
  border-bottom: 1px solid #3D3D3D;
}

.code-type,
.code-lang {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.code-type span {
  font-family: Geistcos;
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  text-align: right;
}

.code-lang span {
  display: inline-block;
  width: 90px;
  height: 34px;
  border-radius: 100px !important;
  /* line-height: 34px; */
  color: #333;
  font-size: 14px;
  font-weight: 400;
  font-family: Geistcos;
}

.code-lang span {
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  background-color: #e8e9f2;
}

.code-lang span {
  cursor: pointer;
  transition: all 0.3s ease;
}

.code-lang span:hover {
  background-color: var(--accent-color);
  color: white;
}

.code-lang span.active {
  background-color: #000;
  color: white;
}

.code-lang-index span {
  background: #262626;
  border: 1px solid #3D3D3D;
  color: #999999
}

.code-lang-index span:hover {
  border: 1px solid #3D3D3D;
  background: #fff;
  color: #3D3D3D;
}

.code-lang-index span.active {
  background-color: white;
  color: #333333;
}

.code-content {
  padding: 0;
  height: 400px;
  flex: 1;
  /* background: #F9FCFF; */
  border-end-end-radius: 8px;
  border-end-start-radius: 8px;
  background-color: #fff;
  position: relative;
}

.code-copy-btn {
  border: none !important;
  background: none !important;
  top: 20px !important;
  right: 20px !important;
}

/* 复制按钮样式 */
.copy-button {
  position: absolute;
  top: 40px;
  right: 40px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  padding: 8px;
  color: #333;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  z-index: 10;
  width: 40px;
  height: 40px;
}

.copy-button:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
}

.copy-button:active {
  transform: translateY(0);
}

.copy-button svg {
  width: 20px;
  height: 20x;
  opacity: 0.8;
}

.copy-button.copied {
  background: rgba(0, 176, 158, 0.2);
  border-color: rgba(0, 176, 158, 0.4);
  color: #00b09e;
}

.copy-button.copied svg {
  opacity: 1;
}

/* 美化滚动条样式 */
.code-content pre::-webkit-scrollbar {
  width: 6px;
}

.code-content pre::-webkit-scrollbar-track {
  /* background: #2D2D2D; */
  border-radius: 4px;
}

.code-content pre::-webkit-scrollbar-thumb {
  background: #e1e1e1;
  border-radius: 4px;
  transition: background 0.3s ease;
}

.code-content pre::-webkit-scrollbar-thumb:hover {
  background: #777;
}

/* Firefox 滚动条样式 */
.code-content {
  scrollbar-width: thin;
  /* scrollbar-color: #555 #2D2D2D; */
  background-color: #000 !important;
  padding: 20px;
}

.code-content pre {
  margin: 0;
  overflow-y: auto;
  height: calc(100% - 50px);
  white-space: pre-wrap;
  background: #262626;
  border-radius: 8px;
  padding: 1.5rem;
  text-align: left;
  /* border: 1px solid #333; */
  /* box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3); */
}

.code-content code {
  color: #fff;
  font-family: "JetBrains Mono", "Fira Code", "Consolas", "Monaco", monospace;
  font-size: 14px;
  line-height: 1.6;
  font-weight: 400;
  letter-spacing: 0.5px;
  text-align: left;
  /* text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5); */
}

/* 语法高亮样式 */
.code-content code .comment {
  color: #6a9955;
  font-style: italic;
}

.code-content code .string {
  color: #ce9178;
}

.code-content code .keyword {
  color: #569cd6;
  font-weight: 500;
}

.code-content code .function {
  color: #dcdcaa;
}

.code-content code .number {
  color: #b5cea8;
}

@media (max-width: 1024px) {
  .api-demo {
    flex-direction: column;
    padding: 2rem;
    gap: 2rem;
  }

  .api-text {
    text-align: center;
  }

  .code-preview {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .how-to-use-section {
    padding: 3rem 2rem;
  }

  .how-to-use-container h2 {
    font-size: 2rem;
  }

  .how-to-use-container h3 {
    font-size: 1.2rem;
    margin-bottom: 80px;
  }

  .api-text h4 {
    font-size: 1.5rem;
  }

  .api-text p {
    font-size: 1rem;
  }

  .code-header {
    padding: 0.75rem 1rem;
  }

  .code-content {
    padding: 1rem;
  }
}

/* Solutions Dropdown Styles */
.solutions-dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  min-width: 200px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 8px 0;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.solutions-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.dropdown-item {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  color: #1f2937;
  text-decoration: none;
  transition: background-color 0.2s;
}

.dropdown-item:hover {
  background-color: #f3f4f6;
}

.dropdown-icon {
  width: 20px;
  height: 20px;
  margin-right: 12px;
}

.dropdown-item span {
  font-size: 14px;
  font-weight: 500;
}

/* Ensure the dropdown doesn't disappear when moving to it */
.dropdown-menu::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 10px;
}

.solutions-link {
  display: flex !important;
  align-items: center;
  gap: 4px;
  position: relative;
}

.arrow-icon {
  transition: transform 0.2s ease;
  margin-left: 4px;
  width: 12px;
  height: 12px;
  display: inline-block;
  vertical-align: middle;
  color: #666;
  /* 设置一个默认颜色 */
}

.solutions-dropdown:hover .arrow-icon {
  transform: rotate(180deg);
}

.solutions-link:hover {
  color: #4f46e5;
}

.solutions-link:hover .arrow-icon {
  color: #4f46e5;
}

/* 确保箭头颜色跟随文字颜色 */
.solutions-link .arrow-icon path {
  stroke: currentColor;
}

/* 添加平滑的下拉菜单过渡效果 */
.dropdown-menu {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  display: block;
  pointer-events: none;
}

.solutions-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-link.solutions-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding-right: 20px;
}

.arrow-icon {
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 6px;
  transition: transform 0.2s ease;
}

.nav-link.solutions-link:hover .arrow-icon {
  transform: translateY(-50%) rotate(180deg);
}

.dropdown-item {
  display: flex;
  align-items: center;
  padding: 8px 16px;
  color: #1f2937;
  text-decoration: none;
  transition: background-color 0.2s;
  gap: 8px;
}

.dropdown-item:hover {
  background-color: #f3f4f6;
}

.solution-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.solution-name {
  font-size: 14px;
  font-weight: 500;
  color: #1f2937;
}

.nav-menu .nav-item {
  position: relative;
}

.nav-dropdown {
  position: relative;
  display: inline-block;
}

.nav-menu .nav-link.solutions-link {
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
  padding-right: 24px;
  white-space: nowrap;
}

.nav-menu .solutions-text {
  display: inline-block;
}

.nav-menu .arrow-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
}

.nav-menu .arrow-icon {
  display: block !important;
  width: 10px;
  height: 6px;
  transition: transform 0.2s ease;
  color: currentColor;
}

.nav-menu .solutions-link:hover .arrow-icon {
  transform: rotate(180deg);
}

.nav-menu .dropdown-item {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  color: #1f2937;
  text-decoration: none;
  transition: background-color 0.2s;
}

.nav-menu .dropdown-item:hover {
  background-color: #f3f4f6;
}

.nav-menu .dropdown-icon {
  width: 20px;
  height: 20px;
  margin-right: 12px;
}

.nav-menu .nav-item {
  position: relative;
}

.nav-link.solutions-link {
  display: inline-flex !important;
  align-items: center;
  color: #666;
  text-decoration: none;
  padding: 8px 12px;
  transition: color 0.2s;
}

.nav-link.solutions-link:hover {
  color: #4f46e5;
}

.nav-link.solutions-link svg {
  display: inline-block !important;
  transition: transform 0.2s;
}

.nav-link.solutions-link:hover svg {
  transform: rotate(180deg);
}

.solutions-dropdown-menu {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  position: fixed;
  top: 74px;
  left: 50%;
  transform: translateX(-50%);
  min-width: 200px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 8px;
  z-index: 1000;
  width: 753px;
  /* height: 452px; */
}

.nav-dropdown:hover .solutions-dropdown-menu,
.nav-item:hover .solutions-dropdown-menu {
  display: flex;
}

.nav-menu .dropdown-item {
  display: flex;
  align-items: center;
  padding: 8px 16px;
  color: #1f2937;
  text-decoration: none;
  transition: background-color 0.2s;
  gap: 8px;
  margin-bottom: 0;
  
}

.nav-menu .dropdown-item:hover {
  background-color: #f3f4f6;
}

.signup-btn {
  cursor: pointer;
}

.loginModal-password::-ms-reveal {
  display: none;
}

.link-box {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 48px;
  min-height: 48px;
  /* cursor: pointer; */
}

.link-tag {
  width: auto;
  opacity: 1;
  border-radius: 100px;
  background: #ffcc31;
  font-family: Geistcos;
  font-weight: 700;
  font-size: 16px;
  line-height: 26px;
  padding: 2px 8px;

  vertical-align: middle;
  text-align: center;
  box-sizing: border-box;
  color: #ffffff;
}

.platform {
  display: flex;
  gap: 20px;
  margin-top: 12px;
}

.pbox {
  width: 30px;
  height: 30px;
  cursor: pointer;
}

.tictok {
  background: url("/assets/ticktok.svg") no-repeat;
  background-size: 100% 100%;
  background-position: center;
}

.facebook {
  background: url("/assets/facebook.svg") no-repeat;
  background-size: 100% 100%;
  background-position: center;
}

.infos {
  background: url("/assets/infos.svg") no-repeat;
  background-size: 100% 100%;
  background-position: center;
}

.youte {
  background: url("/assets/youte.svg") no-repeat;
  background-size: 100% 100%;
  background-position: center;
}

.line {
  background: url("/assets/line.svg") no-repeat;
  background-size: 100% 100%;
  background-position: center;
}

.photob {
  background: url("/assets/photob.svg") no-repeat;
  background-size: 100% 100%;
  background-position: center;
}

.tictok:hover {
  background-image: url("/assets/tictok-h.svg");
  background-repeat: no-repeat;
}

.facebook:hover {
  background-image: url("/assets/facebook-h.svg");
  background-repeat: no-repeat;
}

.infos:hover {
  background-image: url("/assets/infos-h.svg");
  background-repeat: no-repeat;
}

.youte:hover {
  background-image: url("/assets/youte-h.svg");
  background-repeat: no-repeat;
}

.line:hover {
  background-image: url("/assets/line-h.svg");
  background-repeat: no-repeat;
}

.photob:hover {
  background-image: url("/assets/photob-h.svg");
  background-repeat: no-repeat;
}

/* 设置禁用效果 */
/* .disabled {
    cursor: not-allowed;
    pointer-events: none;
} */

/* 设置首页样式 */
/* Solutions dropdown positioning optimized */
.nav-dropdown .solutions-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
}

.nav-dropdown:hover .solutions-dropdown-menu {
  display: block;
}

/* Cookie Banner Styles */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  border-top: 1px solid #e5e7eb;
  box-shadow: 0 -4px 6px -1px rgba(0, 0, 0, 0.1);
  padding: 16px 20px;
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.3s ease-in-out;
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cookie-text {
  flex: 1;
  color: #666;
  font-family: Geistcos;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  line-height: 1.5;
}

.cookie-text h3 {
  color: #333;
  font-family: Geistcos;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.cookie-text a {
  color: #3B8AFC;
  font-family: Geistcos;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration: none;
}

.cookie-text a:hover {
  color: #2563eb;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  align-items: center;
}

.cookie-btn {
  padding: 8px 16px;
  border-radius: 6px;
  color: #333;
  font-family: Geist;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.cookie-btn-secondary {
  background: #f3f4f6;
  color: #374151;
}

.cookie-btn-secondary:hover {
  background: #e5e7eb;
}

.cookie-btn-primary {
  background: #3b82f6;
  color: white;
}

.cookie-btn-primary:hover {
  background: #2563eb;
}

@media (max-width: 768px) {
  .cookie-content {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }

  .cookie-buttons {
    justify-content: center;
  }

  .cookie-text {
    text-align: center;
  }
}

/* 公共组件 */
/* 代码编辑器样式 */
.code-captcha-box {
  position: relative;
  background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
  border-radius: 12px;
  padding: 24px 32px;
  margin: 0 0 30px 0;
  min-height: 400px;
  font-family: "Monaco", "Menlo", "Ubuntu Mono", monospace;
  font-size: 14px;
  line-height: 1.6;
  color: #e2e8f0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  border: 1px solid #4a5568;
  border-top: none;
  width: 100%;
}

/* 窗口控制按钮 */
.code-captcha-box::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 16px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ff5f56;
  box-shadow: 20px 0 0 #ffbd2e, 40px 0 0 #27ca3f;
}

/* 右侧彩色圆点装饰已删除 */

/* 代码内容样式 */
.code-captcha-box {
  display: block;
  text-align: left;
  padding-left: 80px;
  padding-right: 40px;
  overflow-x: auto;
  position: relative;
}

/* 复制按钮样式 */
.copy-button {
  position: absolute;
  top: 12px;
  right: 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  padding: 8px 12px;
  color: #e2e8f0;
  font-size: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  z-index: 10;
}

/* .copy-button:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
} */

.copy-button:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.copy-button svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
}

.copy-button .copy-text {
  font-weight: 500;
  letter-spacing: 0.3px;
}

/* 复制成功状态 */
.copy-button.copied {
  background: rgba(34, 197, 94, 0.2);
  border-color: rgba(34, 197, 94, 0.4);
  color: #22c55e;
}

.copy-button.copied .copy-text {
  content: "已复制";
}

.code-captcha-box pre {
  margin: 0;
  padding: 0;
  background: transparent;
  border: none;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  white-space: pre;
  overflow-x: auto;
}

.code-captcha-box code {
  background: transparent;
  padding: 0;
  border: none;
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

/* highlight.js 语法高亮样式覆盖 */
.code-content .hljs-keyword,
.code-captcha-box .hljs {
  background: transparent !important;
  color: #e2e8f0 !important;
}

/* 针对深色主题的语法高亮颜色调整 */
.code-content .hljs-keyword,
.code-captcha-box .hljs-keyword {
  color: #ff79c6 !important;
}

.code-content .hljs-keyword,
.code-captcha-box .hljs-string {
  color: #f1fa8c !important;
}

.code-content .hljs-keyword,
.code-captcha-box .hljs-comment {
  color: #6272a4 !important;
}

.code-content .hljs-keyword,
.code-captcha-box .hljs-number {
  color: #bd93f9 !important;
}

.code-content .hljs-keyword,
.code-captcha-box .hljs-function {
  color: #50fa7b !important;
}

.code-content .hljs-keyword,
.code-captcha-box .hljs-class {
  color: #8be9fd !important;
}

.code-content .hljs-keyword,
.code-captcha-box .hljs-variable {
  color: #f8f8f2 !important;
}

.code-content .hljs-keyword,
.code-captcha-box .hljs-built_in {
  color: #8be9fd !important;
}

.code-content .hljs-keyword,
.code-captcha-box .hljs-type {
  color: #8be9fd !important;
}

.code-content .hljs-keyword,
.code-captcha-box .hljs-literal {
  color: #bd93f9 !important;
}

.code-content .hljs-keyword,
.code-captcha-box .hljs-title {
  color: #50fa7b !important;
}

.code-content .hljs-keyword,
.code-captcha-box .hljs-attr {
  color: #50fa7b !important;
}

.code-content .hljs-keyword,
.code-captcha-box .hljs-meta {
  color: #ff79c6 !important;
}

/* 悬停效果 */
.code-captcha-box:hover {
  /* transform: translateY(-2px); */
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
}

/* 代码文本样式 */
.code-captcha-box {
  font-weight: 500;
  letter-spacing: 0.5px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* 响应式设计 */
@media (max-width: 768px) {
  .code-captcha-box {
    min-height: 300px;
    padding: 20px 60px 20px 60px;
    margin: 20px 0;
    font-size: 12px;
  }

  .copy-button {
    top: 10px;
    right: 12px;
    padding: 6px 10px;
    font-size: 11px;
  }

  .copy-button svg {
    width: 12px;
    height: 12px;
  }
}

@media (max-width: 480px) {
  .code-captcha-box {
    padding: 16px 40px 16px 40px;
    font-size: 11px;
  }

  .copy-button {
    top: 8px;
    right: 10px;
    padding: 5px 8px;
    font-size: 10px;
    gap: 4px;
  }

  .copy-button svg {
    width: 10px;
    height: 10px;
  }

  .copy-button .copy-text {
    display: none;
  }
}

/* 语言切换tab导航栏样式 */
.language-tabs {
  position: relative;
  width: 70%;
  display: flex;
  align-items: center;
  /* background: #f8f9fa; */
  border-radius: 8px 8px 0 0;
  padding: 0;
  margin: 30px 0 0 0;
  /* border-bottom: 2px solid #EEEEEE; */
  overflow-x: auto;
}

.language-tabs::after {
  position: absolute;
  content: '';
  width: 100%;
  border-bottom: 3px solid #eee;
  bottom: 0;
  z-index: 1;
}

.tab-item {
  z-index: 2;
  position: absolute;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 500;
  color: #6c757d;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  position: relative;
  flex: 1;
  text-align: center;
  border-bottom-color: transparent;
  font-weight: 600;
  color: #666666;
  font-family: Geistcos;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

/* .tab-item:hover {
  color: #495057;
  background: rgba(0, 123, 255, 0.05);
} */

.tab-item.active {
  color: #111111;
  border-bottom-color: #222222;
}

/* 响应式设计 */
@media (max-width: 768px) {
  .language-tabs {
    margin: 20px 0 0 0;
  }

  .tab-item {
    padding: 10px 16px;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .tab-item {
    padding: 8px 12px;
    font-size: 12px;
  }
}

#loadding {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 100000000;
  font-size: 14px;
  font-family: Geistcos;
  color: #333;
}