/* 全局样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #6c5ce7;
    --secondary-color: #a29bfe;
    --accent-color: #fd79a8;
    --text-dark: #2d3436;
    --text-light: #636e72;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.15);
    --gradient: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
    --animated-gradient: linear-gradient(135deg, #ff6b6b, #ff9ff3, #feca57, #ffe66d, #1dd1a1, #48dbfb, #7efff5, #6c5ce7, #c56cf0, #a29bfe, #ffb8b8, #ff6b6b);
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

.container {
    max-width: 80%;
    min-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 导航栏 */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

.logo-icon {
    width: 32px;
    height: 32px;
}

.footer-logo {
    width: 24px;
    height: 24px;
    vertical-align: middle;
    margin-right: 8px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    cursor: pointer;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: var(--transition);
}

/* 首页区域 */
.hero-section {
    position: relative;
    background: var(--animated-gradient);
    background-size: 400% 400%;
    color: var(--white);
    padding: 150px 0 150px;
    overflow: hidden;
    animation: gradientShift 40s cubic-bezier(0.4, 0, 0.2, 1) infinite alternate;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

@keyframes gradientShift {
    0% {
        background-position: 0% 0%;
    }
    8% {
        background-position: 15% 10%;
    }
    18% {
        background-position: 35% 5%;
    }
    30% {
        background-position: 50% 20%;
    }
    45% {
        background-position: 65% 15%;
    }
    60% {
        background-position: 80% 25%;
    }
    75% {
        background-position: 90% 10%;
    }
    90% {
        background-position: 95% 30%;
    }
    100% {
        background-position: 100% 0%;
    }
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.1);
}

.highlight {
    color: var(--accent-color);
    position: relative;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
}

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

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

.hero-stats {
    display: flex;
    gap: 3rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-image {
    position: relative;
    animation: float 3s ease-in-out infinite;
}

.hero-screenshot {
    max-width: 100%;
    max-height: 400px;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

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

.placeholder-image,
.placeholder-effect,
.placeholder-video {
    background: rgba(255, 255, 255, 0.1);
    border: 2px dashed rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    padding: 4rem 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
}

.placeholder-image i,
.placeholder-effect i,
.placeholder-video i {
    font-size: 4rem;
    opacity: 0.5;
    margin-bottom: 1rem;
}

.placeholder-image p,
.placeholder-effect p {
    opacity: 0.8;
    font-size: 1.1rem;
}

.placeholder-effect {
  padding: .6rem;
 background: var(--white);
    border-radius: 15px;
    overflow: hidden;
   position: relative;
}

/* 移除播放按钮遮罩后的简洁样式 */

.effect-video {
  width: 100%;
    height: 200px;
  object-fit: cover;
   display: block;
    cursor: pointer;
    /* 隐藏浏览器默认的视频控制按钮 */
    outline: none;
}

/* 隐藏 Chrome/Safari 的画中画按钮和控制条 */
.effect-video::-webkit-media-controls {
  display: none !important;
}

/* 确保页面上的小视频控件完全隐藏 */
.effect-video::-webkit-media-controls-enclosure,
.custom-video::-webkit-media-controls-enclosure {
  display: none !important;
}

/* 确保只有页面上的小视频隐藏控制条，不影响模态框中的视频 */
.effect-video::-webkit-media-controls,
.custom-video::-webkit-media-controls {
  display: none !important;
}

.effect-video::-moz-media-controls,
.custom-video::-moz-media-controls {
  display: none !important;
}

/* 模态框中的视频显示控制条 */
#modalVideo::-webkit-media-controls {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
}

#modalVideo::-webkit-media-controls-enclosure {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
}

/* 模态框中的视频显示控制条（Firefox） */
#modalVideo::-moz-media-controls {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
}

/* 确保模态框视频的控制条在所有浏览器中显示 */
#modalVideo {
  /* 控制条由HTML的controls属性控制 */
}

.video-overlay {
  display: none;
}

.effect-preview .effect-video {
  transform: scale(1);
  transition: transform 0.3s ease;
}

.effect-preview:hover.effect-video {
  transform: scale(1.05);
}

/* 点击查看大图提示 */
.effect-preview::after {
  content: '🔍 点击查看大图';
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: rgba(0, 0, 0, 0.75);
  color: white;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  white-space: nowrap;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.effect-preview:hover::after {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.gif-placeholder {
   width: 100%;
    height: 200px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: center;
  gap: 0.8rem;
 color: white;
   cursor: pointer;
   transition: all 0.3s ease;
   position: relative;
}

.gif-placeholder i {
 font-size: 3rem;
 opacity: 0.9;
}

.gif-placeholder span {
 font-size: 1rem;
 font-weight: 600;
 opacity: 0.9;
}

.gif-placeholder:hover {
  background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
   transform: scale(1.05);
}

.gif-placeholder.playing {
  background: transparent;
}

.gif-placeholder img {
   width: 100%;
    height: 100%;
  object-fit: cover;
   display: block;
   position: absolute;
   top: 0;
   left: 0;
}

.effect-preview:hover .gif-placeholder {
   transform: scale(1.05);
}

.hero-wave {
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 100%;
    z-index: 1;
}

/* 功能特性区域 */
.features-section {
    padding: 120px 0 100px;
    background: var(--bg-light);
    position: relative;
    z-index: 2;
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    cursor: pointer;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-light);
}

/* 动画效果展示区域 */
.effects-section {
    padding: 100px 0;
    background: var(--bg-light);
    position: relative;
    z-index: 2;
}

/* ========== 自定义功能展示区域 ========== */
.customization-section {
    padding: 100px 0;
    background: var(--white);
    position: relative;
    z-index: 2;
}

.customization-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.custom-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    text-align: center;
    border: 2px solid transparent;
    cursor: pointer;
}

.custom-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--secondary-color);
}

.custom-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 1.5rem;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
   color: var(--white);
    transition: var(--transition);
}

.custom-card:hover .custom-icon {
    transform: scale(1.1) rotate(5deg);
}

.custom-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
   color: var(--text-dark);
    font-weight: 600;
}

.custom-card p {
   color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.custom-preview {
    background: var(--bg-light);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* 点击查看大图提示 */
.custom-preview::after {
  content: '🔍 点击查看大图';
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: rgba(0, 0, 0, 0.75);
  color: white;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  white-space: nowrap;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.custom-preview:hover::after {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.custom-video {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    cursor: pointer;
    outline: none;
}

/* 隐藏页面上的小视频控制条 */
.custom-video::-webkit-media-controls {
    display: none !important;
}

.custom-video::-moz-media-controls {
    display: none !important;
}

/* 模态框中的视频显示控制条（Firefox） */
#modalVideo::-moz-media-controls {
    display: block !important;
}

.custom-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.custom-desc {
   color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-top: 1rem;
}

.feature-tag {
    display: inline-block;
    padding: 0.4rem 0.9rem;
    background: linear-gradient(135deg, #f0f0f0 0%, #e8e8e8 100%);
   color: var(--text-dark);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-tag:hover {
    background: var(--gradient);
   color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(108, 92, 231, 0.3);
}

/* 主题配置示例 */
.theme-showcase {
    background: linear-gradient(135deg, #f8f9fa 0%, #edeef0 100%);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    margin-top: 3rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 2px dashed var(--primary-color);
}

.showcase-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 0.5rem;
   color: var(--text-dark);
}

.showcase-subtitle {
    font-size: 1.1rem;
    text-align: center;
   color: var(--text-light);
    margin-bottom: 2.5rem;
}

.theme-examples {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.theme-example-item {
    background: var(--white);
    border-radius: 15px;
    padding: 1.8rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
}

.theme-example-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.example-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--bg-light);
}

.example-header i {
    font-size: 1.8rem;
   color: var(--primary-color);
}

.example-header h4 {
    font-size: 1.3rem;
    font-weight: 600;
   color: var(--text-dark);
    margin: 0;
}

.example-content {
    text-align: left;
}

.example-settings {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.setting-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
   color: var(--white);
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 3px 10px rgba(108, 92, 231, 0.25);
}

.example-desc {
   color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .customization-section {
        padding: 80px 0;
    }
    
    .customization-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .theme-showcase {
        padding: 2rem 1.5rem;
    }
    
    .showcase-title {
        font-size: 1.6rem;
    }
    
    .theme-examples {
        grid-template-columns: 1fr;
    }
    
    .custom-video {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .custom-card {
        padding: 1.5rem;
    }
    
    .custom-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .custom-video {
        height: 160px;
    }
}

/* ========== 原有动画效果区域样式保持不变 ========== */

.effects-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.effect-item {
    text-align: center;
}

.effect-preview {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 1rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
}

.effect-preview:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-hover);
}

.placeholder-effect {
    padding: .6rem;
}

.effect-item h3 {
   font-size: 1.3rem;
    margin-bottom: 0.5rem;
   color: var(--text-dark);
}

.effect-item p {
    color: var(--text-light);
}

.video-demo {
    margin-top: 4rem;
    text-align: center;
}

.video-demo h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.placeholder-video {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 4rem;
}

.placeholder-video span {
    display: block;
    margin-top: 1rem;
   color: var(--text-light);
    font-size: 0.9rem;
}

/* 更多动画效果提示 */
.more-effects-notice {
    margin-top: 2rem;
  padding: 1.5rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
    border: 1px dashed var(--primary-color);
    animation: fadeInUp 0.6s ease-out;
}

.notice-content h3 {
    font-size: 1.3rem;
  color: var(--primary-color);
    margin-bottom: 0.6rem;
    font-weight: 600;
}

.notice-icon {
    font-size: 2rem;
  color: var(--accent-color);
    margin-bottom: 0.5rem;
  display: block;
    animation: bounce 2s infinite;
}

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

.notice-content p {
    font-size: 0.95rem;
  color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.notice-content strong {
  color: var(--primary-color);
    font-weight: 600;
}

.notice-hint {
    font-size: 0.85rem !important;
  color: var(--text-light) !important;
    margin-top: 1rem;
  padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    font-style: italic;
}

@media (max-width: 768px) {
    .more-effects-notice {
     padding: 1rem;
    }
    
    .notice-content h3 {
        font-size: 1.1rem;
    }
    
    .notice-icon {
        font-size: 1.5rem;
    }
    
    .notice-content p {
        font-size: 0.85rem;
    }
}

/* 价格方案区域 */
.pricing-section {
    padding: 100px 0;
    background: var(--white);
    position: relative;
    z-index: 2;
}

.pricing-single-card {
    max-width: 800px;
    margin: 3rem auto 0;
}

.pricing-combined {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    border: 2px solid transparent;
    cursor: pointer;
}

.pricing-combined:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.pricing-combined.featured {
    border-color: var(--primary-color);
}

.pricing-combined.featured:hover {
    transform: translateY(-10px);
}

.pricing-content {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--bg-light);
}

.single-section {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.single-section:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.free-trial-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    background: linear-gradient(135deg, #00b894 0%, #00cec9 100%);
    color: var(--white);
    font-weight: 600;
    margin-bottom: 1.5rem;
    animation: badgeBounce 2s infinite;
}

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

.free-trial-badge i {
    font-size: 1.2rem;
}

.single-section h4 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.single-section p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.feature-list {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
    padding: 0 1rem;
}

.feature-list li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-list .fa-check {
    color: #00b894;
}

.features-list {
    margin: 2rem 0;
    padding: 0 2rem;
}

.features-list .feature-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
    text-align: left;
}

@media (max-width: 768px) {
    .features-list .feature-list {
        grid-template-columns: 1fr;
    }
}

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

.cta-buttons .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.cta-buttons .btn {
    flex: 1;
    max-width: 220px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.cta-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.cta-buttons .btn-primary {
    background: var(--gradient);
    border: none;
}

.cta-buttons .btn-outline {
    background: var(--white);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.cta-buttons .btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.cta-buttons i {
    margin-right: 0.5rem;
}

/* 价格容器在特色卡片中的特殊样式 */
.pricing-card.featured .discount {
    background: linear-gradient(135deg, #ff6b6b 0%, #ffa502 100%);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-header h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0.3rem;
    margin-bottom: 0.5rem;
}

.price-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.original-price {
    font-size: 1.2rem;
    color: var(--text-light);
    text-decoration: line-through;
    opacity: 0.7;
}

.current-price {
    display: flex;
    align-items: flex-start;
    gap: 0.3rem;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

.amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

.discount {
    background: var(--accent-color);
    color: var(--white);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

.duration {
    color: var(--text-light);
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--bg-light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features .fa-check {
    color: #00b894;
}

.pricing-features .fa-times {
    color: #d63031;
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
    width: 100%;
    justify-content: center;
}

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

.pricing-card .btn-primary {
    width: 100%;
    justify-content: center;
}

/* 下载区域 */
.download-section {
    padding: 100px 0;
    background: var(--animated-gradient);
    background-size: 400% 400%;
    color: var(--white);
    animation: gradientShift 50s cubic-bezier(0.4, 0, 0.2, 1) infinite alternate;
}

.download-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.download-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.download-text > p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.btn-download {
    background: var(--white);
    color: var(--text-dark);
    padding: 1.5rem 2.5rem;
    border-radius: 15px;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.btn-download:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.btn-download i {
    font-size: 2rem;
}

.btn-download span {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.btn-download strong {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.btn-download small {
    font-size: 0.85rem;
    opacity: 0.7;
}

.system-requirements {
    margin-top: 3rem;
}

.system-requirements h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.system-requirements ul {
    list-style: none;
}

.system-requirements li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.system-requirements i {
    color: var(--accent-color);
}

/* 360安全提示样式 */
.security-notice {
    background: linear-gradient(135deg, #fff3cd 0%, #ffe69c 100%);
    border-left: 4px solid #ffc107;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.2);
    animation: slideInLeft 0.5s ease-out;
}

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

.notice-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    color: #856404;
}

.notice-header i {
    font-size: 1.5rem;
    color: #ffc107;
}

.notice-header strong {
    font-size: 1.2rem;
    color: #856404;
}

.notice-text {
    color: #856404;
    line-height: 1.8;
    margin-bottom: 1.2rem;
    font-size: 1rem;
}

.notice-text strong {
    color: #664d03;
    font-weight: 600;
}

.notice-steps {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin: 1.2rem 0;
    padding-left: 1rem;
}

.notice-steps .step {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #856404;
    font-size: 0.95rem;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: #ffc107;
    color: #fff;
    border-radius: 50%;
    font-weight: bold;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.notice-steps .step strong {
    color: #664d03;
}

.notice-footer {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px dashed rgba(133, 100, 4, 0.3);
    color: #856404;
    font-size: 0.9rem;
    font-style: italic;
}

.notice-footer i {
    color: #ffc107;
}

@media (max-width: 768px) {
    .security-notice {
        padding: 1.2rem;
    }
    
    .notice-header strong {
        font-size: 1.1rem;
    }
    
    .notice-text {
        font-size: 0.95rem;
    }
    
    .notice-steps {
        padding-left: 0.5rem;
    }
}

.download-image .placeholder-image {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

/* 页脚 */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 4rem 0 2rem;
    position: relative;
    z-index: 2;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--white);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

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

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
}

.beian-info {
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

.beian-info a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.beian-info a:hover {
    color: var(--white);
    text-decoration: underline;
}

/* 返回顶部按钮 */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    z-index: 999;
    cursor: pointer;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

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

/* 响应式设计 */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 2rem 0;
    }

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

    .nav-toggle {
        display: flex;
    }

    .hero-content,
    .download-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-stats {
        justify-content: center;
    }

    .features-grid,
    .effects-showcase,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .section-title {
        font-size: 2rem;
    }

    .download-text h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* 动画效果 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card,
.effect-item,
.pricing-card {
    animation: fadeInUp 0.6s ease-out;
}

/* 信息提示图标样式 */
.info-tooltip {
    display: inline-block;
    width: 16px;
    height: 16px;
    line-height: 16px;
    text-align: center;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    font-size: 12px;
    font-weight: bold;
    cursor: help;
    margin: 0 3px;
    position: relative;
    vertical-align: middle;
    transition: var(--transition);
}

.info-tooltip:hover {
    background: var(--accent-color);
    transform: scale(1.1);
}

.info-tooltip::before {
    content: attr(title);
    position: absolute;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 12px;
    background: rgba(0, 0, 0, 0.85);
    color: var(--white);
    font-size: 13px;
    line-height: 1.4;
    white-space: normal;
    width: 220px;
    border-radius: 6px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    font-weight: normal;
}

.info-tooltip::after {
    content: '';
    position: absolute;
    bottom: 115%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: rgba(0, 0, 0, 0.85);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.info-tooltip:hover::before,
.info-tooltip:hover::after {
  opacity: 1;
    visibility: visible;
}

/* 图片预览 Modal */
.modal {
   display: none;
    position: fixed;
    z-index: 9999;
  padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
    animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
   from {
      opacity: 0;
    }
   to {
      opacity: 1;
    }
}

.modal-content {
   position: relative;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 85vh;
    max-width: 90%;
    animation: modalZoomIn 0.3s ease-out;
}

@keyframes modalZoomIn {
   from {
       transform: scale(0.7);
      opacity: 0;
    }
   to {
       transform: scale(1);
      opacity: 1;
    }
}

.modal-image {
   max-width: 100%;
    max-height: 80vh;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    object-fit: contain;
}

.modal-caption {
  color: #fff;
  font-size: 1.5rem;
    margin-top: 1.5rem;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.modal-close {
   position: absolute;
    top: 20px;
    right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
    z-index: 10000;
}

.modal-close:hover,
.modal-close:focus {
  color: #bbb;
    transform: scale(1.1);
}

.modal-prev,
.modal-next {
   position: fixed;
    top: 50%;
    transform: translateY(-50%);
  color: #f1f1f1;
  font-size: 60px;
  font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
    user-select: none;
    z-index: 10000;
  padding: 16px;
    line-height: 1;
  background-color: transparent;
    border-radius: 50%;
}

.modal-prev:hover,
.modal-next:hover {
  color: var(--secondary-color);
    transform: translateY(-50%) scale(1.1);
}

.modal-prev {
   left: 20px;
}

.modal-next {
   right: 20px;
}

/* 响应式设计：移动端调整切换按钮位置 */
@media (max-width: 768px) {
   .modal-prev,
   .modal-next {
     font-size: 40px;
     padding: 12px;
     background-color: transparent;
    }
   
   .modal-prev {
      left: 10px;
    }
   
   .modal-next {
      right: 10px;
    }
   
   .modal-caption {
     font-size: 1.2rem;
     padding: 0 20px;
    }
}
