/* Hero Section */
.hero {
  background: url('images/hero-bg.svg') no-repeat center center;
  background-size: cover;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(131, 100, 232, 0.05) 0%, rgba(255, 107, 156, 0.05) 100%);
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-content {
  flex: 1;
  max-width: 600px;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

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

.hero-content p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.hero-stats {
  margin-top: 2rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  position: relative;
  max-width: 80%;
}

.hero-image::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 30px;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 70%);
  border-radius: 50%;
  z-index: -1;
}

.hero-image img {
  max-width: 90%;
  animation: float 6s ease-in-out infinite;
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
}

@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0);
  }
}

/* CTA Section */
.cta {
  background: var(--gradient);
  color: white;
  text-align: center;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.cta::before,
.cta::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.cta::before {
  top: -150px;
  left: -150px;
}

.cta::after {
  bottom: -150px;
  right: -150px;
}

.cta h2 {
  max-width: 800px;
  margin: 0 auto 2rem;
  font-size: 2.25rem;
  font-weight: 700;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.cta .btn-primary {
  background: white;
  color: var(--primary);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.cta .btn-primary:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* FAQ Section */
.faq {
  padding: 80px 0 40px;
  background: var(--bg-light);
  text-align: center;
  position: relative;
  overflow: visible;
  z-index: 5;
  border-bottom: 1px solid rgba(131, 100, 232, 0.05);
}

.faq::before {
  display: none;
}

.small-heading {
  color: var(--secondary);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.faq h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

.faq-container {
  max-width: 800px;
  margin: 3rem auto 0;
  text-align: left;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  position: relative;
  z-index: 2;
}

.faq-section h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary);
}

.faq-item {
  background: var(--card-gradient);
  border-radius: 16px;
  margin-bottom: 1rem;
  box-shadow: 0 5px 15px var(--shadow);
  overflow: visible;
  border: 1px solid rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
  position: relative;
  z-index: 10;
}

.faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(131, 100, 232, 0.2);
}

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

.arrow-down {
  transition: transform 0.3s ease;
}

.faq-question.active .arrow-down {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 1.25rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  color: var(--text-light);
  line-height: 1.5;
}

.faq-answer p {
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

.faq-question.active + .faq-answer {
  padding: 0 1.25rem 1rem;
  max-height: 300px;
}

.animate {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate.show {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .hero-content h1 {
    font-size: 3rem;
  }
  
  .hero-content h1 span {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .hero .container {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-content {
    margin-bottom: 3rem;
  }
  
  .hero-image {
    justify-content: center;
    max-width: 70%;
  }
  
  .footer-top {
    flex-direction: column;
    gap: 3rem;
  }
  
  .footer-links {
    gap: 2rem;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-content h1 span {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .header .container {
    flex-direction: column;
    gap: 1rem;
  }
  
  .main-nav ul {
    gap: 1rem;
    font-size: 0.875rem;
  }
  
  .hero-content h1 {
    font-size: 2.25rem;
  }
  
  .hero-content h1 span {
    font-size: 1.75rem;
  }
  
  .footer-links {
    flex-direction: column;
  }
}

/* 追加新的动漫元素样式 */

/* 语言切换按钮 */
.lang-switch {
  background: transparent;
  border: 1px solid rgba(131, 100, 232, 0.3);
  padding: 5px 10px;
  border-radius: 50px;
  color: var(--text-light);
  font-size: 14px;
  margin-right: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.lang-switch:hover {
  background: rgba(131, 100, 232, 0.1);
}

/* 动漫装饰元素 */
.anime-decoration {
  position: absolute;
  width: 300px;
  height: 300px;
  pointer-events: none;
}

.anime-decoration.top-left {
  top: 0;
  left: 0;
  background: radial-gradient(circle at center, rgba(131, 100, 232, 0.2) 0%, transparent 70%);
  animation: float 15s ease-in-out infinite;
}

.anime-decoration.bottom-right {
  bottom: 0;
  right: 0;
  background: radial-gradient(circle at center, rgba(255, 107, 156, 0.2) 0%, transparent 70%);
  animation: float 18s ease-in-out infinite reverse;
}

/* 徽章样式 */
.badge {
  display: inline-block;
  background: rgba(131, 100, 232, 0.15);
  color: var(--primary);
  padding: 5px 15px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
  border: 1px solid rgba(131, 100, 232, 0.3);
}

.badge-accent {
  color: var(--secondary);
  margin-left: 5px;
}

/* 状态项 */
.stat-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* 图片装饰 */
.image-sparkle {
  position: absolute;
  width: 150px;
  height: 150px;
  top: -30px;
  right: -30px;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.8) 0%, transparent 70%);
  border-radius: 50%;
  z-index: -1;
  filter: blur(5px);
  animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
  0% {
    opacity: 0.3;
    transform: scale(0.9);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.1);
  }
  100% {
    opacity: 0.3;
    transform: scale(0.9);
  }
}

/* 表情符号 */
.emoji {
  display: inline-block;
  margin-left: 8px;
  animation: bounce 2s ease infinite;
}

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

/* 图像覆盖层 */
.image-overlay {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
}

.image-tag {
  display: inline-block;
  background: var(--gradient);
  color: white;
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* CTA闪光效果 */
.cta-sparkle {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  z-index: 0;
  filter: blur(40px);
}

.cta-sparkle.top-left {
  top: -100px;
  left: -100px;
  background: rgba(255, 255, 255, 0.2);
  animation: float 8s ease-in-out infinite;
}

.cta-sparkle.bottom-right {
  bottom: -100px;
  right: -100px;
  background: rgba(255, 255, 255, 0.15);
  animation: float 10s ease-in-out infinite reverse;
}

/* 页脚装饰 */
.footer-decoration {
  position: absolute;
  width: 200px;
  height: 200px;
  background-repeat: no-repeat;
  opacity: 0.05;
  z-index: 0;
  pointer-events: none;
}

.footer-decoration.left {
  bottom: 30px;
  left: 30px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300' viewBox='0 0 24 24' fill='%237468e4'%3E%3Cpath d='M12 2L1 21h22L12 2zm0 4l7.53 13H4.47L12 6zm0 3a1 1 0 0 0-1 1v4a1 1 0 0 0 2 0v-4a1 1 0 0 0-1-1zm0 8a1 1 0 1 0 0 2 1 1 0 0 0 0-2z'/%3E%3C/svg%3E");
  background-size: contain;
}

.footer-decoration.right {
  top: 30px;
  right: 30px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300' viewBox='0 0 24 24' fill='%23ff6b81'%3E%3Cpath d='M12 2l2.4 7.2H22l-6.4 4.8 2.4 7.2-6-4.8-6 4.8 2.4-7.2L2 9.2h7.2L12 2z'/%3E%3C/svg%3E");
  background-size: contain;
}

/* 粒子效果 */
.particle {
  position: absolute;
  background: white;
  border-radius: 50%;
  pointer-events: none;
}

/* 响应式调整 */
@media (max-width: 768px) {
  .badge {
    font-size: 0.8rem;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .image-sparkle {
    display: none;
  }
  
  .footer-decoration {
    display: none;
  }
  
  .anime-decoration {
    width: 150px;
    height: 150px;
  }
}

/* 价格部分 */
.pricing {
  padding: 100px 0;
  text-align: center;
  position: relative;
  background-color: var(--bg-white);
  overflow: hidden;
}

.pricing h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
  text-align: center;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.pricing::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(131, 100, 232, 0.05) 0%, transparent 70%);
  top: -100px;
  left: -100px;
  z-index: 0;
  border-radius: 50%;
}

.pricing::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 107, 156, 0.05) 0%, transparent 70%);
  bottom: -50px;
  right: -50px;
  z-index: 0;
  border-radius: 50%;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 50px;
  position: relative;
  z-index: 2;
}

.pricing-card {
  background: var(--bg-white);
  border-radius: 16px;
  padding: 40px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(131, 100, 232, 0.15);
  border-color: var(--primary);
}

.pricing-card.popular {
  border: 2px solid var(--primary);
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(131, 100, 232, 0.15);
  z-index: 3;
}

.pricing-card.popular:hover {
  transform: scale(1.05) translateY(-5px);
}

.popular-badge {
  position: absolute;
  top: 12px;
  right: 0;
  background: var(--primary);
  color: white;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 15px;
  border-radius: 20px 0 0 20px;
  box-shadow: 0 3px 10px rgba(131, 100, 232, 0.3);
}

.pricing-header {
  text-align: center;
  margin-bottom: 30px;
}

.pricing-header h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

.price {
  display: flex;
  align-items: baseline;
  justify-content: center;
}

.amount {
  font-size: 48px;
  font-weight: 700;
  color: var(--text-main);
}

.period {
  color: var(--text-lighter);
  margin-left: 5px;
}

.pricing-features {
  margin-bottom: 30px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.feature-item i {
  color: var(--primary);
  margin-right: 10px;
  margin-top: 3px;
}

.btn-block {
  display: block;
  width: 100%;
  text-align: center;
}

.pricing-note {
  text-align: center;
  margin-top: 30px;
  color: var(--text-lighter);
  font-size: 14px;
}

@media (max-width: 992px) {
  .pricing-cards {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
  }
  
  .pricing-card.popular {
    transform: scale(1);
  }
  
  .pricing-card.popular:hover {
    transform: translateY(-10px);
  }
}

@media (max-width: 576px) {
  .pricing {
    padding: 60px 0;
  }
  
  .pricing-card {
    padding: 30px 20px;
  }
  
  .amount {
    font-size: 36px;
  }
}

.footer-section {
  background: var(--bg-white);
  padding: 25px 0 10px;
  position: relative;
  z-index: 1;
  box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.02);
}

.footer {
  position: relative;
  z-index: 1;
  margin-top: 0;
  padding: 0;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  gap: 1.5rem;
}

.footer-logo {
  flex: 1;
  max-width: 250px;
}

.footer-logo p {
  margin: 5px 0;
  color: var(--text-light);
  font-size: 0.85rem;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

.social-links a {
  transform: scale(0.9);
}

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

.footer-column h4 {
  font-size: 0.9rem;
  margin-bottom: 8px;
  color: var(--primary);
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column li {
  margin-bottom: 3px;
}

.footer-column a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s ease;
}

.footer-bottom {
  text-align: center;
  padding-top: 10px;
  border-top: 1px solid var(--border);
  color: var(--text-lighter);
  font-size: 0.8rem;
} 