/* 复用 index.css 的样式，再加下载页特有 */

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-top: 2rem;
    background: linear-gradient(135deg, #b3b9ff, #9f7aea, #5dade2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-subtitle {
    text-align: center;
    color: #a0a8c0;
    margin-bottom: 3rem;
}

.download-section {
    margin-bottom: 4rem;
}

.download-section .section-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #9f7aea;
    border-left: 3px solid #9f7aea;
    padding-left: 1rem;
}

.download-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.download-card {
    background: rgba(20, 25, 35, 0.6);
    backdrop-filter: blur(8px);
    border: 1px solid #2d3540;
    border-radius: 20px;
    padding: 1.5rem;
    transition: transform 0.2s, border-color 0.2s;
}

.download-card:hover {
    transform: translateY(-4px);
    border-color: #9f7aea;
}

.download-card-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.download-icon {
    font-size: 2rem;
}

.download-os {
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
}

.download-info {
    margin-bottom: 1rem;
}

.download-size {
    font-size: 0.8rem;
    color: #5a6270;
}

.download-sha256 {
    font-size: 0.7rem;
    color: #5a6270;
    font-family: monospace;
    word-break: break-all;
    margin-top: 0.3rem;
}

.download-note {
    font-size: 0.7rem;
    color: #f59e0b;
    margin-top: 0.3rem;
}

.download-btn {
    display: inline-block;
    background: #9f7aea;
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}

.download-btn:hover {
    background: #8b5cf6;
    transform: scale(1.02);
    text-decoration: none;
}

@media (max-width: 900px) {
    .download-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .page-title {
        font-size: 1.8rem;
    }
    .download-cards {
        grid-template-columns: 1fr;
    }
}