/*
 * -----------------------------------------------------------
 * 极简记物 - 极简风样式
 * -----------------------------------------------------------
 */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* 基础样式 */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #FAFAFA;
    color: #09090B;
    -webkit-font-smoothing: antialiased;
}

/* 头部样式 - 极简风格 */
header {
    background-color: #FFFFFF;
    color: #09090B;
    padding: 60px 20px 50px;
    text-align: center;
    border-bottom: 1px solid #E4E4E7;
    position: relative;
}

header .logo {
    width: 96px;
    border-radius: 18px;
    height: auto;
    margin-bottom: 24px;
    object-fit: cover;
}

header h1 {
    font-size: 36px;
    font-weight: 700;
    margin: 0 0 16px 0;
    letter-spacing: -0.02em;
    color: #09090B;
}

header p {
    font-size: 17px;
    color: #52525B;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* 返回按钮 */
.back-link {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background-color: #FAFAFA;
    border: 1px solid #E4E4E7;
    border-radius: 8px;
    color: #09090B;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.back-link:hover {
    background-color: #F5F5F5;
    border-color: #3F3F46;
}

/* 主要内容样式 */
main {
    padding: 60px 20px;
    max-width: 1000px;
    margin: 0 auto;
}

section {
    background: #FFFFFF;
    margin-bottom: 40px;
    padding: 40px;
    border-radius: 16px;
    border: 1px solid #E4E4E7;
    box-shadow: none;
}

section h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 32px;
    color: #09090B;
    letter-spacing: -0.02em;
}

section p {
    font-size: 15px;
    color: #52525B;
    line-height: 1.7;
}

/* 按钮样式 - 极简风格 */
.btn-custom {
    background-color: #18181B;
    color: #ffffff;
    border-radius: 8px;
    font-weight: 500;
    transition: background-color 0.2s ease;
}

.btn-custom:hover {
    background-color: #3F3F46;
    color: #ffffff;
}

/* 下载按钮样式 */
.download-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    padding: 12px 20px;
    height: 52px;
    white-space: nowrap;
    border: 1px solid #E4E4E7;
    background-color: #FFFFFF;
    color: #09090B;
    border-radius: 8px;
    transition: all 0.2s ease;
    text-decoration: none;
}

.download-btn:hover {
    background-color: #FAFAFA;
    border-color: #3F3F46;
    color: #09090B;
}

.download-btn img {
    margin-right: 10px;
}

.download-btn span {
    line-height: 1;
    font-weight: 500;
}

/* 下载按钮区域 */
.download .row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

/* 应用截图区域 */
.screenshots-section {
    padding: 60px 20px;
    text-align: center;
}

.screenshots-section h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 40px;
    color: #09090B;
    letter-spacing: -0.02em;
}

.screenshots-container {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 20px 0;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.screenshots-container::-webkit-scrollbar {
    height: 8px;
}

.screenshots-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.screenshots-container::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 4px;
}

.screenshots-container::-webkit-scrollbar-thumb:hover {
    background: #a1a1a1;
}

.screenshot {
    flex: 0 0 auto;
    width: 280px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    scroll-snap-align: center;
}

.screenshot:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

/* 功能区域 */
.feature-section h2 {
    text-align: center;
}

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

.feature-card {
    padding: 32px;
    background-color: #FAFAFA;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #E4E4E7;
}

.feature-icon {
    font-size: 40px;
    margin-bottom: 20px;
    color: #09090B;
}

.feature-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #09090B;
}

.feature-card p {
    font-size: 14px;
    color: #52525B;
    line-height: 1.7;
}

/* 页脚样式 */
footer {
    background: #FFFFFF;
    color: #52525B;
    text-align: center;
    padding: 32px 20px;
    margin-top: 60px;
    border-top: 1px solid #E4E4E7;
}

footer p {
    margin: 0;
    font-size: 13px;
}

.downloadlogo {
    width: 24px;
    height: 24px;
}

/* 响应式 */
@media (max-width: 768px) {
    header {
        padding: 50px 20px 40px;
    }

    header h1 {
        font-size: 28px;
    }

    header p {
        font-size: 15px;
    }

    header .logo {
        width: 80px;
    }

    main {
        padding: 40px 20px;
    }

    section {
        padding: 32px 24px;
    }

    section h2 {
        font-size: 20px;
    }

    .download .row {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .back-link {
        top: 10px;
        left: 10px;
        padding: 8px 12px;
        font-size: 13px;
    }

    /* 截图区域响应式 */
    .screenshots-section {
        padding: 40px 20px;
    }

    .screenshots-section h2 {
        font-size: 20px;
        margin-bottom: 30px;
    }

    .screenshot {
        width: 260px;
    }
}

/* FAQ按钮样式 - 极简风格 */
.faq-btn {
    padding: 10px 16px;
    font-size: 14px;
    background-color: #FAFAFA !important;
    border: 1px solid #E4E4E7 !important;
    color: #09090B !important;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.faq-btn:hover {
    background-color: #F5F5F5 !important;
    border-color: #3F3F46 !important;
}

/* 联系区域 */
.contact {
    text-align: center;
}

.contact h2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.contact h2 i {
    color: #09090B;
}

.contact p {
    font-size: 15px;
    color: #52525B;
    margin: 8px 0;
}

.contact a {
    color: #2563EB;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.contact a:hover {
    color: #18181B;
}

/* 响应式 */
@media (max-width: 768px) {
    header {
        padding: 50px 20px 40px;
    }

    header h1 {
        font-size: 28px;
    }

    header p {
        font-size: 15px;
    }

    header .logo {
        width: 80px;
    }

    main {
        padding: 40px 20px;
    }

    section {
        padding: 32px 24px;
    }

    section h2 {
        font-size: 20px;
    }

    .download .row {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .back-link {
        top: 10px;
        left: 10px;
        padding: 8px 12px;
        font-size: 13px;
    }
}
