/* ==========================================
   ACCUEIL-APPLICATION-MOBILE.CSS
   Spécifique à Accueil-application-mobile.php
   ========================================== */

.app-launchpad {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    width: 100%;
    max-width: 1400px;
    margin: 40px auto;
    padding: 0 5%;
    box-sizing: border-box;
    background: var(--bg-card);
    background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(0, 0, 0, 0.05) 100%);
}

.app-module {
    background: #111113;
    border: 1px solid #222;
    border-radius: 20px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(0, 0, 0, 0.05) 100%);
    box-shadow:
        inset 2px 2px 8px rgba(255, 255, 255, 0.07),
        inset -3px -3px 10px rgba(0, 0, 0, 0.4),
        0 10px 25px -5px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275),
                border-color 0.3s ease,
                box-shadow 0.3s ease;
    width: 100%;
}

.app-module:hover {
    border-color: var(--primary-color);
    box-shadow: 0 0 25px rgba(0, 230, 255, 0.25);
    transform: translateY(-5px);
}

/* Effet de lueur néon en arrière-plan de chaque app */
.app-module::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 230, 255, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.app-header-box {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.app-icon-neon {
    width: 70px;
    height: 70px;
    background: #000;
    border: 2px solid #333;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    box-shadow: inset 0 0 10px rgba(255,255,255,0.05);
    transition: border-color 0.3s;
}

.app-module:hover .app-icon-neon {
    border-color: var(--primary-color);
    text-shadow: 0 0 10px var(--primary-color);
}

.app-title-block h3 {
    color: #fff;
    font-size: 1.3rem;
    margin: 0 0 4px 0;
}

.app-category-tag {
    font-size: 0.75rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: bold;
}

.app-desc-text {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

/* Double boutons Store horizontaux épurés */
.app-stores-flex {
    display: flex;
    gap: 12px;
    border-top: 1px solid #222;
    padding-top: 20px;
    margin-top: auto;
}

.btn-store-download {
    flex: 1;
    text-align: center;
    text-decoration: none;
    padding: 10px 5px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.3s;
}

.btn-apple {
    background: #222;
    color: #fff;
    border: 1px solid #333;
}

.btn-apple:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
}

.btn-android {
    background: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.btn-android:hover {
    background: var(--primary-color);
    color: #000;
    box-shadow: 0 0 15px rgba(0, 230, 255, 0.4);
}

/* Bouton "Accéder au logiciel / Convertisseur" utilisé sur cette page.
   Si tu retrouves .btn-telecharger sur d'autres pages (boutique, logiciels...),
   dis-le-moi et on le remontera dans base.css. */
.btn-telecharger {
    margin-top: 5px;
    background-color: #ffffff;
    color: #000000;
    border: none;
    padding: 10px 20px;
    width: 100%;
    border-radius: 6px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    display: block;
    transition: background 0.3s, box-shadow 0.3s;
}

.btn-telecharger:hover {
    background-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(0, 230, 255, 0.4);
}
