.carousel {
  position: relative;
  width: 100%;
  margin: auto;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
  border-radius: 16px;
}

.carousel-slide {
  display: none;
  transition: opacity 0.6s cubic-bezier(0.33, 1, 0.68, 1);
}

.carousel-slide.active {
  display: block;
  animation: fadeScale 1s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.carousel-slide img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  filter: brightness(0.95);
  transition: filter 0.4s ease;
}

.carousel-slide img:hover {
  filter: brightness(1.05);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(138, 43, 226, 0.7); /* 紫色背景 */
  color: white;
  border: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
}

.carousel-btn:hover {
  background-color: #7126b3; /* 悬停更深的紫色 */
  transform: translateY(-50%) scale(1.1);
  opacity: 1;
}

.carousel-btn svg {
  width: 24px;
  height: 24px;
}

.carousel-btn.prev {
  left: 15px;
}

.carousel-btn.next {
  right: 15px;
}

.carousel-dots {
  text-align: center;
  margin-top: 15px;
  position: absolute;
  bottom: 15px;
  left: 0;
  right: 0;
  z-index: 5;
}

.dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 5px;
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0.7;
}

.dot:hover {
  transform: scale(1.2);
  opacity: 0.9;
}

.dot.active {
  background-color: #8a2be2;
  width: 24px;
  border-radius: 10px;
  opacity: 1;
}

@keyframes fadeScale {
  from { 
    opacity: 0;
    transform: scale(0.95);
  }
  to { 
    opacity: 1;
    transform: scale(1);
  }
}

/* 现代化设计系统 - 变量 */
:root {
  /* 主色调 */
  --primary-color: #8a2be2;
  --primary-light: #a64dff;
  --primary-dark: #6a1cb7;
  --primary-hover: #7126b3;
  
  /* 辅助色调 */
  --accent-color: #ff7b54;
  --accent-dark: #e55a33;
  --accent-light: #ff9b7b;
  
  /* 中性色 */
  --secondary-color: #121212;
  --text-color: #e0e0e0;
  --text-light: #a0a0a0;
  --background-color: #0A0A0A;
  --background-light: #1e1e1e;
  --background-dark: #050505;
  
  /* 渐变 */
  --gradient-1: linear-gradient(90deg, #8a2be2, #e63de6);
  --gradient-2: linear-gradient(120deg, #ff7b54, #e63de6);
  --gradient-3: linear-gradient(135deg, #8a2be2, #4b6cb7);
  --gradient-cyberpunk: linear-gradient(90deg, #f3ec78, #af4261);
  
  /* 阴影 */
  --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  --text-shadow: 0 2px 10px rgba(138, 43, 226, 0.5);
  --neon-shadow: 0 0 10px rgba(138, 43, 226, 0.8), 0 0 20px rgba(138, 43, 226, 0.5), 0 0 30px rgba(138, 43, 226, 0.3);
  
  /* 动画时间 */
  --transition-fast: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-bounce: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  --transition-smooth: 0.6s cubic-bezier(0.33, 1, 0.68, 1);
  
  /* 布局变量 */
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
  --spacing-xs: 4px;
  --spacing-sm: 8px;
  --spacing-md: 16px;
  --spacing-lg: 24px;
  --spacing-xl: 32px;
  --spacing-xxl: 48px;
  
  /* Z-index层级 */
  --z-index-low: 10;
  --z-index-medium: 100;
  --z-index-high: 1000;
}

/* 全局重置和基础样式 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-color);
  background-color: var(--background-color);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* 现代主题整体样式 */
.modern-theme {
  font-family: 'Outfit', 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--background-color);
  color: var(--text-color);
  overflow-x: hidden;
  position: relative;
}

/* 链接样式 */
a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
  position: relative;
}

a:hover {
  color: var(--primary-light);
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

ul, ol {
  list-style-type: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* 星空背景效果 */
.stars-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  overflow: hidden;
}

#stars, #stars2, #stars3 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

#stars {
  background: transparent url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAABkBAMAAACCzIhnAAAAElBMVEUAAAD///////////////////8+Uq06AAAABXRSTlMA8Ick5MFn0I4AAABySURBVFjD7c9BDYAwDIXhtqABDWgADWjgD59GNuRlO5fd7b733sdo9Wd+9WV+9WV+9WV+9WV+9WX+w8z8CxY0aNCgQYMGDRo0aNCgQYMGDRo0aNCgQYMGDRo0aNCgQYMGDRo0aNCgQYMGDRo0aNCgQYMGDRo0aNCgQfMCThUO07yxJawAAAAASUVORK5CYII=') repeat top center;
  animation: animate-stars 100s linear infinite;
}

#stars2 {
  background: transparent url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAABkBAMAAACCzIhnAAAAElBMVEUAAAD///////////////////8+Uq06AAAABXRSTlMA8Ick5MFn0I4AAACASURBVFjD7c8xEYAwEAXRLwlJSEISklWCEiRUgaQouAZyBNeAa8A14BpwDTh4mgm3ku+0f+cl38z/O/+H+T/M/2H+D/N/mP/D/B/m/zD/h/k/zNw/YfDcceHcc+ncd+3c9+3c9+7c9+/cNzDcdzDctzDc9zDcNzHcd/EP5h+Z/3IByXEV8uIdUywAAAAASUVORK5CYII=') repeat top center;
  animation: animate-stars 150s linear infinite;
}

#stars3 {
  background: transparent url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAABkBAMAAACCzIhnAAAAElBMVEUAAAD///////////////////8+Uq06AAAABXRSTlMA8Ick5MFn0I4AAACASURBVFjD7c9REoAgDEPRtOPgGTyKR5Fj6VE8ikfxKB4FfxAGlF3bbvPfvJkE5n+Y/8P8H+b/MP+H+T/MP8z8FyxYsGDBggULFixYsGDBggULFixYsGDBggULFixYsGDBggULFixYsGDBggULFixYsGDBggULFixYsGDBggULFixYsGDBggULFixYsGDBgmUWyvtM5P1W8sIzeTE695UXVcsLwwAAAABJRU5ErkJggg==') repeat top center;
  animation: animate-stars 200s linear infinite;
}

@keyframes animate-stars {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-1000px);
  }
}

/* 背景粒子效果增强 */
.bg-particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  z-index: -1;
}

.bg-particles span {
  position: absolute;
  display: block;
  border-radius: 50%;
  pointer-events: none;
  animation: float-particle 25s linear infinite;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  opacity: 0.4;
}

.bg-particles span:nth-child(1) {
  width: 80px;
  height: 80px;
  top: 10%;
  left: 20%;
  animation-delay: 0s;
  animation-duration: 20s;
  background: linear-gradient(45deg, var(--primary-color), transparent);
  box-shadow: 0 0 20px rgba(138, 43, 226, 0.3);
}

.bg-particles span:nth-child(2) {
  width: 150px;
  height: 150px;
  top: 60%;
  left: 80%;
  animation-delay: 2s;
  animation-duration: 25s;
  background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
  box-shadow: 0 0 30px rgba(138, 43, 226, 0.2);
}

.bg-particles span:nth-child(3) {
  width: 100px;
  height: 100px;
  top: 80%;
  left: 30%;
  animation-delay: 1s;
  animation-duration: 30s;
  background: linear-gradient(45deg, var(--accent-color), transparent);
  box-shadow: 0 0 25px rgba(255, 123, 84, 0.2);
}

.bg-particles span:nth-child(4) {
  width: 200px;
  height: 200px;
  top: 40%;
  left: 10%;
  animation-delay: 3s;
  animation-duration: 35s;
  background: radial-gradient(circle, var(--primary-light), transparent);
  box-shadow: 0 0 40px rgba(138, 43, 226, 0.15);
}

.bg-particles span:nth-child(5) {
  width: 120px;
  height: 120px;
  top: 20%;
  left: 70%;
  animation-delay: 5s;
  animation-duration: 28s;
  background: linear-gradient(45deg, var(--primary-dark), transparent);
  box-shadow: 0 0 30px rgba(138, 43, 226, 0.2);
}

@keyframes float-particle {
  0% {
    transform: translateY(0) rotate(0deg) scale(1);
    opacity: 0.4;
  }
  50% {
    opacity: 0.7;
    transform: translateY(-500px) rotate(360deg) scale(1.2);
  }
  100% {
    transform: translateY(-1000px) rotate(720deg) scale(0.8);
    opacity: 0;
  }
}

/* 鼠标跟随效果 */
.cursor-follower {
  position: fixed;
  width: 30px;
  height: 30px;
  background: rgba(138, 43, 226, 0.2);
  border-radius: 50%;
  pointer-events: none;
  z-index: var(--z-index-high);
  transform: translate(-50%, -50%);
  transition: transform 0.1s, width 0.3s, height 0.3s, background 0.3s;
  backdrop-filter: invert(100%);
  -webkit-backdrop-filter: invert(100%);
}

.cursor-follower.link-active {
  width: 60px;
  height: 60px;
  background: rgba(138, 43, 226, 0.1);
}

/* 滚动条自定义 */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: rgba(30, 30, 30, 0.5);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--primary-color), var(--accent-color));
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(var(--primary-light), var(--accent-light));
}

/* 回到顶部按钮 */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gradient-1);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: var(--z-index-high);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s, transform 0.3s;
  box-shadow: var(--box-shadow);
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-5px);
}

/* 文本效果 */
.gradient-text {
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.highlight {
  color: var(--accent-color);
  font-weight: 600;
}

.text-glowing {
  text-shadow: var(--neon-shadow);
}

/* 加载动画 */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

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

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

@keyframes slideRight {
  from { transform: translateX(-30px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

@keyframes scaleIn {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* 通用文本动画和效果 */
.reveal-text {
  position: relative;
  animation: slideUp 0.8s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}

.fade-in {
  animation: fadeIn 1s ease forwards;
}

.split-text {
  overflow: hidden;
}

.split-text span {
  display: inline-block;
  animation: slideUp 0.8s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}

/* 全局动画延迟变量 */
.delay-1 {
  animation-delay: 0.2s;
}

.delay-2 {
  animation-delay: 0.4s;
}

.delay-3 {
  animation-delay: 0.6s;
}

.delay-4 {
  animation-delay: 0.8s;
}

.delay-5 {
  animation-delay: 1s;
}

/* 1080px以下的响应式调整 */
@media (max-width: 1080px) {
  html {
    font-size: 14px;
  }
}

/* 768px以下的响应式调整 */
@media (max-width: 768px) {
  html {
    font-size: 12px;
  }
  
  .cursor-follower {
    display: none;
  }
}

/* 视觉效果增强 */
.hero-video {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: var(--box-shadow);
}

.feature-card {
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: -100%;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: all 0.6s;
}

.feature-card:hover::before {
  top: 100%;
  left: 100%;
}

/* 导航栏现代化 */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: var(--z-index-high);
  padding: 0.7rem 0;
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all var(--transition-fast);
}

.navbar.mega-nav {
  background: rgba(10, 10, 10, 0.7);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.navbar.is-scrolled {
  padding: 0.5rem 0;
  background: rgba(10, 10, 10, 0.9);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.navbar-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-text {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 1px;
  position: relative;
  z-index: 1;
}

.logo-icon {
  margin-right: 8px;
  font-size: 1.5rem;
}

.nav-menu {
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
}

.nav-item {
  position: relative;
}

.nav-link {
  color: var(--text-color);
  font-weight: 500;
  font-size: 1.1rem;
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  transition: color 0.3s ease, transform 0.3s ease;
  position: relative;
}

.nav-icon {
  margin-right: 8px;
  font-size: 1rem;
  color: var(--primary-light);
  transition: transform 0.3s ease;
}

.nav-link:hover .nav-icon {
  transform: translateY(-3px);
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background: var(--gradient-1);
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: var(--primary-light);
  transform: translateY(-2px);
}

.nav-link:hover::after,
.router-link-active::after {
  width: 100%;
}

.router-link-active {
  color: var(--primary-light);
}

/* 新布鲁塔主义设计风格 */
.neo-brutalism {
  position: relative;
  border: 3px solid black;
  box-shadow: 5px 5px 0 black;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  transition: all 0.2s ease;
  background: white;
  color: black;
  font-weight: 700;
}

.neo-brutalism:hover {
  transform: translate(5px, 5px);
  box-shadow: 0 0 0 black;
}

/* 汉堡菜单 */
.hamburger {
  display: none;
  cursor: pointer;
  width: 30px;
  height: 20px;
  position: relative;
  z-index: var(--z-index-high);
}

.hamburger .bar {
  display: block;
  width: 100%;
  height: 3px;
  margin: 6px 0;
  background-color: var(--text-color);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.active .bar:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.hamburger.active .bar:nth-child(2) {
  opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* 英雄区域现代化 */
.hero {
  min-height: calc(100vh - 70px);
  padding-top: 2rem;
  padding-bottom: 5rem;
  margin-top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.cyberpunk-hero {
  background: linear-gradient(135deg, #0a0a0a, #1a1a1a, #0a0a0a);
  position: relative;
}

.hero-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
  opacity: 0.3;
  animation: morphShape 20s infinite alternate;
}

.shape-1 {
  top: 10%;
  left: 15%;
  width: 300px;
  height: 300px;
  background: rgba(138, 43, 226, 0.3);
}

.shape-2 {
  top: 60%;
  right: 15%;
  width: 250px;
  height: 250px;
  background: rgba(255, 123, 84, 0.3);
}

.shape-3 {
  bottom: 20%;
  left: 25%;
  width: 200px;
  height: 200px;
  background: rgba(230, 61, 230, 0.3);
}

.shape-4 {
  top: 40%;
  left: 40%;
  width: 350px;
  height: 350px;
  background: rgba(70, 30, 150, 0.2);
}

@keyframes morphShape {
  0% {
    border-radius: 60% 40% 70% 30% / 60% 30% 70% 40%;
  }
  50% {
    border-radius: 30% 60% 40% 70% / 50% 60% 30% 40%;
  }
  100% {
    border-radius: 40% 60% 30% 70% / 40% 40% 60% 50%;
  }
}

/* 修复neo-brutalism样式 */
.neo-brutalism {
  position: relative;
  border: 3px solid black;
  box-shadow: 5px 5px 0 black;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  transition: all 0.2s ease;
  background: white;
  color: black;
  font-weight: 700;
}

.neo-brutalism:hover {
  transform: translate(5px, 5px);
  box-shadow: 0 0 0 black;
}

/* 修复同时使用neo-brutalism和gradient-text的问题 */
.neo-brutalism.gradient-text {
  background: white; /* 确保背景为白色 */
  -webkit-background-clip: initial; /* 不使用背景剪裁 */
  -webkit-text-fill-color: initial; /* 不使用文本填充色 */
  background-clip: initial;
  color: black; /* 使用黑色文字 */
}

.neo-brutalism .logo-icon {
  color: black; /* 确保图标使用黑色 */
}

/* 修复hero区域内容间距问题，防止标题被挡住 */
.hero {
  min-height: calc(100vh - 70px);
  padding-top: 2rem;
  padding-bottom: 5rem;
  margin-top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* 添加顶部内边距以防止内容被导航栏遮挡 */
.hero-content {
  text-align: center;
  max-width: 900px;
  position: relative;
  z-index: 2;
  animation: fadeIn 1s ease forwards;
  margin-bottom: 3rem;
  padding-top: 30px; /* 减少顶部内边距 */
}

.hero-content h1 {
  font-size: 4.5rem;
  margin-bottom: 1.5rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -1px;
}

.hero-tagline {
  font-size: 1.5rem;
  margin-bottom: 2.5rem;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}

/* 故障文字效果 */
.glitch-wrapper {
  position: relative;
  margin-bottom: 1.5rem;
}

.glitch {
  position: relative;
  animation: glitch 2s infinite;
}

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.glitch::before {
  background-image: var(--gradient-1);
  left: 2px;
  animation: glitch-anim 3s infinite linear alternate-reverse;
  text-shadow: -2px 0 var(--accent-color);
  opacity: 0.7;
}

.glitch::after {
  background-image: var(--gradient-2);
  left: -2px;
  animation: glitch-anim2 2.5s infinite linear alternate-reverse;
  text-shadow: 2px 0 var(--primary-color);
  opacity: 0.7;
}

@keyframes glitch-anim {
  0% { transform: translate(0); }
  20% { transform: translate(-3px, 3px); }
  40% { transform: translate(-3px, -3px); }
  60% { transform: translate(3px, 3px); }
  80% { transform: translate(3px, -3px); }
  100% { transform: translate(0); }
}

@keyframes glitch-anim2 {
  0% { transform: translate(0); }
  20% { transform: translate(3px, -3px); }
  40% { transform: translate(3px, 3px); }
  60% { transform: translate(-3px, -3px); }
  80% { transform: translate(-3px, 3px); }
  100% { transform: translate(0); }
}

@keyframes glitch {
  0% { transform: translate(0); }
  2% { transform: translate(-5px, 0); }
  4% { transform: translate(0); }
  6% { transform: translate(0, -5px); }
  8% { transform: translate(0); }
  98% { transform: translate(0); }
  100% { transform: translate(0); }
}

/* 通知横幅 */
.notification-banner {
  background: linear-gradient(90deg, rgba(10, 10, 10, 0.5), rgba(25, 25, 25, 0.8), rgba(10, 10, 10, 0.5));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  max-width: 600px;
  margin: 2rem auto 0;
  padding: 1rem 2rem;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  animation: pulse 3s infinite;
}

.notification-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.notification-icon {
  color: var(--accent-color);
  animation: bounceIcon 2s infinite;
}

@keyframes bounceIcon {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

/* 滚动指示器 */
.scroll-indicator {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: fadeIn 2s forwards;
  opacity: 0;
  animation-delay: 2s;
}

.scroll-indicator p {
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.scroll-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-15px); }
  60% { transform: translateY(-5px); }
}

/* 卡片3D效果增强 */
.card-3d-effect {
  transform-style: preserve-3d;
  transition: transform var(--transition-smooth);
  perspective: 1000px;
}

/* 视频覆盖效果 */
.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(10, 10, 10, 0.4), rgba(0, 0, 0, 0.2));
  z-index: 1;
  pointer-events: none;
  border-radius: var(--border-radius-md);
}

/* 动画效果渐变背景 */
.animated-gradient {
  background: linear-gradient(-45deg, #121212, #1a1a1a, #262150, #1a1333);
  background-size: 400% 400%;
  animation: gradient-bg 15s ease infinite;
}

@keyframes gradient-bg {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* 添加玻璃态效果 */
.glass-effect {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: rgba(10, 10, 10, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

/* 添加卡片样式 */
.glass-card {
  background: rgba(20, 20, 20, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--border-radius-md);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition-bounce), box-shadow var(--transition-fast);
}

.glass-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

/* 形态变化卡片 */
.morphing-card {
  transition: border-radius 0.5s ease, transform 0.3s ease;
}

.morphing-card:hover {
  border-radius: 30px 15px 45px 10px;
}

.card-hover-effect {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--gradient-1);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.morphing-card:hover .card-hover-effect {
  transform: scaleX(1);
}

.card-blob {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(138, 43, 226, 0.3), transparent 60%);
  border-radius: 50%;
  filter: blur(20px);
  z-index: 0;
  opacity: 0.5;
  transition: transform 0.5s ease;
}

.morphing-card:hover .card-blob {
  transform: scale(1.3) rotate(45deg);
  opacity: 0.8;
}

/* 按钮样式 */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.8rem;
  border-radius: var(--border-radius-md);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-fast);
  margin: 0.5rem;
  cursor: pointer;
  text-decoration: none;
  border: none;
  outline: none;
  font-family: inherit;
  font-size: 1rem;
  z-index: 1;
}

.btn-primary {
  background: var(--primary-color);
  color: white;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-color);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 7px 15px rgba(0, 0, 0, 0.3);
}

.btn:active {
  transform: translateY(-1px);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

/* 玻璃按钮效果 */
.glass-btn {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.glass-btn .btn-shine {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: rotate(30deg);
  transition: all 0.7s;
  opacity: 0;
}

.glass-btn:hover .btn-shine {
  opacity: 1;
  left: 100%;
  transition: all 0.7s;
}

/* 发光效果按钮 */
.glow-effect {
  box-shadow: 0 0 10px var(--primary-color), 0 0 20px rgba(138, 43, 226, 0.2);
}

.glow-effect:hover {
  box-shadow: 0 0 15px var(--primary-color), 0 0 30px rgba(138, 43, 226, 0.4);
}

/* 赛博朋克风格按钮 */
.cyberpunk-btn {
  background: var(--gradient-cyberpunk);
  position: relative;
  clip-path: polygon(0 10%, 100% 0, 95% 90%, 5% 100%);
  padding: 1rem 2rem;
}

.cyberpunk-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #f3ec78, #af4261);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.cyberpunk-btn:hover::before {
  opacity: 1;
}

.btn-border-1, .btn-border-2 {
  position: absolute;
  border: 2px solid rgba(255, 255, 255, 0.8);
}

.btn-border-1 {
  width: calc(100% + 10px);
  height: calc(100% - 10px);
  left: -5px;
  top: 5px;
  clip-path: polygon(0 10%, 100% 0, 95% 90%, 5% 100%);
}

.btn-border-2 {
  width: calc(100% - 10px);
  height: calc(100% + 10px);
  left: 5px;
  top: -5px;
  clip-path: polygon(0 10%, 100% 0, 95% 90%, 5% 100%);
}

/* 幽灵按钮 */
.ghost-btn {
  background: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-light);
  text-shadow: 0 0 5px rgba(138, 43, 226, 0.5);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.ghost-btn::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: -100%;
  background: linear-gradient(90deg, transparent, rgba(138, 43, 226, 0.2), transparent);
  transition: left 0.7s;
  z-index: -1;
}

.ghost-btn:hover::after {
  left: 100%;
}

/* 脉冲效果 */
.pulse-effect {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(138, 43, 226, 0.4);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(138, 43, 226, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(138, 43, 226, 0);
  }
}

/* 按钮内容样式 */
.btn-content {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.icon-left {
  margin-right: 0.5rem;
}

.icon-right {
  margin-left: 0.5rem;
}

/* 按钮大小 */
.btn-outline {
  background: transparent;
  border: 2px solid var(--primary-color);
  color: var(--text-color);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-outline::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--primary-color);
  transition: left var(--transition-fast);
  z-index: -1;
}

.btn-outline:hover {
  color: white;
}

.btn-outline:hover::before {
  left: 0;
}

.glow-on-hover {
  position: relative;
  z-index: 1;
}

.glow-on-hover::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: inherit;
  padding: 2px;
  background: var(--gradient-1);
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

.glow-on-hover:hover::before {
  opacity: 1;
}

.cyber-btn {
  position: relative;
  color: white;
  background: var(--primary-color);
  font-weight: 600;
  text-transform: uppercase;
  padding: 0.75rem 1.5rem;
  clip-path: polygon(0 0, 100% 0, 95% 100%, 5% 100%);
}

.cyber-btn-border {
  position: absolute;
  inset: -3px;
  background: linear-gradient(90deg, var(--primary-light), var(--accent-color));
  clip-path: polygon(0 0, 100% 0, 95% 100%, 5% 100%);
  z-index: -1;
  transform: translate(5px, 5px);
  opacity: 0.5;
  transition: transform 0.2s, opacity 0.2s;
}

.cyber-btn:hover .cyber-btn-border {
  transform: translate(3px, 3px);
  opacity: 1;
}

/* 数字统计部分 */
.stats-section {
  padding: 4rem 2rem;
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  margin: 2rem 0;
}

.stats-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
}

.stat-item {
  flex: 1;
  min-width: 200px;
  text-align: center;
  position: relative;
  padding: 1.5rem;
}

.stat-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 30%;
  height: 3px;
  background: var(--gradient-1);
  border-radius: 3px;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 1.2rem;
  color: var(--text-light);
  font-weight: 500;
}

/* 技术标签 */
.tech-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin: 3rem 0;
}

.tech-tag {
  background: rgba(138, 43, 226, 0.15);
  border: 1px solid rgba(138, 43, 226, 0.3);
  padding: 0.5rem 1.2rem;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--primary-light);
  transition: all var(--transition-fast);
}

.tech-tag:hover {
  background: rgba(138, 43, 226, 0.25);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(138, 43, 226, 0.2);
}

/* 浮动标签 */
.floating-tag {
  position: absolute;
  padding: 0.5rem 1rem;
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 8px;
  color: white;
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  z-index: 2;
}

.tag-1 {
  top: 20%;
  left: -15%;
  animation: floatTag 4s ease-in-out infinite;
}

.tag-2 {
  top: 50%;
  right: -15%;
  animation: floatTag 5s ease-in-out infinite 1s;
}

.tag-3 {
  bottom: 20%;
  left: -10%;
  animation: floatTag 6s ease-in-out infinite 2s;
}

@keyframes floatTag {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

/* 现代化页脚 */
.modern-footer {
  position: relative;
  background: var(--background-dark);
  padding: 0;
  overflow: hidden;
}

/* 页脚波浪动画 */
.footer-waves {
  position: relative;
  width: 100%;
  height: 120px;
  margin-bottom: -7px;
}

.wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23232323" fill-opacity="1" d="M0,288L48,272C96,256,192,224,288,197.3C384,171,480,149,576,165.3C672,181,768,235,864,250.7C960,267,1056,245,1152,224C1248,203,1344,181,1392,170.7L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') repeat-x;
  background-size: 1440px 100px;
  animation: wave-animation 10s linear infinite;
}

.wave1 {
  z-index: 5;
  opacity: 1;
  bottom: 0;
  animation: wave-animation-1 8s linear infinite;
}

.wave2 {
  z-index: 4;
  opacity: 0.75;
  bottom: 10px;
  animation: wave-animation-2 10s linear infinite;
}

.wave3 {
  z-index: 3;
  opacity: 0.5;
  bottom: 15px;
  animation: wave-animation-3 12s linear infinite;
}

.wave4 {
  z-index: 2;
  opacity: 0.25;
  bottom: 20px;
  animation: wave-animation-4 14s linear infinite;
}

@keyframes wave-animation-1 {
  0% { background-position-x: 0; }
  100% { background-position-x: 1440px; }
}

@keyframes wave-animation-2 {
  0% { background-position-x: 0; }
  100% { background-position-x: -1440px; }
}

@keyframes wave-animation-3 {
  0% { background-position-x: 0; }
  100% { background-position-x: 1440px; }
}

@keyframes wave-animation-4 {
  0% { background-position-x: 0; }
  100% { background-position-x: -1440px; }
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 4rem 2rem 3rem;
  position: relative;
  z-index: 10;
}

.footer-section {
  display: flex;
  flex-direction: column;
}

.footer-section h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-link {
  display: flex;
  align-items: center;
  color: var(--text-light);
  transition: color var(--transition-fast);
}

.footer-link:hover {
  color: var(--primary-light);
}

.link-icon {
  margin-right: 0.7rem;
  color: var(--primary-color);
  font-size: 0.9rem;
}

.social-icons {
  display: flex;
  gap: 1rem;
  margin: 1.5rem 0;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  background: rgba(255, 255, 255, 0.1);
  transition: all var(--transition-fast);
}

.social-icon:hover {
  background: var(--primary-color);
  transform: translateY(-5px);
}

.glass-icon {
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.app-download {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.app-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.2rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-md);
  transition: all var(--transition-fast);
}

.app-btn:hover {
  background: rgba(138, 43, 226, 0.3);
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.2);
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  position: relative;
  z-index: 10;
}

.copyright {
  color: var(--text-light);
  font-size: 0.9rem;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  color: var(--text-light);
  font-size: 0.9rem;
  position: relative;
}

.footer-bottom-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  bottom: -2px;
  left: 0;
  background: var(--primary-color);
  transition: width var(--transition-fast);
}

.footer-bottom-links a:hover::after {
  width: 100%;
}

.newsletter-form {
  margin-top: 1rem;
}

.form-group {
  display: flex;
  position: relative;
}

.email-input {
  width: 100%;
  padding: 0.8rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-md);
  color: white;
  font-family: inherit;
  outline: none;
  transition: all var(--transition-fast);
}

.email-input:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(138, 43, 226, 0.2);
}

.submit-btn {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--primary-color);
  color: white;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.submit-btn:hover {
  background: var(--primary-light);
}

/* 用户评价轮播 */
.testimonials-section {
  padding: 5rem 2rem;
  background: url('data:image/svg+xml,<svg width="20" height="20" xmlns="http://www.w3.org/2000/svg"><rect width="20" height="20" fill="none"/><circle cx="3" cy="3" r="1" fill="%23333"/></svg>');
}

.testimonials-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.testimonials-carousel {
  position: relative;
  height: 300px;
  margin: 3rem 0;
}

.testimonial {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.testimonial.active {
  opacity: 1;
  visibility: visible;
}

.testimonial-content {
  background: rgba(20, 20, 20, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--border-radius-md);
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.quote-icon {
  color: var(--primary-color);
  font-size: 2rem;
  opacity: 0.5;
  margin-bottom: 1rem;
}

.testimonial-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  margin-top: 1.5rem;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gradient-1);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  margin-right: 1rem;
}

.author-info {
  text-align: left;
}

.author-name {
  font-weight: 600;
  font-size: 1.1rem;
}

.author-title {
  color: var(--text-light);
  font-size: 0.9rem;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 0.7rem;
  margin-top: 2rem;
}

/* 合作伙伴部分 */
.partners-section {
  padding: 4rem 2rem;
  background: rgba(10, 10, 10, 0.5);
  text-align: center;
}

.section-title-small {
  font-size: 1.8rem;
  margin-bottom: 2.5rem;
  position: relative;
  display: inline-block;
  color: var(--text-color);
}

.section-title-small::after {
  content: '';
  position: absolute;
  width: 50px;
  height: 3px;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-1);
  border-radius: 3px;
}

.partners-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.partner {
  flex: 1;
  min-width: 150px;
  max-width: 200px;
}

.partner-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--border-radius-md);
  transition: all var(--transition-fast);
}

.partner-logo:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.05);
}

.partner-logo i {
  font-size: 2.5rem;
  color: var(--primary-light);
}

/* FAQ部分 */
.faq-section {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.9), rgba(20, 20, 20, 0.8));
}

.faq-container {
  max-width: 900px;
  margin: 3rem auto 0;
}

.faq-item {
  margin-bottom: 1.5rem;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  background: rgba(30, 30, 30, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all var(--transition-fast);
}

.faq-item.active {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question h3 {
  font-size: 1.1rem;
  font-weight: 500;
}

.faq-toggle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.faq-item.active .faq-toggle {
  background: var(--primary-color);
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 1.5rem 1.5rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* 信任标志 */
.trust-badges {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.badge i {
  font-size: 1.5rem;
  color: var(--primary-light);
}

.badge span {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* 行动召唤区域背景 */
.cta-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.cta-particle {
  position: absolute;
  border-radius: 50%;
  background: var(--primary-color);
  opacity: 0.3;
  filter: blur(20px);
  animation: ctaParticleFloat 12s ease-in-out infinite;
}

.cta-particle:nth-child(1) {
  width: 100px;
  height: 100px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.cta-particle:nth-child(2) {
  width: 150px;
  height: 150px;
  top: 60%;
  left: 70%;
  background: var(--accent-color);
  animation-delay: 1s;
}

.cta-particle:nth-child(3) {
  width: 80px;
  height: 80px;
  top: 30%;
  left: 60%;
  animation-delay: 2s;
}

.cta-particle:nth-child(4) {
  width: 120px;
  height: 120px;
  top: 70%;
  left: 30%;
  background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
  animation-delay: 3s;
}

.cta-particle:nth-child(5) {
  width: 70px;
  height: 70px;
  top: 40%;
  left: 40%;
  animation-delay: 4s;
}

@keyframes ctaParticleFloat {
  0%, 100% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(30px, 30px);
  }
  50% {
    transform: translate(0, 50px);
  }
  75% {
    transform: translate(-30px, 30px);
  }
}

/* 行动召唤卡片 */
.futuristic-card {
  background: rgba(10, 10, 10, 0.7);
  border-radius: var(--border-radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  padding: 3rem;
  position: relative;
  overflow: hidden;
  margin: 5rem 2rem;
}

.call-to-action {
  text-align: center;
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.users-counter {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.7rem 1.2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.counter-icon {
  color: var(--primary-light);
  font-size: 1.5rem;
}

.counter-info {
  display: flex;
  flex-direction: column;
}

.counter-number {
  font-weight: 700;
  font-size: 1.2rem;
}

.counter-text {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* 响应式调整 */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .nav-menu {
    position: fixed;
    right: -100%;
    top: 70px;
    flex-direction: column;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    width: 100%;
    border-radius: 0;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 2rem 0;
    z-index: var(--z-index-high);
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-links {
    flex-direction: column;
    gap: 1.5rem;
  }

  .hero-content h1 {
    font-size: 3rem;
  }

  .hero-tagline {
    font-size: 1.2rem;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .feature-cards {
    grid-template-columns: 1fr;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .testimonial-content {
    padding: 1.5rem;
  }

  .faq-question h3 {
    font-size: 1rem;
  }
}

@media (min-width: 769px) and (max-width: 1080px) {
  .feature-cards {
    grid-template-columns: 1fr 1fr;
  }
}

/* 添加CSS网格样式 */
.feature-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 3rem auto;
  max-width: 1200px;
}

.modern-section {
  padding: 6rem 2rem;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
}

.animated-image {
  position: relative;
}

.imagesx {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: var(--border-radius-md);
}

.parallax-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.animated-image:hover .parallax-image {
  transform: scale(1.05);
}

.image-frame {
  position: relative;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.image-decoration {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 150px;
  height: 150px;
  background: linear-gradient(45deg, var(--primary-color), transparent);
  border-radius: 50%;
  filter: blur(30px);
  opacity: 0.7;
}

.section-bg-element {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg width="20" height="20" xmlns="http://www.w3.org/2000/svg"><rect width="20" height="20" fill="none"/><circle cx="3" cy="3" r="1" fill="%23333"/></svg>');
  opacity: 0.3;
  z-index: -1;
}

.product-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.showcase-features {
  margin: 2.5rem 0;
}

.feature-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.feature-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(138, 43, 226, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-light);
  font-size: 1.2rem;
  transition: all var(--transition-fast);
}

.feature-item:hover .feature-icon {
  background: var(--primary-color);
  color: white;
  transform: translateY(-5px);
}

.feature-content h4 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.feature-content p {
  color: var(--text-light);
  line-height: 1.6;
}

.appear-animation {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s, transform 0.6s;
}

.appear-animation.visible {
  opacity: 1;
  transform: translateY(0);
}

/* 技术指标 */
.tech-metrics {
  margin-top: 3rem;
}

.metric {
  margin-bottom: 1.5rem;
}

.metric-label {
  margin-bottom: 0.5rem;
  font-size: 1rem;
  color: var(--text-light);
}

.metric-bar {
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  position: relative;
}

.metric-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: var(--gradient-1);
  border-radius: 4px;
  transition: width 1.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.metric-value {
  position: absolute;
  right: 0;
  top: -20px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary-light);
}

/* 打字机效果 */
.typewriter {
  overflow: hidden;
  border-right: 3px solid var(--primary-color);
  white-space: nowrap;
  animation: typing 3.5s steps(40, end), blink-caret 0.75s step-end infinite;
}

@keyframes typing {
  from { width: 0 }
  to { width: 100% }
}

@keyframes blink-caret {
  from, to { border-color: transparent }
  50% { border-color: var(--primary-color) }
}

/* 自定义logo样式 */
.custom-logo {
  position: relative;
  border: none; /* 移除边框 */
  box-shadow: none; /* 移除阴影 */
  padding: 0.5rem 1rem;
  border-radius: 5px;
  transition: all 0.2s ease;
  background: transparent; /* 透明背景 */
  color: #ffffff; /* 白色文字 */
  font-weight: 700;
  font-size: 1.8rem;
  letter-spacing: 1px;
  text-decoration: none;
  display: inline-block;
  text-shadow: 0 0 10px rgba(138, 43, 226, 0.5); /* 添加文字阴影 */
}

.custom-logo:hover {
  transform: translateY(-2px); /* 修改悬停效果，只上移不偏移 */
  color: var(--primary-light); /* 悬停时变为浅紫色 */
}

.custom-logo .logo-icon {
  color: var(--primary-light); /* 紫光色图标 */
  margin-right: 8px;
}

/* 修复导航栏样式 */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: var(--z-index-high);
  padding: 0.7rem 0;
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all var(--transition-fast);
}

/* 确保main内容不被导航栏遮挡 */
main {
  padding-top: 70px;
}