/* Download Page Specific Styles */

.download-hero {
    padding: 80px 0 40px;
    background: linear-gradient(135deg, var(--dark-navy) 0%, var(--secondary-blue) 100%);
    text-align: center;
}

.download-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.download-header p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
}

.downloads {
    padding: 60px 0;
    background: var(--dark-navy);
}

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

.platform-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(124, 58, 237, 0.2);
}

.platform-icon {
    font-size: 3rem;
}

.platform-header h2 {
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.platform-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
}

.download-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.download-card {
    background: var(--secondary-blue);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.download-card:hover {
    border-color: var(--primary-blue);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.3);
}

.download-card.coming-soon {
    border: 2px dashed rgba(255, 255, 255, 0.3);
    opacity: 0.8;
}

.card-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.download-card h3 {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.download-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

.file-size {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.status-badge {
    display: inline-block;
    background: rgba(255, 165, 0, 0.2);
    color: #FFA500;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    margin-bottom: 1rem;
}

.download-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--neon-cyan) 100%);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    margin-top: 1rem;
    transition: all 0.3s;
}

.download-btn:hover {
    background: linear-gradient(135deg, var(--primary-dark, #6D28D9) 0%, var(--neon-cyan-dark, #0891B2) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(124, 58, 237, 0.5);
}

.download-btn.secondary {
    background: transparent;
    border: 2px solid var(--primary-blue);
}

.download-btn.secondary:hover {
    background: var(--primary-blue);
}

.install-note {
    background: rgba(56, 232, 255, 0.1);
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: var(--neon-cyan);
}

.devices-list {
    background: rgba(0, 0, 0, 0.2);
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1.5rem;
    text-align: right;
}

.devices-list span {
    display: block;
    color: var(--primary-blue);
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.devices-list ul {
    list-style: none;
    color: rgba(255, 255, 255, 0.8);
}

.devices-list li {
    padding: 0.3rem 0;
}

/* Installation Guide */
.install-guide {
    padding: 80px 0;
    background: var(--secondary-blue);
}

.install-guide h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--white);
}

.guide-tabs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.guide-tab {
    background: var(--dark-navy);
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid rgba(124, 58, 237, 0.2);
}

.guide-tab h3 {
    color: var(--primary-blue);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.guide-tab ol {
    padding-right: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.guide-tab li {
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 1.1rem;
}

/* Support CTA */
.support-cta {
    padding: 80px 0;
    background: var(--dark-navy);
    text-align: center;
}

.support-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.support-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.support-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .download-header h1 {
        font-size: 2rem;
    }

    .platform-header {
        flex-direction: column;
        text-align: center;
    }

    .download-cards {
        grid-template-columns: 1fr;
    }

    .guide-tabs {
        grid-template-columns: 1fr;
    }

    .support-buttons {
        flex-direction: column;
    }
}
