/* Additional styles for download page */
.download-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.download-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.download-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.download-section {
    padding: 4rem 0;
    background: var(--bg-light);
}

.download-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    margin-bottom: 2rem;
}

.download-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-color);
}

.download-header h2 {
    margin: 0;
    color: var(--text-dark);
}

.version-badge {
    background: var(--accent-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.download-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.info-item {
    color: var(--text-light);
}

.info-item strong {
    color: var(--text-dark);
    display: block;
    margin-bottom: 0.25rem;
}

.download-features {
    margin: 2rem 0;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.download-features h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.download-features ul {
    list-style: none;
    margin-left: 0;
}

.download-features li {
    padding: 0.5rem 0;
    color: var(--text-light);
}

.download-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.download-note {
    margin-top: 1.5rem;
    padding: 1rem;
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    border-radius: 4px;
}

.download-note p {
    margin: 0;
    color: #856404;
}

.requirements-card,
.installation-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
}

.requirements-card h2,
.installation-card h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.requirement-item strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.requirement-item p {
    color: var(--text-light);
    margin: 0;
}

.previous-versions {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
}

.previous-versions h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.version-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.version-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.version-info h3 {
    margin: 0 0 0.25rem 0;
    color: var(--text-dark);
}

.version-info p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.9rem;
}

.installation-steps {
    list-style: none;
    counter-reset: step-counter;
    margin-left: 0;
}

.installation-steps li {
    counter-increment: step-counter;
    margin-bottom: 2rem;
    padding-left: 3rem;
    position: relative;
}

.installation-steps li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 2rem;
    height: 2rem;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.installation-steps li strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.installation-steps li p {
    color: var(--text-light);
    margin: 0;
}

@media (max-width: 768px) {
    .download-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .download-info {
        grid-template-columns: 1fr;
    }

    .requirements-grid {
        grid-template-columns: 1fr;
    }

    .version-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}

