/* 下载页面样式 */
.download-hero {
    background-color: #121212;
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.download-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #ff416c, #ff4b2b);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.download-hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    color: #aaa;
}

.download-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.download-options {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.download-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
    width: 300px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.download-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.download-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #007bff;
}

.download-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.download-card p {
    color: #666;
    margin-bottom: 20px;
}

.download-btn {
    display: block;
    background-color: #007bff;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    margin-bottom: 10px;
    transition: background-color 0.3s;
}

.download-btn:hover {
    background-color: #0056b3;
}

.download-btn-secondary {
    background-color: #6c757d;
}

.download-btn-secondary:hover {
    background-color: #5a6268;
}

.linux-subscribe {
    margin-top: 20px;
}

.linux-subscribe form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.linux-subscribe input {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.download-features {
    padding: 60px 0;
    background-color: #fff;
    text-align: center;
}

.download-features h2 {
    margin-bottom: 40px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-item {
    padding: 20px;
    border-radius: 10px;
    background-color: #f8f9fa;
    transition: transform 0.3s;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2rem;
    color: #007bff;
    margin-bottom: 15px;
}

.feature-item h3 {
    margin-bottom: 10px;
}

.feature-item p {
    color: #666;
}

@media (max-width: 768px) {
    .download-options {
        flex-direction: column;
        align-items: center;
    }
    
    .download-card {
        width: 100%;
        max-width: 300px;
    }
} 