/* Styles pour la page de téléchargement AcademIA */

.academia-download-page {
    min-height: 100vh;
    background: linear-gradient(135deg, #4052a6 0%, #0e1e9d 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    color: white;
    text-align: center;
}

.download-hero {
    max-width: 800px;
}

.app-logo-large {
    margin-bottom: 2rem;
}

.app-logo-hero {
    width: 120px;
    height: 120px;
    border-radius: 24px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
    background: white;
}

.download-title {
    font-size: 3rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.download-subtitle {
    font-size: 1.3rem;
    line-height: 1.6;
    margin: 0 0 2rem 0;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.download-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.8rem 1.2rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.feature i {
    font-size: 1.2rem;
    color: #FFD140;
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    text-decoration: none;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    min-width: 200px;
}

.download-btn:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    color: #333;
    text-decoration: none;
}

.download-btn i {
    font-size: 2rem;
}

.btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.btn-label {
    font-size: 0.8rem;
    opacity: 0.7;
}

.btn-store {
    font-size: 1.1rem;
    font-weight: 700;
}

.app-screenshots {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.screenshot {
    width: 200px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.screenshot:hover {
    transform: scale(1.05);
}

/* Responsive design */
@media (max-width: 768px) {
    .academia-download-page {
        padding: 1rem;
    }
    
    .download-title {
        font-size: 2rem;
    }
    
    .download-subtitle {
        font-size: 1.1rem;
    }
    
    .download-features {
        gap: 1rem;
    }
    
    .feature {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
    
    .download-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .download-btn {
        min-width: 250px;
    }
    
    .screenshot {
        width: 150px;
    }
}

@media (max-width: 480px) {
    .download-title {
        font-size: 1.5rem;
    }
    
    .download-subtitle {
        font-size: 1rem;
    }
    
    .app-logo-hero {
        width: 80px;
        height: 80px;
    }
    
    .screenshot {
        width: 120px;
    }
}

/* Animation d'entrée */
.academia-download-page {
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
