/* 
 * NeoMeso - NabuEEG 下载页面样式表
 * 版本：2.0
 * 最后更新：2026-03-23
 * 说明：已优化，使用公共样式和动画文件
 */

/* ==================== Hero 区域 ==================== */
.hero {
    padding: 140px 20px 60px;
    background: radial-gradient(ellipse at top, rgba(102, 126, 234, 0.2) 0%, transparent 50%);
}

.page-subtitle {
    font-size: 1.3em;
}

/* ==================== 下载容器 ==================== */
.download-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.download-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 50px;
    margin-bottom: 40px;
    transition: all 0.3s ease;
}

.download-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(102, 126, 234, 0.5);
}

.app-logo {
    width: 120px;
    height: 120px;
    margin: 0 auto 25px;
    display: block;
    object-fit: contain;
    animation: fadeInDown 1s ease-out;
}

.app-name {
    font-size: 2.5em;
    color: #e0e0ff;
    margin-bottom: 15px;
}

.app-version {
    display: inline-block;
    background: rgba(102, 126, 234, 0.2);
    color: #c0c0ff;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.9em;
    margin-bottom: 25px;
}

.app-desc {
    font-size: 1.1em;
    color: #a0a0c0;
    margin-bottom: 30px;
    line-height: 1.8;
}

.features-list {
    list-style: none;
    text-align: left;
    margin-bottom: 40px;
}

.features-list li {
    padding: 10px 0;
    color: #c0c0e0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.features-list li:last-child {
    border-bottom: none;
}

.features-list li::before {
    content: '✓ ';
    color: #667eea;
    margin-right: 8px;
    font-weight: bold;
}

.contact-notice {
    background: rgba(102, 126, 234, 0.1);
    border: 1px solid rgba(102, 126, 234, 0.3);
    border-radius: 15px;
    padding: 40px;
    margin: 30px 0;
    text-align: center;
}

.notice-icon {
    font-size: 3em;
    margin-bottom: 20px;
    animation: bounce 2s infinite;
}

.notice-title {
    font-size: 1.5em;
    color: #e0e0ff;
    margin-bottom: 15px;
}

.notice-desc {
    font-size: 1.1em;
    color: #a0a0c0;
    line-height: 1.8;
}

.notice-desc strong {
    color: #667eea;
}

.download-info {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: left;
}

.info-title {
    font-size: 1.3em;
    color: #e0e0ff;
    margin-bottom: 20px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.info-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 10px;
}

.info-label {
    font-size: 0.9em;
    color: #808090;
    margin-bottom: 8px;
}

.info-value {
    font-size: 1em;
    color: #c0c0e0;
}

/* ==================== 响应式设计 ==================== */
@media (max-width: 768px) {
    .page-title {
        font-size: 2em;
    }
    
    .download-card {
        padding: 30px 20px;
    }
}
