.bandeaux-accueil {
    display: flex;
    gap: 1rem;
    align-items: stretch;
    max-width: 1200px;
    margin: 0 auto 1rem auto;
}

.bandeaux-accueil .bandeau-jeux-ete {
    flex: 1 1 auto;
    margin-bottom: 0;
    min-width: 0;
}

.bandeau-playstore {
    flex: 0 0 240px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.bandeau-playstore:hover {
    transform: scale(1.03);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
}

.bandeau-playstore-nb {
    color: #e67e22;
    font-weight: bold;
    font-size: 2.6rem;
    line-height: 1;
}

.bandeau-playstore-titre {
    color: #333333;
    font-weight: bold;
    font-size: 0.95rem;
    text-align: center;
    line-height: 1.2;
}

.bandeau-playstore img {
    width: 100%;
    max-width: 180px;
    display: block;
}

@media only screen and (max-width: 992px) {
    .bandeaux-accueil {
        flex-direction: column;
    }

    .bandeau-playstore {
        flex: 1 1 auto;
    }
}

#modal-playstore {
    margin: auto;
    max-width: 900px;
    color: var(--md-sys-color-on-surface, #333333);
}

#modal-playstore .modal-footer .modal-close {
    color: inherit;
}

#modal-playstore::backdrop {
    background-color: rgba(0, 0, 0, 0.5);
}

.playstore-jeux-grille {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    gap: 1rem;
}

.playstore-jeu {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s;
}

.playstore-jeu:hover {
    transform: scale(1.05);
}

.playstore-jeu img {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    object-fit: cover;
}

.playstore-jeu-nom {
    margin-top: 0.4rem;
    font-size: 0.8rem;
    line-height: 1.2;
}
