/* Download Page Specific Styles */
/* Extends home.css with download-specific components */

/* Download Hero adjustments */
.download-hero {
    padding-bottom: 60px;
}

.download-hero .hero-content {
    max-width: 700px;
}

.download-detected {
    margin-top: 20px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

/* Downloads Section */
.downloads-section {
    padding: 80px 0;
    background: var(--bg-dark, #0a0a0f);
}

/* Downloads Grid */
.downloads-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

/* Download Card */
.download-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.download-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-4px);
}

.download-card-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
}

.download-card-icon svg {
    width: 36px;
    height: 36px;
    color: rgba(255, 255, 255, 0.8);
}

.download-card-title {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
}

.download-card-arch {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 20px;
}

.download-card .btn-primary {
    width: 100%;
    justify-content: center;
}

.download-card-meta {
    margin-top: 12px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    font-family: monospace;
}

/* Requirements Grid adjustment */
.requirements-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.requirements-grid .benefit-description {
    line-height: 2;
}

/* Code styling in FAQ */
.faq-answer code {
    background: rgba(255, 255, 255, 0.1);
    padding: 2px 8px;
    border-radius: 4px;
    font-family: 'SF Mono', Monaco, 'Courier New', monospace;
    font-size: 13px;
}

/* Button block style */
.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .downloads-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .download-card {
        padding: 24px 20px;
    }
}
