.download-page {
    margin-top: 70px;
    min-height: calc(100vh - 70px);
}

.download-hero {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.1), rgba(253, 121, 168, 0.1));
    text-align: center;
}

.page-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.page-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
}

.current-version {
    padding: 60px 0;
}

.version-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.release-date {
    color: var(--text-secondary);
    font-size: 14px;
}

.download-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.download-card {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
}

.download-card.primary {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.1), rgba(162, 155, 254, 0.1));
}

.download-card.coming-soon {
    opacity: 0.6;
}

.download-card:hover:not(.coming-soon) {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.os-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.download-card h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.download-card p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.file-info {
    display: flex;
    justify-content: space-between;
    padding: 15px;
    background: var(--bg-medium);
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 14px;
    color: var(--text-secondary);
}

.requirements {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.requirements h3 {
    margin-bottom: 30px;
}

.req-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.req-item {
    padding: 15px;
    background: var(--bg-medium);
    border-radius: 8px;
}

.version-archive {
    padding: 60px 0;
    background: var(--bg-medium);
}

.archive-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.archive-item {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.archive-info h4 {
    margin-bottom: 10px;
}

.archive-date {
    color: var(--primary-color);
    font-size: 14px;
}

.archive-info p {
    color: var(--text-secondary);
    margin-top: 10px;
}

.archive-downloads {
    display: flex;
    gap: 15px;
}

.archive-link {
    padding: 10px 20px;
    background: var(--bg-medium);
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-primary);
    font-size: 14px;
    transition: all 0.3s ease;
}

.archive-link:hover {
    background: var(--primary-color);
}