/* ========================================= */
/* =================== LAN ================= */
/* ========================================= */

/* ========================================= */
/* ================= Jeux ================== */
/* ========================================= */
.lan-games {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin: 30px 0 10px;
}

.lan-logo-games {
    display: block;
    width: auto;
    height: 65px;
    max-width: 150px;
    object-fit: contain;
    transition: transform 0.2s ease, filter 0.2s ease, opacity 0.2s ease;
}

.lan-logo-games:hover {
    transform: scale(1.08);
    filter: drop-shadow(0 0 8px rgba(201, 157, 83, 0.45));
}

.lan-games-info {
    text-align: center;
    font-size: 13px;
    font-style: italic;
    opacity: 0.6;
}

@media (max-width: 600px) {
    .lan-games {
        gap: 15px;
        margin-top: 25px;
    }

    .lan-logo-games {
        height: 50px;
        max-width: 110px;
    }

    .lan-games-info {
        font-size: 12px;
    }
}
