/* 加载动画样式 */
.loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader {
    width: 60px;
    height: 60px;
    border: 4px solid var(--background-color);
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loader-container.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-container p {
    color: var(--text-color);
    font-size: 18px;
    font-weight: 500;
}

/* 全局样式重置和基础设置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0078D4;
    --secondary-color: #005A9E;
    --accent-color: #00B7C3;
    --text-color: #333;
    --light-text: #666;
    --background-color: #f3f3f3;
    --white: #ffffff;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    --mica-bg: rgba(255, 255, 255, 0.7);
    --mica-border: rgba(255, 255, 255, 0.2);
    --card-bg: #ffffff;
    --card-border: #e0e0e0;
}

[data-theme="dark"] {
    --primary-color: #0078D4;
    --secondary-color: #00B7C3;
    --accent-color: #0078D4;
    --text-color: #f5f5f5;
    --light-text: #cccccc;
    --background-color: #121212;
    --white: #1e1e1e;
    --mica-bg: rgba(30, 30, 30, 0.8);
    --mica-border: rgba(255, 255, 255, 0.1);
    --card-bg: #1e1e1e;
    --card-border: #333333;
}

/* 确保导航栏在暗黑模式下也更新 */
[data-theme="dark"] .navbar {
    background-color: rgba(30, 30, 30, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* 确保按钮在暗黑模式下可见 */
[data-theme="dark"] .theme-toggle {
    background-color: var(--primary-color);
    color: var(--text-color);
}

@media (prefers-color-scheme: dark) {
    :root:not([data-theme="light"]) {
        --primary-color: #E6E6FA;
        --secondary-color: #d8d8f5;
        --accent-color: #E6E6FA;
        --text-color: #f5f5f5;
        --light-text: #cccccc;
        --background-color: #121212;
        --white: #1e1e1e;
    }
}

/* 黑白模式 */
[data-theme="bw"] {
    --primary-color: #333;
    --secondary-color: #666;
    --accent-color: #333;
    --text-color: #333;
    --light-text: #666;
    --background-color: #f5f5f5;
    --white: #ffffff;
    --mica-bg: rgba(255, 255, 255, 0.8);
    --mica-border: rgba(0, 0, 0, 0.1);
    --card-bg: #ffffff;
    --card-border: #e0e0e0;
}

[data-theme="bw"] body {
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
}

[data-theme="bw"] .navbar {
    background-color: var(--mica-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--mica-border);
}

[data-theme="bw"] .feature-card,
[data-theme="bw"] .feature-detail,
[data-theme="bw"] .download-card {
    background-color: var(--mica-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--mica-border);
}

[data-theme="bw"] .theme-toggle {
    background-color: var(--primary-color);
    color: var(--white);
}

body {
    font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
    transition: all 0.3s ease;
    scroll-behavior: smooth;
}

/* 页面元素入场动画 */
.hero, .features, .feature-details, .download, .footer {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 为不同部分设置不同的动画延迟 */
.hero {
    animation-delay: 0.2s;
}

.features {
    animation-delay: 0.4s;
}

.feature-details {
    animation-delay: 0.6s;
}

.download {
    animation-delay: 0.8s;
}

.footer {
    animation-delay: 1s;
}

/* 滚动效果区域样式 */
.scroll-effect-section {
    padding: 50px 0 100px;
    background-color: var(--background-color);
    perspective: 1000px;
    position: relative;
    overflow: hidden;
}

/* 主图片容器 */
.main-image-container {
    width: 100%;
    height: 600px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
}

/* 主图片的样式 */
.scroll-effect-image.main-image {
    width: 600px;
    max-width: 100%;
    height: 400px;
    transform-style: preserve-3d;
    transform-origin: center bottom;
    /* 初始状态：在容器下方，梯形效果 */
    transform: rotateX(80deg) translateY(400px) scaleY(0.6);
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.5s ease, backdrop-filter 0.5s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--card-bg);
    border: 1px solid var(--card-border);
    z-index: 2;
}

.scroll-effect-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* 分割图片容器 */
.split-images-container {
    width: 100%;
    height: 400px;
    position: absolute;
    top: 200px; /* 向下移动，与主图片重叠 */
    left: 0;
    right: 0;
}

/* 分割图片的通用样式 - 自然叠放效果 */
.scroll-effect-image.split-image {
    position: absolute;
    width: 300px;
    height: 200px;
    opacity: 0;
    transform: translateY(-100%) scale(0.7);
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--card-bg);
    border: 1px solid var(--card-border);
    cursor: pointer; /* 添加鼠标指针，指示可以点击 */
}

/* 图片切换时的过渡效果 */
.scroll-effect-image img {
    transition: all 0.5s ease-in-out; /* 添加图片切换时的过渡效果 */
}

/* 各分割图片的初始位置和旋转角度 - 自然叠放 */
.scroll-effect-image.install-image {
    left: 20%;
    top: 0;
    transform: translateY(-100%) rotate(-5deg) scale(0.7);
    z-index: 4;
}

.scroll-effect-image.setting-image {
    left: 50%;
    top: 20px;
    transform: translateX(-50%) translateY(-100%) rotate(0deg) scale(0.7);
    z-index: 5;
}

.scroll-effect-image.download-image {
    right: 20%;
    top: 0;
    transform: translateY(-100%) rotate(5deg) scale(0.7);
    z-index: 4;
}

/* 激活状态：图片渐显效果 - 自然叠放 */
.scroll-effect-image.split-image.active {
    opacity: 1;
}

/* 各分割图片的激活位置 - 微调叠放效果 */
.scroll-effect-image.install-image.active {
    transform: translateX(10px) translateY(20px) rotate(-3deg) scale(0.9);
    z-index: 4;
}

.scroll-effect-image.setting-image.active {
    transform: translateX(-50%) translateY(0) rotate(0deg) scale(0.9);
    z-index: 5;
}

.scroll-effect-image.download-image.active {
    transform: translateX(-10px) translateY(20px) rotate(3deg) scale(0.9);
    z-index: 4;
}

/* 卡片延迟动画 */
.feature-card, .feature-detail, .download-card {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.feature-card:nth-child(1) { animation-delay: 0.3s; }
.feature-card:nth-child(2) { animation-delay: 0.4s; }
.feature-card:nth-child(3) { animation-delay: 0.5s; }
.feature-card:nth-child(4) { animation-delay: 0.6s; }

.feature-detail:nth-child(1) { animation-delay: 0.5s; }
.feature-detail:nth-child(2) { animation-delay: 0.7s; }
.feature-detail:nth-child(3) { animation-delay: 0.9s; }
.feature-detail:nth-child(4) { animation-delay: 1.1s; }
.feature-detail:nth-child(5) { animation-delay: 1.3s; }

.download-card { animation-delay: 0.5s; }

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Logo样式 */
.logo-img {
    height: 120px;
    width: auto;
    transition: all 0.3s ease;
    margin: 10px 0;
}

@media (max-width: 768px) {
    .logo-img {
        height: 100px;
    }
}

@media (max-width: 480px) {
    .logo-img {
        height: 80px;
    }
}

/* 导航栏样式 - 液态玻璃效果 */
.navbar {
    background-color: var(--mica-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--mica-border);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

/* 暗黑模式切换按钮 */
.theme-toggle {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background-color: var(--mica-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--mica-border);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    font-size: 20px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.theme-toggle:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 120, 212, 0.2);
    border-color: var(--primary-color);
}

.theme-toggle:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    padding: 10px 0;
}

.logo-img {
    height: 80px;
    width: auto;
    display: block;
    transition: all 0.3s ease;
    margin: 10px 0;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-group {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
}

.nav-group:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -20px;
    height: 60%;
    width: 1px;
    background-color: rgba(0, 0, 0, 0.1);
}

/* 特性与下载链接特殊间距 */
.nav-group:nth-child(2) a {
    padding: 8px 12px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition);
    padding: 8px 16px;
    border-radius: 8px;
    white-space: nowrap;
    position: relative;
}

.nav-links a:hover {
    color: var(--primary-color);
    background-color: rgba(0, 120, 212, 0.1);
}

.github-link {
    background-color: var(--primary-color);
    color: white !important;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 120, 212, 0.2);
}

.github-link:hover {
    background-color: var(--secondary-color) !important;
    color: white !important;
    box-shadow: 0 4px 8px rgba(0, 120, 212, 0.3);
}

/* Hero Section 样式 */
.hero {
    padding: 180px 0 120px;
    background: url('../images/png.jpg') no-repeat center center;
    background-size: cover;
    color: var(--white);
    text-align: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.4));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.4;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn {
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: -1;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
    color: white;
    box-shadow: 0 2px 4px rgba(0, 120, 212, 0.2);
}

.btn-secondary {
    background-color: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 120, 212, 0.3);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-secondary:hover {
    background-color: rgba(0, 120, 212, 0.1);
}

.btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 120, 212, 0.2);
}

/* 特性部分样式 */
.features {
    padding: 120px 0;
    background-color: var(--white);
}

.section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    padding: 0 24px;
}

.feature-card {
    background-color: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 120, 212, 0.15);
    border-color: var(--primary-color);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    margin-left: auto;
    margin-right: auto;
    background-color: rgba(0, 120, 212, 0.1);
    border-radius: 12px;
    color: var(--primary-color);
}

.feature-card h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 18px;
}

.feature-card p {
    color: var(--light-text);
    font-size: 14px;
    line-height: 1.5;
}

.feature-desc {
    margin-top: 15px;
    text-align: left;
    padding-left: 20px;
}

.feature-desc p {
    color: var(--text-color);
    font-size: 14px;
    margin-bottom: 8px;
    position: relative;
}

.feature-desc p::before {
    content: "•";
    color: var(--primary-color);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

[data-theme="dark"] .feature-desc p {
    color: var(--light-text);
}

/* 功能详情部分样式 */
.feature-details {
    padding: 100px 0;
    background-color: var(--background-color);
}

.feature-details .container {
    max-width: 1280px;
    margin: 0 auto;
}

.feature-details-grid {
    display: block;
    margin-top: 56px;
}

.feature-detail {
    margin-bottom: 96px;
    padding: 0;
}

.feature-detail:last-child {
    margin-bottom: 0;
}

.feature-content {
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .feature-detail {
        margin-bottom: 50px;
        padding: 15px;
    }
    
    .feature-content,
    .feature-content.reverse {
        flex-direction: column;
    }
    
    .feature-image {
        height: 250px;
        margin-bottom: 20px;
    }
}

.feature-detail {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 0;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    overflow: hidden;
}

.feature-content {
    display: flex;
    align-items: center;
    min-height: 300px;
}

.feature-content.reverse {
    flex-direction: row-reverse;
}

.feature-image {
    flex: 1;
    height: 100%;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.feature-detail:hover .feature-image img {
    transform: scale(1.05);
}

.feature-text {
    flex: 1;
    padding: 40px;
}

.feature-text h3 {
    margin-top: 0;
}

@media (max-width: 768px) {
    .feature-content,
    .feature-content.reverse {
        flex-direction: column;
    }
    
    .feature-image {
        width: 100%;
        height: 200px;
    }
    
    .feature-text {
        padding: 20px;
    }
}

.feature-detail:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 120, 212, 0.15);
    border-color: var(--primary-color);
}

.feature-detail h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 600;
}

.feature-detail ul {
    list-style: none;
    padding-left: 0;
}

.feature-detail li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    color: var(--text-color);
    font-size: 14px;
    line-height: 1.5;
}

.feature-detail li::before {
    content: "•";
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

[data-theme="dark"] .feature-detail {
    background: var(--dark-card-bg);
}

[data-theme="dark"] .feature-detail li {
    color: var(--light-text);
}

/* 下载部分样式 */
.download {
    padding: 120px 0;
    background-color: var(--background-color);
}

.download-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 56px;
}

.download-card {
    background-color: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.download-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 120, 212, 0.15);
    border-color: var(--primary-color);
}

.download-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.download-card p {
    margin-bottom: 25px;
    color: var(--light-text);
    font-size: 14px;
    line-height: 1.5;
}

.btn-download {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    transition: var(--transition);
    box-shadow: 0 2px 4px rgba(0, 120, 212, 0.2);
}

.btn-download:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    box-shadow: 0 4px 8px rgba(0, 120, 212, 0.3);
    transform: translateY(-1px);
}

/* 页脚样式 */
.footer {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 100px 0 32px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 48px;
    margin-bottom: 64px;
}

.footer-section h3 {
    margin-bottom: 20px;
    font-size: 20px;
}

.footer-section a {
    display: block;
    color: var(--white);
    opacity: 0.8;
    text-decoration: none;
    margin-bottom: 10px;
    transition: var(--transition);
}

.footer-section a:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* 移动端菜单按钮 */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    width: 30px;
    height: 24px;
    position: relative;
    cursor: pointer;
    padding: 0;
}

.mobile-menu-toggle span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: var(--text-color);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle span:nth-child(1) {
    top: 0;
}

.mobile-menu-toggle span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.mobile-menu-toggle span:nth-child(3) {
    bottom: 0;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }

    .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: var(--mica-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--mica-border);
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transform: translateY(-150%);
    transition: transform 0.3s ease;
    z-index: 999;
}

    .nav-links.active {
        transform: translateY(0);
    }

    .nav-group {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 20px;
    }

    .nav-group:not(:last-child)::after {
        display: none;
    }

    .navbar .container {
        flex-direction: row;
        height: 70px;
        padding: 0 20px;
    }

    .hero {
        padding: 120px 0 60px;
    }

    .hero-content h1 {
        font-size: 32px;
        line-height: 1.3;
    }

    .hero-content p {
        font-size: 18px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }

    .feature-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .feature-card {
        padding: 28px;
    }

    .feature-details-grid {
        margin-top: 40px;
    }

    .feature-content,
    .feature-content.reverse {
        flex-direction: column;
    }

    .feature-image {
        height: 200px;
        margin-bottom: 20px;
    }

    .feature-text {
        padding: 25px;
    }

    .download-options {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .download-card {
        padding: 32px;
    }

    .btn-download {
        padding: 15px 25px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 28px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .section-title {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .feature-card h3 {
        font-size: 20px;
    }

    .feature-detail h3 {
        font-size: 18px;
    }

    .download-card h3 {
        font-size: 20px;
    }
}

.tech-title {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
}

/* 技术栈样式 */
.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.tech-tag {
    background-color: rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* 页脚logo容器样式 */
.footer-logo-container {
    margin-bottom: 20px;
}

.footer-logo {
    position: relative;
    display: inline-block;
    padding: 10px;
    background-color: transparent;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.logo-image {
    width: 120px;
    height: auto;
    display: block;
    border-radius: 4px;
}

.logo-text {
    display: none;
}

/* 软著信息样式 - logo右下角 */
.copyright-info {
    position: absolute;
    bottom: 5px;
    right: 5px;
    font-size: 8px;
    color: rgba(255, 255, 255, 0.8);
    background-color: rgba(0, 0, 0, 0.3);
    padding: 2px 4px;
    border-radius: 3px;
    line-height: 1;
}