/* Downloads Page Styles */

.downloads-section {
    min-height: 100vh;
    padding: 120px 0 80px;
    background: var(--primary-bg);
}

.downloads-header {
    text-align: center;
    margin-bottom: 60px;
}

.downloads-header i {
    font-size: 4rem;
    color: white;
    margin-bottom: 20px;
}

.downloads-header h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.downloads-header p {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

/* Main Download Card */
.download-main {
    margin-bottom: 80px;
}

.download-card {
    background: var(--primary-bg);
    border: 2px solid var(--border-color);
    border-radius: 20px;
    padding: 40px;
    display: flex;
    gap: 30px;
    align-items: center;
    transition: all 0.3s ease;
}

.download-card.featured {
    border-color: var(--accent-color);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(147, 51, 234, 0.05) 100%);
}

.download-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.download-icon {
    font-size: 5rem;
    color: var(--accent-color);
    flex-shrink: 0;
}

.download-info {
    flex: 1;
}

.download-info h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.download-info p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.download-meta {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.meta-item i {
    color: var(--accent-color);
}

.download-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex-shrink: 0;
}

.btn-large {
    padding: 15px 30px;
    font-size: 1.1rem;
    white-space: nowrap;
    min-width: 250px;
    justify-content: center;
}

/* Installation Guide */
.installation-guide {
    margin-bottom: 80px;
}

.installation-guide h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 40px;
    text-align: center;
}

.steps-container {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.step-card {
    background: var(--primary-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 30px;
    display: flex;
    gap: 25px;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.step-card:hover {
    border-color: var(--accent-color);
    transform: translateX(10px);
    background: rgba(59, 130, 246, 0.05);
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.step-content h3 i {
    color: var(--accent-color);
}

.step-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.step-content a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.step-content a:hover {
    color: #60a5fa;
    text-decoration: underline;
}

/* System Requirements */
.requirements-section {
    margin-bottom: 80px;
}

.requirements-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 40px;
    text-align: center;
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.requirement-card {
    background: var(--primary-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
}

.requirement-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.requirement-card i {
    font-size: 4rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.requirement-card h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 25px;
}

.requirement-card ul {
    list-style: none;
    text-align: left;
}

.requirement-card ul li {
    padding: 10px 0;
    font-size: 1.05rem;
    color: var(--text-secondary);
    position: relative;
    padding-left: 30px;
}

.requirement-card ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.2rem;
}

/* Help Section */
.help-section {
    margin-bottom: 40px;
}

.help-card {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(147, 51, 234, 0.1) 100%);
    border: 2px solid var(--accent-color);
    border-radius: 20px;
    padding: 50px;
    text-align: center;
}

.help-card i {
    font-size: 4rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.help-card h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.help-card p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.help-links {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.help-links .btn {
    min-width: 200px;
    flex: 1;
    max-width: 250px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    line-height: 1;
}

.help-links .btn i {
    font-size: 1rem;
    line-height: 1;
    margin: 0;
    padding: 0;
    vertical-align: middle;
}

/* Download Success Modal */
.download-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background: var(--primary-bg);
    border: 2px solid var(--accent-color);
    border-radius: 20px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}

.download-modal.active {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    pointer-events: all;
}

.download-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.download-modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal-icon {
    font-size: 5rem;
    color: #10b981;
    text-align: center;
    margin-bottom: 20px;
}

.modal-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
    text-align: center;
}

.modal-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 25px;
    text-align: center;
}

.modal-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* Responsive */
@media (max-width: 968px) {
    .download-card {
        flex-direction: column;
        text-align: center;
    }

    .download-actions {
        width: 100%;
    }

    .btn-large {
        width: 100%;
    }

    .requirements-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .downloads-section {
        padding: 100px 0 60px;
    }

    .downloads-header h1 {
        font-size: 2.5rem;
    }

    .downloads-header i {
        font-size: 3rem;
    }

    .download-card {
        padding: 25px;
    }

    .download-info h2 {
        font-size: 1.5rem;
    }

    .download-meta {
        flex-direction: column;
        gap: 10px;
    }

    .installation-guide h2,
    .requirements-section h2 {
        font-size: 2rem;
    }

    .step-card {
        flex-direction: column;
        text-align: center;
    }

    .step-card:hover {
        transform: translateY(-5px);
    }

    .help-card {
        padding: 30px 20px;
    }

    .help-links {
        flex-direction: column;
    }

    .help-links .btn {
        width: 100%;
    }
}

